• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clangxx_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
2 #include <pthread.h>
3 #include <stdio.h>
4 #include <unistd.h>
5 
6 int Global;
7 pthread_mutex_t *mtx;
8 
Thread1(void * x)9 void *Thread1(void *x) {
10   sleep(1);
11   pthread_mutex_lock(mtx);
12   Global++;
13   pthread_mutex_unlock(mtx);
14   return NULL;
15 }
16 
Thread2(void * x)17 void *Thread2(void *x) {
18   Global--;
19   return NULL;
20 }
21 
main()22 int main() {
23   // CHECK: WARNING: ThreadSanitizer: data race
24   // CHECK:   Write of size 4 at {{.*}} by thread T1
25   // CHECK:                         (mutexes: write [[M1:M[0-9]+]]):
26   // CHECK:   Previous write of size 4 at {{.*}} by thread T2:
27   // CHECK:   Mutex [[M1]] (0x{{.*}}) created at:
28   // CHECK:     #0 pthread_mutex_init
29   // CHECK:     #1 main {{.*}}/mutexset8.cc
30   mtx = new pthread_mutex_t;
31   pthread_mutex_init(mtx, 0);
32   pthread_t t[2];
33   pthread_create(&t[0], NULL, Thread1, NULL);
34   pthread_create(&t[1], NULL, Thread2, NULL);
35   pthread_join(t[0], NULL);
36   pthread_join(t[1], NULL);
37   pthread_mutex_destroy(mtx);
38   delete mtx;
39 }
40