Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
tentative of implementing pthread_join, and to ensure that we are inside simgrid...
[simgrid.git] / examples / sthread / pthread-mutex-simple.c
index f39de63..abe582d 100644 (file)
@@ -30,8 +30,9 @@ int main(int argc, char* argv[])
   pthread_create(&thread1, NULL, thread1_fun, NULL);
   fprintf(stderr, "here\n");
   pthread_create(&thread2, NULL, thread2_fun, NULL);
-  // pthread_join(thread1, NULL);
-  // pthread_join(thread2, NULL);
+  fprintf(stderr, "there\n");
+  pthread_join(thread1, NULL);
+  pthread_join(thread2, NULL);
 
   fprintf(stderr, "User main is done\n");
   return 0;