Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
No need to duplicate functions.
[simgrid.git] / examples / sthread / sthread-mutex-simple.c
index efbedd3..3ab8267 100644 (file)
@@ -5,14 +5,7 @@
 
 sthread_mutex_t mutex;
 
-static void* thread1_fun(void* ignore)
-{
-  sthread_mutex_lock(&mutex);
-  sthread_mutex_unlock(&mutex);
-
-  return NULL;
-}
-static void* thread2_fun(void* ignore)
+static void* thread_fun(void* ignore)
 {
   sthread_mutex_lock(&mutex);
   sthread_mutex_unlock(&mutex);
@@ -22,14 +15,14 @@ static void* thread2_fun(void* ignore)
 
 int main(int argc, char* argv[])
 {
-  sthread_inside_simgrid = 1;
   sthread_mutex_init(&mutex, NULL);
 
-  sthread_t thread1, thread2;
-  sthread_create(&thread1, NULL, thread1_fun, NULL);
-  sthread_create(&thread2, NULL, thread2_fun, NULL);
-  // pthread_join(thread1, NULL);
-  // pthread_join(thread2, NULL);
+  sthread_t thread1;
+  sthread_t thread2;
+  sthread_create(&thread1, NULL, thread_fun, NULL);
+  sthread_create(&thread2, NULL, thread_fun, NULL);
+  sthread_join(thread1, NULL);
+  sthread_join(thread2, NULL);
   fprintf(stderr, "done\n");
 
   return 0;