Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / src / include / xbt / xbt_os_thread.h
index 870af9b..e744be5 100644 (file)
@@ -31,16 +31,18 @@ typedef struct xbt_os_thread_ *xbt_os_thread_t;
 #include <pthread.h>
 typedef pthread_key_t xbt_os_thread_key_t;
 #elif defined(_XBT_WIN32)
+#include <WinDef.h>
 typedef DWORD xbt_os_thread_key_t;
 #endif
 
 /* Calls pthread_atfork() if present, and else does nothing.
- * The only known user of this wrapper is mmalloc_preinit().
+ * The only known user of this wrapper is mmalloc_preinit(); This function may disapear in the near future.
  */
 XBT_PUBLIC(int) xbt_os_thread_atfork(void (*prepare)(void),
                                      void (*parent)(void),
                                      void (*child)(void));
 
+XBT_PUBLIC(int) xbt_os_get_numcores(void);
 
 XBT_PUBLIC(xbt_os_thread_t) xbt_os_thread_create(const char *name,
                                                  pvoid_f_pvoid_t start_routine,