Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Properly pass the LD_PRELOAD as a setenv command in tesh file + show the ignored...
[simgrid.git] / examples / sthread / pthread-mutex-simpledeadlock.c
1 /* Copyright (c) 2002-2023. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 /* Simple test code that may deadlock:
7
8    Thread 1 locks mutex1 then mutex2 while thread 2 locks in reverse order.
9    Deadlock occurs when each thread get one mutex and then ask for the other one.
10  */
11
12 #include <pthread.h>
13 #include <stdio.h>
14
15 pthread_mutex_t mutex1;
16 pthread_mutex_t mutex2;
17
18 static void* thread_fun1(void* val)
19 {
20   pthread_mutex_lock(&mutex1);
21   pthread_mutex_lock(&mutex2);
22   pthread_mutex_unlock(&mutex1);
23   pthread_mutex_unlock(&mutex2);
24
25   fprintf(stderr, "The thread %d is terminating.\n", *(int*)val);
26   return NULL;
27 }
28 static void* thread_fun2(void* val)
29 {
30   pthread_mutex_lock(&mutex2);
31   pthread_mutex_lock(&mutex1);
32   pthread_mutex_unlock(&mutex1);
33   pthread_mutex_unlock(&mutex2);
34
35   fprintf(stderr, "The thread %d is terminating.\n", *(int*)val);
36   return NULL;
37 }
38
39 int main(int argc, char* argv[])
40 {
41   pthread_mutex_init(&mutex1, NULL);
42   pthread_mutex_init(&mutex2, NULL);
43
44   int id[2] = {0, 1};
45   pthread_t thread1;
46   pthread_t thread2;
47   pthread_create(&thread1, NULL, thread_fun1, &id[0]);
48   pthread_create(&thread2, NULL, thread_fun2, &id[1]);
49   fprintf(stderr, "All threads are started.\n");
50   pthread_join(thread1, NULL);
51   pthread_join(thread2, NULL);
52
53   pthread_mutex_destroy(&mutex1);
54   pthread_mutex_destroy(&mutex2);
55
56   fprintf(stderr, "User's main is terminating.\n");
57   return 0;
58 }