X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fe2e372be5c524c254886aca779e030285085125..8be89720f55b4ceeb2877531ae1602cc7ed947d6:/examples/sthread/pthread-mutex-simpledeadlock.c diff --git a/examples/sthread/pthread-mutex-simpledeadlock.c b/examples/sthread/pthread-mutex-simpledeadlock.c index 9025cd3a81..92a04a1ace 100644 --- a/examples/sthread/pthread-mutex-simpledeadlock.c +++ b/examples/sthread/pthread-mutex-simpledeadlock.c @@ -1,7 +1,12 @@ +/* Copyright (c) 2002-2023. The SimGrid Team. All rights reserved. */ + +/* This program is free software; you can redistribute it and/or modify it + * under the terms of the license (GNU LGPL) which comes with this package. */ + /* Simple test code that may deadlock: Thread 1 locks mutex1 then mutex2 while thread 2 locks in reverse order. - Deadlock occures when each thread get one mutex and then ask for the other one. + Deadlock occurs when each thread get one mutex and then ask for the other one. */ #include @@ -39,8 +44,8 @@ int main(int argc, char* argv[]) int id[2] = {0, 1}; pthread_t thread1; pthread_t thread2; - pthread_create(&thread1, NULL, thread_fun1, (void*)&id[0]); - pthread_create(&thread2, NULL, thread_fun2, (void*)&id[1]); + pthread_create(&thread1, NULL, thread_fun1, &id[0]); + pthread_create(&thread2, NULL, thread_fun2, &id[1]); fprintf(stderr, "All threads are started.\n"); pthread_join(thread1, NULL); pthread_join(thread2, NULL);