Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix compilation on Windows with pthread.
authorunknown <pierre@.(none)>
Fri, 1 Jun 2012 09:52:24 +0000 (11:52 +0200)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Fri, 1 Jun 2012 09:41:53 +0000 (11:41 +0200)
Fixed with 2nd commit from master branch:

Cosmetics
2times include

include/xbt/xbt_os_thread.h

index bcebc8f..31e5840 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