2014-05-30 22:08:51 +08:00
|
|
|
// RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
|
2015-11-19 20:02:02 +08:00
|
|
|
|
|
|
|
// pthread barriers are not available on OS X
|
|
|
|
// UNSUPPORTED: darwin
|
|
|
|
|
2015-01-21 21:50:02 +08:00
|
|
|
#include "test.h"
|
2012-05-10 22:18:22 +08:00
|
|
|
|
|
|
|
pthread_barrier_t B;
|
|
|
|
int Global;
|
|
|
|
|
|
|
|
void *Thread1(void *x) {
|
|
|
|
pthread_barrier_init(&B, 0, 2);
|
2015-01-21 21:50:02 +08:00
|
|
|
barrier_wait(&barrier);
|
2012-05-10 22:18:22 +08:00
|
|
|
pthread_barrier_wait(&B);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *Thread2(void *x) {
|
2015-01-21 21:50:02 +08:00
|
|
|
barrier_wait(&barrier);
|
2012-05-10 22:18:22 +08:00
|
|
|
pthread_barrier_wait(&B);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
2015-01-21 21:50:02 +08:00
|
|
|
barrier_init(&barrier, 2);
|
2012-05-10 22:18:22 +08:00
|
|
|
pthread_t t;
|
|
|
|
pthread_create(&t, NULL, Thread1, NULL);
|
|
|
|
Thread2(0);
|
|
|
|
pthread_join(t, NULL);
|
|
|
|
pthread_barrier_destroy(&B);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK: WARNING: ThreadSanitizer: data race
|