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:
parent
68a830f1f7
commit
952021633d
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: maroy $
|
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 $
|
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->runnable->run();
|
||||||
|
|
||||||
pthread_exit(0);
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue