removed pthread_exit() again. for some reason, the pthread implementation

on Mandrake 10 crashes when a thread function exists by calling it.
This commit is contained in:
maroy 2004-11-25 09:51:24 +00:00
parent 68a830f1f7
commit 952021633d
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
Author : $Author: maroy $
Version : $Revision: 1.3 $
Version : $Revision: 1.4 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/src/Thread.cxx,v $
------------------------------------------------------------------------------*/
@ -75,7 +75,7 @@ Thread :: posixThreadFunction(void * thread) throw ()
pThread->runnable->run();
pthread_exit(0);
return 0;
}