Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add dag scheduling lab
[simgrid.git] / examples / sthread / pthread-mutex-simple.c
index d97bfe8ca11a7a129c2f60f0fe7760952c68fad0..1d391418bac926ff51f2119616f7b213fe397226 100644 (file)
@@ -21,8 +21,8 @@ int main(int argc, char* argv[])
   int id[2] = {0, 1};
   pthread_t thread1;
   pthread_t thread2;
-  pthread_create(&thread1, NULL, thread_fun, (void*)&id[0]);
-  pthread_create(&thread2, NULL, thread_fun, (void*)&id[1]);
+  pthread_create(&thread1, NULL, thread_fun, &id[0]);
+  pthread_create(&thread2, NULL, thread_fun, &id[1]);
   fprintf(stderr, "All threads are started.\n");
   pthread_join(thread1, NULL);
   pthread_join(thread2, NULL);