Re: Threads, safeness, and AutoreleasePools
Re: Threads, safeness, and AutoreleasePools
- Subject: Re: Threads, safeness, and AutoreleasePools
- From: Miguel Morales <email@hidden>
- Date: Wed, 15 Aug 2001 08:54:12 -0700
Dear Todd,
I've heard that Appkit objects are generally not safe, so you might try
putting all the AppKit communications in one thread (using DO for the
inter-thread communication). As to the autorelease pools, yes you need
to have one for every new thread. There is one provided in the main
application loop, but you need to supply your own in new threads.
-Miguel