Hi,

If I use this to initiate a background "thread":


dispatch_async(dispatch_get_global_queue(0, 0), ^{

// do some stuff

[self runMyFunction];

[self runAnotherFunction];

// do some more stuff

});


My question is with my sample calling runMyFunction or runAnotherFunction are 
they blocking?  Meaning will they block the background "thread" until they are 
complete and then it will continue?  Or must I put them into another kind of 
block so that they finish FIFO?  Thanks just looking for a confirmation as I'm 
moving to GCD from threads...

rc
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to