HomeSort by: relevance | last modified time | path
    Searched refs:thread_registry (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_thread.cc 26 static ThreadRegistry *thread_registry; variable in namespace:__lsan
38 thread_registry = new(thread_registry_placeholder)
76 return thread_registry->CreateThread(user_id, detached, parent_tid,
90 thread_registry->StartThread(tid, os_id, workerthread, &args);
94 thread_registry->FinishThread(GetCurrentThread());
99 if (!thread_registry) return nullptr;
103 return (ThreadContext *)thread_registry->GetThreadLocked(GetCurrentThread());
115 return thread_registry->FindThread(FindThreadByUid, (void*)uid);
120 thread_registry->JoinThread(tid, /* arg */nullptr);
134 thread_registry->FindThreadContextByOsIDLocked(os_id))
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl_thread.cc 213 ThreadRegistryLock l(ctx->thread_registry);
215 ctx->thread_registry->RunCallbackForEachThreadLocked(
228 ctx->thread_registry->GetNumberOfThreads(0, 0, &result);
237 ctx->thread_registry->CreateThread(uid, detached, parent_tid, &args);
239 StatSet(thr, StatThreadMaxAlive, ctx->thread_registry->GetMaxAliveThreads());
259 ThreadRegistry *tr = ctx->thread_registry;
284 ctx->thread_registry->FinishThread(thr->tid);
297 int res = ctx->thread_registry->FindThread(FindThreadByUid, (void*)uid);
306 ctx->thread_registry->JoinThread(tid, thr);
312 ctx->thread_registry->DetachThread(tid, thr)
    [all...]
tsan_debugging.cc 213 ctx->thread_registry->Lock();
215 ctx->thread_registry->Unlock();
250 ThreadContextBase *tctx = ctx->thread_registry->GetThreadLocked(b->tid);
tsan_rtl_report.cc 147 ctx->thread_registry->CheckLocked();
219 ctx->thread_registry->CheckLocked();
221 ctx->thread_registry->FindThreadContextLocked(
226 ctx->thread_registry->CheckLocked();
228 ctx->thread_registry->GetThreadLocked(tid));
243 ctx->thread_registry->CheckLocked();
245 ctx->thread_registry->FindThreadContextLocked(IsInStackOrTls,
684 ThreadRegistryLock l0(ctx->thread_registry);
695 ctx->thread_registry->GetThreadLocked(s.tid()));
tsan_rtl_mutex.cc 55 ThreadRegistryLock l(ctx->thread_registry);
112 ThreadRegistryLock l(ctx->thread_registry);
428 ThreadRegistryLock l(ctx->thread_registry);
429 ctx->thread_registry->RunCallbackForEachThreadLocked(
472 ThreadRegistryLock l(ctx->thread_registry);
473 ctx->thread_registry->RunCallbackForEachThreadLocked(
517 ThreadRegistryLock l(ctx->thread_registry);
tsan_rtl.cc 102 , thread_registry(new(thread_registry_placeholder) ThreadRegistry(
142 ctx->thread_registry->GetNumberOfThreads(&n_threads, &n_running_threads);
488 ctx->thread_registry->Lock();
494 ctx->thread_registry->Unlock();
499 ctx->thread_registry->Unlock();
502 ctx->thread_registry->GetNumberOfThreads(0, 0, &nthread /* alive threads */);
tsan_mman.cc 148 ThreadRegistryLock l(ctx->thread_registry);
tsan_rtl.h 539 ThreadRegistry *thread_registry; member in struct:__tsan::Context
tsan_interceptors.cc 1938 ThreadRegistryLock l(ctx->thread_registry);
2301 __tsan::ctx->thread_registry->SetThreadNameByUserId(thread, name)

Completed in 39 milliseconds