Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use verbose instead of debug-
[simgrid.git] / src / xbt / xbt_rl_synchro.c
index 12143a7..c85bf2d 100644 (file)
@@ -45,7 +45,7 @@ xbt_thread_t xbt_thread_create(const char *name, void_f_pvoid_t code,
   res->code = code;
   DEBUG1("Create thread %p", res);
   res->os_thread =
-      xbt_os_thread_create(name, xbt_thread_create_wrapper, res);
+      xbt_os_thread_create(name, xbt_thread_create_wrapper, res, NULL);
   return res;
 }