]> AND Public Git Repository - simgrid.git/blobdiff - include/xbt/xbt_os_thread.h
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add on_exit support on SIMIX/MSG, calling functions when the process is dying (stopped)
[simgrid.git] / include / xbt / xbt_os_thread.h
index bcebc8febb138ef83c4812318b1885e388ea7fc6..31e58400493e7b0cb5d5dc81ca9f473f7afc74e6 100644 (file)
@@ -24,11 +24,12 @@ SG_BEGIN_DECL()
   /** \brief Thread data type (opaque structure) */
 typedef struct xbt_os_thread_ *xbt_os_thread_t;
 
+#include <pthread.h>
+
 #ifdef _XBT_WIN32 /* defined if this is a windows system, 32bits or 64bits) */
 #include <WinDef.h>
 typedef DWORD xbt_os_thread_key_t;
 #else /* assume that every non-windows system is POSIX-compatible */
-#include <pthread.h>
 typedef pthread_key_t xbt_os_thread_key_t;
 #endif