Home
last modified time | relevance | path

Searched refs:impl_ (Results 1 – 2 of 2) sorted by relevance

/openbsd/src/gnu/llvm/compiler-rt/lib/tsan/tests/rtl/
Dtsan_test_util_posix.cpp380 impl_ = new Impl; in ScopedThread()
381 impl_->main = main; in ScopedThread()
382 impl_->detached = detached; in ScopedThread()
383 atomic_store(&impl_->event, 0, __tsan::memory_order_relaxed); in ScopedThread()
390 __interceptor_pthread_create(&impl_->thread, &attr, in ScopedThread()
391 ScopedThread::Impl::ScopedThreadCallback, impl_); in ScopedThread()
396 if (!impl_->main) { in ~ScopedThread()
398 impl_->send(&event); in ~ScopedThread()
399 if (!impl_->detached) in ~ScopedThread()
400 __interceptor_pthread_join(impl_->thread, 0); in ~ScopedThread()
[all …]
Dtsan_test_util.h124 Impl *impl_; variable