forked from OSchip/llvm-project
20 lines
380 B
C++
20 lines
380 B
C++
// RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
|
|
#include <pthread.h>
|
|
#include <unistd.h>
|
|
|
|
void *Thread(void *a) {
|
|
__atomic_fetch_add((int*)a, 1, __ATOMIC_SEQ_CST);
|
|
return 0;
|
|
}
|
|
|
|
int main() {
|
|
int *a = new int(0);
|
|
pthread_t t;
|
|
pthread_create(&t, 0, Thread, a);
|
|
sleep(1);
|
|
delete a;
|
|
pthread_join(t, 0);
|
|
}
|
|
|
|
// CHECK: WARNING: ThreadSanitizer: data race
|