Mercurial > hg > CbC > CbC_llvm
view compiler-rt/test/tsan/lots_of_threads.c @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | c4bab56944e8 |
children |
line wrap: on
line source
// RUN: %clang_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s #include "test.h" void *thr(void *arg) { // Create a sync object on stack, so there is something to free on thread end. volatile int x; __atomic_fetch_add(&x, 1, __ATOMIC_SEQ_CST); barrier_wait(&barrier); return 0; } int main() { const int kThreads = 300; const int kIters = 10; barrier_init(&barrier, kThreads + 1); pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 16 << 20); for (int iter = 0; iter < kIters; iter++) { pthread_t threads[kThreads]; for (int t = 0; t < kThreads; t++) { int err = pthread_create(&threads[t], &attr, thr, 0); if (err) { fprintf(stderr, "Failed to create thread #%d\n", t); return 1; } } barrier_wait(&barrier); for (int t = 0; t < kThreads; t++) pthread_join(threads[t], 0); } pthread_attr_destroy(&attr); fprintf(stderr, "DONE\n"); return 0; } // CHECK: DONE