Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Easy Sonar smells.
[simgrid.git] / examples / sthread / sthread-mutex-simple.c
index efbedd34531a53ec5064ba1e9d6c6f7e258228b7..5b113955a05abfeeb49b55e85d1efce2f7b3c031 100644 (file)
@@ -22,10 +22,10 @@ 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_t thread1;
+  sthread_t thread2;
   sthread_create(&thread1, NULL, thread1_fun, NULL);
   sthread_create(&thread2, NULL, thread2_fun, NULL);
   // pthread_join(thread1, NULL);