]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/thread.cpp
Added (untested) support for sub-locales.
[wxWidgets.git] / src / motif / thread.cpp
index cf1636537490c7c040cdf67bde5015390ce7400d..96d7af417a3904bcd5958de6dc7be953ec9a08f8 100644 (file)
 #pragma implementation "thread.h"
 #endif
 
-#include <stdio.h>
-#include <unistd.h>
-#include <pthread.h>
-#include <errno.h>
+#include "wx/defs.h"
+
+#if wxUSE_THREADS
+
 #include "wx/module.h"
 #include "wx/thread.h"
 #include "wx/utils.h"
 #include "wx/log.h"
 
+#include <stdio.h>
+#include <unistd.h>
+#include <pthread.h>
+#include <errno.h>
+
 #include <stdio.h>
 #include <unistd.h>
 
@@ -409,29 +414,34 @@ void wxThread::OnExit()
 // wxThreadModule 
 //--------------------------------------------------------------------
 
-class wxThreadModule : public wxModule 
+class wxThreadModule : public wxModule
 {
-  DECLARE_DYNAMIC_CLASS(wxThreadModule)
-  
 public:
-  virtual bool OnInit() 
-    {
-        wxMainMutex = new wxMutex();
-        wxThreadGuiInit();
-        p_mainid = pthread_self();
-       wxMainMutex->Lock();
+    virtual bool OnInit();
+    virtual void OnExit();
 
-       return TRUE;
-    }
-
-  virtual void OnExit() 
-  {
-      wxMainMutex->Unlock();
-      wxThreadGuiExit();
-      delete wxMainMutex;
-  }
+private:
+    DECLARE_DYNAMIC_CLASS(wxThreadModule)
 };
 
 IMPLEMENT_DYNAMIC_CLASS(wxThreadModule, wxModule)
 
+bool wxThreadModule::OnInit() 
+{
+    wxMainMutex = new wxMutex();
+    wxThreadGuiInit();
+    p_mainid = pthread_self();
+    wxMainMutex->Lock();
+
+    return TRUE;
+}
 
+void wxThreadModule::OnExit()
+{
+    wxMainMutex->Unlock();
+    wxThreadGuiExit();
+    delete wxMainMutex;
+};
+
+#endif
+  // wxUSE_THREADS