blob: f77e1606c1dd2c2c25ba56fdcdf27f382e76af6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
#include <pthread.h>
#include <unistd.h>
int Global;
void *Thread1(void *x) {
sleep(1);
Global = 42;
return x;
}
int main() {
pthread_t t;
pthread_create(&t, 0, Thread1, 0);
Global = 43;
pthread_join(t, 0);
return Global;
}
// CHECK: WARNING: ThreadSanitizer: data race
|