iPhone / Cocoa - Are NSThreads less efficient than POSIX threads, or is the diff negligable?
Posted
by jtrim
on Stack Overflow
See other posts from Stack Overflow
or by jtrim
Published on 2010-04-30T18:15:21Z
Indexed on
2010/04/30
18:17 UTC
Read the original article
Hit count: 245
I'm looking at putting together a high-performance multi-threaded iPhone app that's doing a couple of fairly high-intensity operations concurrently. Is the performance difference between NSThread and POSIX threading enough to care about here? If so, I would assume POSIX threads would be more efficient because it bypasses the obj-c overhead. Is this correct?
© Stack Overflow or respective owner