Reputation: 1
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
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