2015-12-30 11:52:19 +00:00
|
|
|
// RUN: %clangxx_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s --check-prefix=CHECK-%os --check-prefix=CHECK
|
2015-02-10 07:45:43 +00:00
|
|
|
#include "test.h"
|
2013-01-18 20:06:45 +00:00
|
|
|
|
|
|
|
void *Thread(void *a) {
|
2015-02-10 07:45:43 +00:00
|
|
|
barrier_wait(&barrier);
|
2013-01-18 20:06:45 +00:00
|
|
|
*(int*)a = 43;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
2015-02-10 07:45:43 +00:00
|
|
|
barrier_init(&barrier, 2);
|
2013-01-18 20:06:45 +00:00
|
|
|
static __thread int Var = 42;
|
|
|
|
pthread_t t;
|
|
|
|
pthread_create(&t, 0, Thread, &Var);
|
|
|
|
Var = 43;
|
2015-02-10 07:45:43 +00:00
|
|
|
barrier_wait(&barrier);
|
2013-01-18 20:06:45 +00:00
|
|
|
pthread_join(t, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK: WARNING: ThreadSanitizer: data race
|
2015-12-30 11:52:19 +00:00
|
|
|
// CHECK-Linux: Location is TLS of main thread.
|
|
|
|
// CHECK-FreeBSD: Location is TLS of main thread.
|
2017-12-18 20:11:54 +00:00
|
|
|
// CHECK-NetBSD: Location is TLS of main thread.
|
2015-12-30 11:52:19 +00:00
|
|
|
// CHECK-Darwin: Location is heap block of size 4
|