Home
last modified time | relevance | path

Searched refs:RunThread (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/compiler-rt/test/asan/TestCases/Posix/
H A Ddeep_thread_stack.cpp36 void RunThread(callback_type function) { in RunThread() function
43 RunThread(AllocThread); in main()
44 RunThread(FreeThread); in main()
45 RunThread(AccessThread); in main()
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_win.cpp83 DWORD WINAPI RunThread(void *argument) { in RunThread() function
166 CreateThread(nullptr, 0, RunThread, &arg, 0, &trace_thread_id); in StopTheWorld()
H A Dsanitizer_stoptheworld_mac.cpp53 void *RunThread(void *arg) { in RunThread() function
84 pthread_t run_thread = (pthread_t)internal_start_thread(RunThread, &arg); in StopTheWorld()
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_thread_registry_test.cpp182 void *RunThread(void *arg) { in RunThread() function
207 PTHREAD_CREATE(&threads[i], 0, RunThread, &args[i]); in ThreadedTestRegistry()