[ASan/Win] Add a comment about DCL-using-static vs threads
[blocksruntime.git] / test / tsan / mutexset5.cc
blobea1255373c64cd12aad78381c3b9f75ada7ce9ee
1 // RUN: %clangxx_tsan -O1 %s -o %t && not %run %t 2>&1 | FileCheck %s
2 #include <pthread.h>
3 #include <stdio.h>
4 #include <unistd.h>
6 int Global;
7 pthread_mutex_t mtx1;
8 pthread_mutex_t mtx2;
10 void *Thread1(void *x) {
11 sleep(1);
12 pthread_mutex_lock(&mtx1);
13 Global++;
14 pthread_mutex_unlock(&mtx1);
15 return NULL;
18 void *Thread2(void *x) {
19 pthread_mutex_lock(&mtx2);
20 Global--;
21 pthread_mutex_unlock(&mtx2);
22 return NULL;
25 int main() {
26 // CHECK: WARNING: ThreadSanitizer: data race
27 // CHECK: Write of size 4 at {{.*}} by thread T1
28 // CHECK: (mutexes: write [[M1:M[0-9]+]]):
29 // CHECK: Previous write of size 4 at {{.*}} by thread T2
30 // CHECK: (mutexes: write [[M2:M[0-9]+]]):
31 // CHECK: Mutex [[M1]] (0x{{.*}}) created at:
32 // CHECK: #0 pthread_mutex_init
33 // CHECK: #1 main {{.*}}/mutexset5.cc:[[@LINE+4]]
34 // CHECK: Mutex [[M2]] (0x{{.*}}) created at:
35 // CHECK: #0 pthread_mutex_init
36 // CHECK: #1 main {{.*}}/mutexset5.cc:[[@LINE+5]]
37 pthread_mutex_init(&mtx1, 0);
38 pthread_mutex_init(&mtx2, 0);
39 pthread_t t[2];
40 pthread_create(&t[0], NULL, Thread1, NULL);
41 pthread_create(&t[1], NULL, Thread2, NULL);
42 pthread_join(t[0], NULL);
43 pthread_join(t[1], NULL);
44 pthread_mutex_destroy(&mtx1);
45 pthread_mutex_destroy(&mtx2);