Now that the iPad 2 comes with two CPU cores, the debugging of threading issues will be more important than ever. Now I'm wondering: Does the iOS-Simulator actually use the multiple cores available on the Mac?

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted

To run iOS programs on the simulator, Xcode compiles your program for the Intel processor. The simulator does not emulate an ARM processor, so exact execution of threaded code will differ from an iOS device and the simulator. Regardless of how many cores the iOS simulator uses, threaded code execution may vary greatly between the ARM processors in iOS devices and the Intel processor running on the Mac. Therefore any issues that crop up due to the multicore iPad 2 processor may or may not show up in the simulator.

In other words, you'll want to debug such issues on the iPad 2, not the simulator, so it doesn't matter how many cores the simulator uses.

link|improve this answer
1  
Ortwin should accept your answer. It's better than mine. – Matthias Bauch Mar 2 '11 at 20:24
Of course, nothing replaces debugging on the real thing. Just trying to do my best, everything will run flawlessly from day 0 when it comes out. – Ortwin Gentz Mar 2 '11 at 20:24
@fluchtpunkt, I did and upvoted yours and your comment to compensate ;) – Ortwin Gentz Mar 2 '11 at 20:26
2  
When dealing with threading hazards, debugging is not the solution, either on the Simulator or any one of many devices. – hotpaw2 Mar 2 '11 at 20:40
@fluchtpunkt: No, your answer is better. For one, because it actually answers the original question. Second, because it does not imply that threading issues are reproducable or even deterministic on the device. It is a good idea to begin debugging on a multicore machine even if the target architecture differs. – Nikolai Ruhe May 19 '11 at 13:49
show 1 more comment
feedback

I created a special test app for you. And here is the result:

enter image description here

link|improve this answer
wow, that was quick. Thanks! – Ortwin Gentz Mar 2 '11 at 20:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.