Home
last modified time | relevance | path

Searched refs:ThreadFunc (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/compiler-rt/test/tsan/
H A Dmutex_double_lock.cpp4 void *ThreadFunc(void *m) { in ThreadFunc() function
13 pthread_create(&th, 0, ThreadFunc, &m); in main()
/llvm-project-15.0.7/compiler-rt/test/asan/TestCases/Linux/
H A Dpthread_create_version.cpp10 void *ThreadFunc(void *) { return nullptr; } in ThreadFunc() function
19 pthread_create(&t, &attr, ThreadFunc, nullptr); in main()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DThreading.cpp60 auto ThreadFunc = [&] { in TEST() local
66 llvm::thread Thread(ThreadFunc); in TEST()
/llvm-project-15.0.7/llvm/lib/Support/Unix/
H A DThreading.inc54 llvm_execute_on_thread_impl(void *(*ThreadFunc)(void *), void *Arg,
79 if ((errnum = ::pthread_create(&Thread, &Attr, ThreadFunc, Arg)) != 0)
/llvm-project-15.0.7/llvm/lib/Support/Windows/
H A DThreading.inc28 llvm_execute_on_thread_impl(unsigned(__stdcall *ThreadFunc)(void *), void *Arg,
31 ThreadFunc, Arg, 0, NULL);
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A Dthread.h122 llvm_execute_on_thread_impl(thread::start_routine_type ThreadFunc, void *Arg,