[Cppunit-cvs] cppunit2/src/cpptl thread.cpp,1.2,1.3
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-03-06 21:23:01
|
Update of /cvsroot/cppunit/cppunit2/src/cpptl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23710/src/cpptl Modified Files: thread.cpp Log Message: * fixed compilation issues in pthread implementation. Index: thread.cpp =================================================================== RCS file: /cvsroot/cppunit/cppunit2/src/cpptl/thread.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** thread.cpp 6 Mar 2005 21:21:09 -0000 1.2 --- thread.cpp 6 Mar 2005 21:22:46 -0000 1.3 *************** *** 266,270 **** { removeThreadExitHandler( this ); ! if ( pthread_key_delete( &key ) != 0 ) { // error: can't throw exception, during static uninitialization } --- 266,270 ---- { removeThreadExitHandler( this ); ! if ( pthread_key_delete( key_ ) != 0 ) { // error: can't throw exception, during static uninitialization } |