pthread_join returned status
Wayne Xin
wxin1@yahoo.com
Thu Jun 13 09:16:00 GMT 2002
Win2k is complaining about my memory access violation
when I try to get the status returned from
pthread_join:
int* status;
int result;
pthread_join(tid, (void**) &status);
result = *status; <-- this line seems causing problem
At the other end, I always put a status at
pthread_exit:
int status = 3;
pthread_exit(&status);
Did anybody see similar problem?
-Wayne
__________________________________________________
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com
More information about the Pthreads-win32
mailing list