]> git.proxmox.com Git - rustc.git/blame - src/compiler-rt/test/tsan/simple_race.c
Imported Upstream version 1.6.0+dfsg1
[rustc.git] / src / compiler-rt / test / tsan / simple_race.c
CommitLineData
92a42be0
SL
1// RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
2#include "test.h"
1a4d82fc
JJ
3
4int Global;
5
6void *Thread1(void *x) {
92a42be0 7 barrier_wait(&barrier);
1a4d82fc
JJ
8 Global = 42;
9 return NULL;
10}
11
12void *Thread2(void *x) {
13 Global = 43;
92a42be0 14 barrier_wait(&barrier);
1a4d82fc
JJ
15 return NULL;
16}
17
18int main() {
92a42be0 19 barrier_init(&barrier, 2);
1a4d82fc
JJ
20 pthread_t t[2];
21 pthread_create(&t[0], NULL, Thread1, NULL);
22 pthread_create(&t[1], NULL, Thread2, NULL);
23 pthread_join(t[0], NULL);
24 pthread_join(t[1], NULL);
25 return 0;
26}
27
28// CHECK: WARNING: ThreadSanitizer: data race
92a42be0 29