]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/threadpsx.cpp
Updated configure and aclocal.m4 for new 0.1.8 Bakefile on account of
[wxWidgets.git] / src / unix / threadpsx.cpp
index 3da088548daaf881646ef59286630d172693e54c..e8aad25e50984bf824c220d0aef919c7c5b08037 100644 (file)
@@ -37,6 +37,7 @@
 #include "wx/intl.h"
 #include "wx/dynarray.h"
 #include "wx/timer.h"
+#include "wx/stopwatch.h"
 
 #include <stdio.h>
 #include <unistd.h>
@@ -1483,6 +1484,12 @@ void wxThread::Exit(ExitCode status)
         //       only call one thread function at a time :-(
         DeleteThread(this);
     }
+    else
+    {
+        m_critsect.Enter();
+        m_internal->SetState(STATE_EXITED);
+        m_critsect.Leave();
+    }
 
     // terminate the thread (pthread_exit() never returns)
     pthread_exit(status);