X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/73a0ae62cf92da83e861cfaf9ba0313cacbc4825..adbdcbddadcbd685b72259874d1ebfd9cbbcc497:/examples/sthread/sthread-mutex-simple.c diff --git a/examples/sthread/sthread-mutex-simple.c b/examples/sthread/sthread-mutex-simple.c index 213fca842d..dccec547f7 100644 --- a/examples/sthread/sthread-mutex-simple.c +++ b/examples/sthread/sthread-mutex-simple.c @@ -5,18 +5,12 @@ 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; } @@ -24,12 +18,17 @@ int main(int argc, char* argv[]) { 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; }