]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/threadpsx.cpp
added ODBC support
[wxWidgets.git] / src / gtk1 / threadpsx.cpp
index f6ffab19b9c7213fd7010e6f2a175924d7e51a27..363f0636eafc5bbab35e30b72e7e042fb81e61e5 100644 (file)
 
 #include <stdio.h>
 #include <unistd.h>
 
 #include <stdio.h>
 #include <unistd.h>
-#include <sched.h>
 #include <pthread.h>
 #include <pthread.h>
+#include <errno.h>
+#include "wx/thread.h"
+#include "wx/module.h"
+#include "wx/utils.h"
 
 enum thread_state {
   STATE_IDLE = 0,
 
 enum thread_state {
   STATE_IDLE = 0,
@@ -28,8 +31,6 @@ enum thread_state {
 // Static variables
 /////////////////////////////////////////////////////////////////////////////
 
 // Static variables
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/thread.h"
-
 static pthread_t p_mainid;
 wxMutex wxMainMutex; // controls access to all GUI functions
 
 static pthread_t p_mainid;
 wxMutex wxMainMutex; // controls access to all GUI functions