1 // RUN: %clangxx_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
27 static A
*obj
= new B
;
29 void *Thread1(void *x
) {
31 barrier_wait(&barrier
);
36 void *Thread2(void *x
) {
37 barrier_wait(&barrier
);
43 barrier_init(&barrier
, 2);
45 pthread_create(&t
[0], NULL
, Thread1
, NULL
);
46 pthread_create(&t
[1], NULL
, Thread2
, NULL
);
47 pthread_join(t
[0], NULL
);
48 pthread_join(t
[1], NULL
);
51 // CHECK: WARNING: ThreadSanitizer: data race on vptr