How do I freeze and thaw threads in Xcode like I can in Visual Studio? Thanks.

link|improve this question

62% accept rate
Can you add a bit more detail for those of us that aren't familiar with VS? – kubi Mar 22 '11 at 15:56
Sure. Visual Studio allows you to suspend individual threads at any point by right clicking on the thread in question and 'freezing' it. This can be invaluable when debugging code that's called by more than 1 thread at a time, as you can artificially manipulate the order of execution however you want.In my case I just want to pause a couple of threads so that I can concentrate on a single thread without frequently switching back to the other threads. – Robin Mar 22 '11 at 17:13
feedback

1 Answer

up vote 0 down vote accepted

To suspend a thread in your running application . . .

  • Pause your application’s execution, or wait for it to hit a breakpoint.
  • In the Debug Navigator, Control-click the desired thread.
  • In the contextual menu that appears, select Suspend Thread.

http://developer.apple.com/library/mac/#documentation/ToolsLanguages/Conceptual/Xcode4UserGuide/Debugging/Debugging.html

link|improve this answer
Thanks. I didn't make it clear in my original question that I currently use Xcode 3.2, but I like the look of Xcode 4 anyhow so will upgrade. – Robin Mar 28 '11 at 8:26
feedback

Your Answer

 
or
required, but never shown

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