Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Normally, if you spawn a background thread or run an NSOperation on an NSOperationQueue you need to create an NSAutoreleasePool for that thread or operation because none exists by default.

Does the same rule apply to a block that is placed within a Grand Central Dispatch queue and will be run on a non-main thread? That is, do you need to create an NSAutoreleasePool within each block you dispatch to anything other than the main queue?

In my limited testing, I don't see the console warnings for autoreleased objects that you normally see with background threads or NSOperations. However, I can't seem to find definitive documentation on this, so I was wondering if someone could point out where this is stated.

share|improve this question
From the answer posted by @Gustavo Ambrozio which was removed, the documentation is here, in case any viewers are interested. – ACB Feb 26 at 6:23

1 Answer

up vote 66 down vote accepted

Does the same rule apply to a block that is placed within a Grand Central Dispatch queue and will be run on a non-main thread? That is, do you need to create an NSAutoreleasePool within each block you dispatch to anything other than the main queue?

Grand central dispatch will manage an autorelease pool per queue automatically. However, there are no guarantees as to when the pool will be drained; it may be after one block is processed, it may be after hundreds (but probably won't be).

So, if you are only allocating a few objects, don't worry about it. However, if you are allocating any significant number of objects (and since you are targeting a memory constrained environment), then you should be creating and draining pools.

share|improve this answer
2  
+1 is this in the documentation anywhere? – Dave DeLong Nov 10 '10 at 6:43
3  
Not clearly enough. Documentation bug filed (<rdar://problem/8651175>). – bbum Nov 10 '10 at 7:27
1  
Excellent. Thanks for the clarification. – Brad Larson Nov 10 '10 at 13:46
3  
Documentation updated. Woot. – bbum Jul 24 '11 at 17:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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