2015-04-28 06:08:08 +08:00
|
|
|
// RUN: %clangxx_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s
|
2015-01-21 21:50:02 +08:00
|
|
|
#include "test.h"
|
2013-09-20 13:37:36 +08:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
void AnnotateIgnoreReadsBegin(const char *f, int l);
|
|
|
|
void AnnotateIgnoreReadsEnd(const char *f, int l);
|
|
|
|
void AnnotateIgnoreWritesBegin(const char *f, int l);
|
|
|
|
void AnnotateIgnoreWritesEnd(const char *f, int l);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *Thread(void *p) {
|
|
|
|
*(int*)p = 42;
|
2015-01-21 21:50:02 +08:00
|
|
|
barrier_wait(&barrier);
|
2013-09-20 13:37:36 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
2015-01-21 21:50:02 +08:00
|
|
|
barrier_init(&barrier, 2);
|
2013-09-20 13:37:36 +08:00
|
|
|
int *p = new int(0);
|
|
|
|
pthread_t t;
|
|
|
|
pthread_create(&t, 0, Thread, p);
|
2015-01-21 21:50:02 +08:00
|
|
|
barrier_wait(&barrier);
|
2013-09-20 13:37:36 +08:00
|
|
|
AnnotateIgnoreReadsBegin(__FILE__, __LINE__);
|
|
|
|
AnnotateIgnoreWritesBegin(__FILE__, __LINE__);
|
|
|
|
free(p);
|
|
|
|
AnnotateIgnoreReadsEnd(__FILE__, __LINE__);
|
|
|
|
AnnotateIgnoreWritesEnd(__FILE__, __LINE__);
|
|
|
|
pthread_join(t, 0);
|
|
|
|
fprintf(stderr, "OK\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-NOT: WARNING: ThreadSanitizer: data race
|
|
|
|
// CHECK: OK
|