2014-05-01 05:34:17 +08:00
|
|
|
// RUN: %clangxx_tsan -O1 %s -o %t && not %run %t 2>&1 | FileCheck %s
|
2012-05-10 22:18:22 +08:00
|
|
|
#include <pthread.h>
|
2013-12-24 15:49:33 +08:00
|
|
|
#include <unistd.h>
|
2012-05-10 22:18:22 +08:00
|
|
|
|
2013-12-24 15:49:33 +08:00
|
|
|
volatile int X;
|
2012-05-10 22:18:22 +08:00
|
|
|
|
|
|
|
void *Thread1(void *x) {
|
2013-12-24 15:49:33 +08:00
|
|
|
sleep(1);
|
2012-05-10 22:18:22 +08:00
|
|
|
X = 42;
|
|
|
|
X = 66;
|
|
|
|
X = 78;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *Thread2(void *x) {
|
|
|
|
X = 11;
|
|
|
|
X = 99;
|
|
|
|
X = 73;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
pthread_t t;
|
|
|
|
pthread_create(&t, 0, Thread1, 0);
|
|
|
|
Thread2(0);
|
|
|
|
pthread_join(t, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK: ThreadSanitizer: reported 1 warnings
|