Alexey Samsonov | 0172c8c | 2013-08-07 09:02:37 +0000 | [diff] [blame^] | 1 | // RUN: %clangxx_tsan -O1 %s -o %t && not %t 2>&1 | FileCheck %s |
Dmitry Vyukov | ad9da37 | 2012-12-06 12:16:15 +0000 | [diff] [blame] | 2 | #include <pthread.h> |
| 3 | #include <stdio.h> |
| 4 | #include <unistd.h> |
| 5 | |
| 6 | int Global; |
| 7 | pthread_mutex_t mtx; |
| 8 | |
| 9 | void *Thread1(void *x) { |
| 10 | pthread_mutex_lock(&mtx); |
| 11 | Global++; |
| 12 | pthread_mutex_unlock(&mtx); |
| 13 | return NULL; |
| 14 | } |
| 15 | |
| 16 | void *Thread2(void *x) { |
Dmitry Vyukov | 63a22f0 | 2012-12-07 09:24:57 +0000 | [diff] [blame] | 17 | sleep(1); |
Dmitry Vyukov | ad9da37 | 2012-12-06 12:16:15 +0000 | [diff] [blame] | 18 | Global--; |
| 19 | return NULL; |
| 20 | } |
| 21 | |
| 22 | int main() { |
Alexey Samsonov | 55425eb | 2012-12-28 08:38:09 +0000 | [diff] [blame] | 23 | // CHECK: WARNING: ThreadSanitizer: data race |
| 24 | // CHECK: Write of size 4 at {{.*}} by thread T2: |
| 25 | // CHECK: Previous write of size 4 at {{.*}} by thread T1 |
| 26 | // CHECK: (mutexes: write [[M1:M[0-9]+]]): |
| 27 | // CHECK: Mutex [[M1]] created at: |
| 28 | // CHECK: #0 pthread_mutex_init |
| 29 | // CHECK: #1 main {{.*}}/mutexset2.cc:[[@LINE+1]] |
Dmitry Vyukov | ad9da37 | 2012-12-06 12:16:15 +0000 | [diff] [blame] | 30 | pthread_mutex_init(&mtx, 0); |
| 31 | pthread_t t[2]; |
| 32 | pthread_create(&t[0], NULL, Thread1, NULL); |
| 33 | pthread_create(&t[1], NULL, Thread2, NULL); |
| 34 | pthread_join(t[0], NULL); |
| 35 | pthread_join(t[1], NULL); |
| 36 | pthread_mutex_destroy(&mtx); |
| 37 | } |