X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/448efb6b98d55ba423ed574da75f4c6d88135a3b..8344f32ee2339f2b53a6e79ac0e9aa3a93384f58:/examples/sthread/sthread-mutex-simple.c diff --git a/examples/sthread/sthread-mutex-simple.c b/examples/sthread/sthread-mutex-simple.c index efbedd3453..dccec547f7 100644 --- a/examples/sthread/sthread-mutex-simple.c +++ b/examples/sthread/sthread-mutex-simple.c @@ -5,32 +5,30 @@ 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* val) { sthread_mutex_lock(&mutex); sthread_mutex_unlock(&mutex); + fprintf(stderr, "The thread %d is terminating.\n", *(int*)val); return NULL; } 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); - fprintf(stderr, "done\n"); + int id[2] = {0, 1}; + sthread_t thread1; + sthread_t thread2; + sthread_create(&thread1, NULL, thread_fun, &id[0]); + sthread_create(&thread2, NULL, thread_fun, &id[1]); + fprintf(stderr, "All threads are started.\n"); + sthread_join(thread1, NULL); + sthread_join(thread2, NULL); + + sthread_mutex_destroy(&mutex); + fprintf(stderr, "User's main is terminating.\n"); return 0; }