jun im
jun im

Reputation: 1

Android NDK to use Multi-core cpu

How can I write C++ code to take advantage of multi-core cpu using android NDK (ice-cream-sandwich) or is it possible?

Upvotes: 0

Views: 1765

Answers (1)

James M
James M

Reputation: 16718

The same way you'd write a multi-threaded application for most other platforms - with POSIX threads.

A good place to start is probably pthread_create.

Upvotes: 2

Related Questions