1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| // RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
|
| // pthread barriers are not available on OS X
| // UNSUPPORTED: darwin
|
| #include <pthread.h>
| #include <stdio.h>
| #include <stddef.h>
| #include <unistd.h>
|
| pthread_barrier_t B;
| int Global;
|
| void *Thread1(void *x) {
| if (pthread_barrier_wait(&B) == PTHREAD_BARRIER_SERIAL_THREAD)
| pthread_barrier_destroy(&B);
| return NULL;
| }
|
| void *Thread2(void *x) {
| if (pthread_barrier_wait(&B) == PTHREAD_BARRIER_SERIAL_THREAD)
| pthread_barrier_destroy(&B);
| return NULL;
| }
|
| int main() {
| pthread_barrier_init(&B, 0, 2);
| pthread_t t;
| pthread_create(&t, NULL, Thread1, NULL);
| Thread2(0);
| pthread_join(t, NULL);
| return 0;
| }
|
| // CHECK: WARNING: ThreadSanitizer: data race
|
|