Re: multithreading, cocoa, pools and POSIX
Re: multithreading, cocoa, pools and POSIX
- Subject: Re: multithreading, cocoa, pools and POSIX
- From: Frederick Cheung <email@hidden>
- Date: Tue, 7 Jun 2005 18:24:27 +0100
On 7 Jun 2005, at 18:20, Luc Vandal wrote:
Thanks!
Cocoa now seems to be in multithread mode. However, I still get a
crash on [pool release]:
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
BOOL b = [NSThread isMultiThreaded];
g_pFeedParam = pFeedParam;
NSNotification *notif = [NSNotification
notificationWithName:@"TextFeedCallback"
object:nil
userInfo:nil];
[[NSNotificationQueue defaultQueue] enqueueNotification:notif
postingStyle:NSPostNow];
[notif autorelease];
[pool release];
Am I doing something wrong?
notif is being released too many times. You don't need the autorelease.
Fred
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden