Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Uncomment code.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Tue, 28 Jun 2022 12:38:07 +0000 (14:38 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Tue, 28 Jun 2022 14:18:49 +0000 (16:18 +0200)
examples/sthread/sthread-mutex-simple.c

index 5b11395..45b6e51 100644 (file)
@@ -28,8 +28,8 @@ int main(int argc, char* argv[])
   sthread_t thread2;
   sthread_create(&thread1, NULL, thread1_fun, NULL);
   sthread_create(&thread2, NULL, thread2_fun, NULL);
-  // pthread_join(thread1, NULL);
-  // pthread_join(thread2, NULL);
+  sthread_join(thread1, NULL);
+  sthread_join(thread2, NULL);
   fprintf(stderr, "done\n");
 
   return 0;