]> git.saurik.com Git - wxWidgets.git/commitdiff
defer Terminating the Task until it is really done
authorStefan Csomor <csomor@advancedconcepts.ch>
Wed, 19 May 2004 14:38:12 +0000 (14:38 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Wed, 19 May 2004 14:38:12 +0000 (14:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27355 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/thread.cpp

index c5ba83d6482a352347bfd96a689eab743567a087..fed5af4d817872ad219722ba3449d47c2f3ca521 100644 (file)
@@ -1465,7 +1465,7 @@ void wxThread::Exit(ExitCode status)
     // m_critsect on us (almost all of them do)
     OnExit();
 
-    MPTerminateTask( m_internal->GetId() , (long) status) ;
+    MPTaskID threadid = m_internal->GetId() ;
     
     if ( IsDetached() )
     {
@@ -1477,6 +1477,7 @@ void wxThread::Exit(ExitCode status)
         wxCriticalSectionLocker lock(m_critsect);
         m_internal->SetState(STATE_EXITED);
     }
+    MPTerminateTask( threadid , (long) status) ;    
 }
 
 // also test whether we were paused