HomeSort by: relevance | last modified time | path
    Searched defs:ScopedThread (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/
tsan_test_util.h 68 class ScopedThread {
70 explicit ScopedThread(bool detached = false, bool main = false);
71 ~ScopedThread();
119 ScopedThread(const ScopedThread&); // Not implemented.
120 void operator = (const ScopedThread&); // Not implemented.
123 class MainThread : public ScopedThread {
126 : ScopedThread(false, true) {
tsan_test_util_posix.cc 235 struct ScopedThread::Impl {
246 void ScopedThread::Impl::HandleEvent(Event *ev) {
331 void *ScopedThread::Impl::ScopedThreadCallback(void *arg) {
351 void ScopedThread::Impl::send(Event *e) {
362 ScopedThread::ScopedThread(bool detached, bool main) {
374 ScopedThread::Impl::ScopedThreadCallback, impl_);
378 ScopedThread::~ScopedThread() {
388 void ScopedThread::Detach()
    [all...]

Completed in 229 milliseconds