forked from OSchip/llvm-project
32 lines
573 B
C
32 lines
573 B
C
// RUN: %clang_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s
|
|
#include <pthread.h>
|
|
#include <stdio.h>
|
|
#include <stddef.h>
|
|
#include <unistd.h>
|
|
|
|
pthread_barrier_t B;
|
|
int Global;
|
|
|
|
void *Thread1(void *x) {
|
|
pthread_barrier_init(&B, 0, 2);
|
|
pthread_barrier_wait(&B);
|
|
return NULL;
|
|
}
|
|
|
|
void *Thread2(void *x) {
|
|
sleep(1);
|
|
pthread_barrier_wait(&B);
|
|
return NULL;
|
|
}
|
|
|
|
int main() {
|
|
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
|