Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Change the prototype of xbt_thread_create(), sorry.
[simgrid.git] / teshsuite / xbt / parallel_log_crashtest.c
index 3d55f8c..a910fbe 100644 (file)
@@ -71,7 +71,7 @@ int crasher(int argc, char *argv[])
   /* spawn threads */
   for (i = 0; i < crasher_amount; i++) {
     char *name = bprintf("thread %d", i);
-    crashers[i] = xbt_thread_create(name, &crasher_thread, &id[i]);
+    crashers[i] = xbt_thread_create(name, &crasher_thread, &id[i],0/*not joinable*/);
     free(name);
   }