2014-05-30 22:08:51 +08:00
|
|
|
// RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
|
2012-05-10 22:18:22 +08:00
|
|
|
#include <pthread.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
pthread_mutex_t Mtx;
|
|
|
|
int Global;
|
|
|
|
|
|
|
|
void *Thread1(void *x) {
|
|
|
|
pthread_mutex_init(&Mtx, 0);
|
|
|
|
pthread_mutex_lock(&Mtx);
|
|
|
|
Global = 42;
|
|
|
|
pthread_mutex_unlock(&Mtx);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *Thread2(void *x) {
|
2012-12-07 17:24:57 +08:00
|
|
|
sleep(1);
|
2012-05-10 22:18:22 +08:00
|
|
|
pthread_mutex_lock(&Mtx);
|
|
|
|
Global = 43;
|
|
|
|
pthread_mutex_unlock(&Mtx);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
pthread_t t[2];
|
|
|
|
pthread_create(&t[0], NULL, Thread1, NULL);
|
|
|
|
pthread_create(&t[1], NULL, Thread2, NULL);
|
|
|
|
pthread_join(t[0], NULL);
|
|
|
|
pthread_join(t[1], NULL);
|
|
|
|
pthread_mutex_destroy(&Mtx);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK: WARNING: ThreadSanitizer: data race
|
2013-02-01 19:10:53 +08:00
|
|
|
// CHECK-NEXT: Atomic read of size 1 at {{.*}} by thread T2:
|
2012-08-30 21:02:30 +08:00
|
|
|
// CHECK-NEXT: #0 pthread_mutex_lock
|
2012-09-18 15:23:54 +08:00
|
|
|
// CHECK-NEXT: #1 Thread2{{.*}} {{.*}}race_on_mutex.c:20{{(:3)?}} ({{.*}})
|
2012-12-06 20:16:15 +08:00
|
|
|
// CHECK: Previous write of size 1 at {{.*}} by thread T1:
|
2012-05-10 22:18:22 +08:00
|
|
|
// CHECK-NEXT: #0 pthread_mutex_init {{.*}} ({{.*}})
|
2012-09-18 15:23:54 +08:00
|
|
|
// CHECK-NEXT: #1 Thread1{{.*}} {{.*}}race_on_mutex.c:11{{(:3)?}} ({{.*}})
|