forked from OSchip/llvm-project
26 lines
462 B
C++
26 lines
462 B
C++
// RUN: %clang_tsan -O1 %s -o %t && TSAN_OPTIONS="$TSAN_OPTIONS halt_on_error=1" not %t 2>&1 | FileCheck %s
|
|
#include <pthread.h>
|
|
#include <stdio.h>
|
|
|
|
int X;
|
|
|
|
void *Thread(void *x) {
|
|
X = 42;
|
|
return 0;
|
|
}
|
|
|
|
int main() {
|
|
fprintf(stderr, "BEFORE\n");
|
|
pthread_t t;
|
|
pthread_create(&t, 0, Thread, 0);
|
|
X = 43;
|
|
pthread_join(t, 0);
|
|
fprintf(stderr, "AFTER\n");
|
|
return 0;
|
|
}
|
|
|
|
// CHECK: BEFORE
|
|
// CHECK: WARNING: ThreadSanitizer: data race
|
|
// CHECK-NOT: AFTER
|
|
|