1 | // RUN: %clangxx_tsan -O1 %s -o %t && %deflake %run %t 2>&1 | FileCheck %s |
2 | #include "test.h" |
3 | #include <string.h> |
4 | |
5 | int y[4], z[4]; |
6 | |
7 | void *MemMoveThread(void *a) { |
8 | memmove(dest: (int*)a, src: z, n: 16); |
9 | barrier_wait(barrier: &barrier); |
10 | return NULL; |
11 | } |
12 | |
13 | void *MemSetThread(void *a) { |
14 | barrier_wait(barrier: &barrier); |
15 | memset(s: (int*)a, c: 0, n: 16); |
16 | return NULL; |
17 | } |
18 | |
19 | int main() { |
20 | barrier_init(barrier: &barrier, count: 2); |
21 | pthread_t t[2]; |
22 | // Race on y between memmove and memset |
23 | pthread_create(newthread: &t[0], NULL, start_routine: MemMoveThread, arg: y); |
24 | pthread_create(newthread: &t[1], NULL, start_routine: MemSetThread, arg: y); |
25 | pthread_join(th: t[0], NULL); |
26 | pthread_join(th: t[1], NULL); |
27 | |
28 | fprintf(stderr, format: "PASS\n" ); |
29 | return 0; |
30 | } |
31 | |
32 | // CHECK: WARNING: ThreadSanitizer: data race |
33 | // CHECK: #0 {{.*}}memset |
34 | // CHECK: #{{[12]}} MemSetThread |
35 | // CHECK: Previous write |
36 | // CHECK: #0 {{.*mem(cpy|move)}} |
37 | // CHECK: #{{[12]}} MemMoveThread |
38 | |