2014-05-01 05:34:17 +08:00
|
|
|
// RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s
|
2014-03-12 17:48:14 +08:00
|
|
|
// CHECK-NOT: WARNING
|
|
|
|
// CHECK: OK
|
|
|
|
|
2015-01-21 21:50:02 +08:00
|
|
|
#include "test.h"
|
2014-03-12 17:48:14 +08:00
|
|
|
|
|
|
|
pthread_mutex_t m;
|
|
|
|
pthread_cond_t c;
|
|
|
|
int x;
|
|
|
|
|
2015-04-08 15:48:52 +08:00
|
|
|
static void my_cleanup(void *arg) {
|
|
|
|
printf("my_cleanup\n");
|
|
|
|
pthread_mutex_unlock((pthread_mutex_t*)arg);
|
|
|
|
}
|
|
|
|
|
2014-03-12 17:48:14 +08:00
|
|
|
void *thr1(void *p) {
|
|
|
|
pthread_mutex_lock(&m);
|
2015-04-08 15:48:52 +08:00
|
|
|
pthread_cleanup_push(my_cleanup, &m);
|
2015-01-21 21:50:02 +08:00
|
|
|
barrier_wait(&barrier);
|
2014-03-12 17:48:14 +08:00
|
|
|
while (x == 0)
|
|
|
|
pthread_cond_wait(&c, &m);
|
|
|
|
pthread_cleanup_pop(1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
2015-01-21 21:50:02 +08:00
|
|
|
barrier_init(&barrier, 2);
|
|
|
|
|
2014-03-12 17:48:14 +08:00
|
|
|
pthread_t th;
|
|
|
|
|
|
|
|
pthread_mutex_init(&m, 0);
|
|
|
|
pthread_cond_init(&c, 0);
|
|
|
|
|
|
|
|
pthread_create(&th, 0, thr1, 0);
|
2015-01-21 21:50:02 +08:00
|
|
|
barrier_wait(&barrier);
|
2014-03-12 17:48:14 +08:00
|
|
|
sleep(1); // let it block on cond var
|
|
|
|
pthread_cancel(th);
|
|
|
|
|
|
|
|
pthread_join(th, 0);
|
|
|
|
pthread_mutex_lock(&m);
|
|
|
|
pthread_mutex_unlock(&m);
|
|
|
|
fprintf(stderr, "OK\n");
|
|
|
|
}
|