Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / tsan / bench_mutex.cpp
blob58aa86a787d32b8686a9c6ef1621340c0ced21da
1 // RUN: %clangxx_tsan %s -o %t
2 // RUN: %run %t 2>&1 | FileCheck %s
4 // bench.h needs pthread barriers which are not available on OS X
5 // UNSUPPORTED: darwin
7 #include "bench.h"
9 pthread_mutex_t mtx;
10 pthread_cond_t cv;
11 int x;
13 void thread(int tid) {
14 for (int i = 0; i < bench_niter; i++) {
15 pthread_mutex_lock(&mtx);
16 while (x != i * 2 + tid)
17 pthread_cond_wait(&cv, &mtx);
18 x++;
19 pthread_cond_signal(&cv);
20 pthread_mutex_unlock(&mtx);
24 void bench() {
25 pthread_mutex_init(&mtx, 0);
26 pthread_cond_init(&cv, 0);
27 start_thread_group(2, thread);
30 // CHECK: DONE