Such a clean breakdown. "Don’t suspend your own threads" should be tattooed on every Windows dev’s arm at this point
makz 4 days ago||
Looking at the title, at first I thought “uh?”, but then I saw microsoft and it made sense.
baruchthescribe 3 days ago||
>Naturally, a suspended UI thread is going to manifest itself as a hang.
The correct terminology is 'stopped responding' Raymond. You need to consult the style guide.
brcmthrowaway 4 days ago|
Can this happen with Grand Central Dispatch ?
saagarjha 3 days ago||
This is a complicated question. If you "suspend" a GCD queue using the traditional APIs then it will happen between block execution, which is unlikely to cause problems, because people do not typically take locks between different items. But if you suspend the thread that backs the queue (using thread_suspend) you will definitely run into problems unless you're really careful.