Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DThreading.inc28 llvm_execute_on_thread_impl(unsigned(__stdcall *ThreadFunc)(void *), void *Arg,
31 ThreadFunc, Arg, 0, NULL);
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A Dthread.h117 llvm_execute_on_thread_impl(thread::start_routine_type ThreadFunc, void *Arg,
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/
H A DThreading.inc60 llvm_execute_on_thread_impl(void *(*ThreadFunc)(void *), void *Arg,
85 if ((errnum = ::pthread_create(&Thread, &Attr, ThreadFunc, Arg)) != 0)
/freebsd/contrib/googletest/googletest/test/
H A Dgoogletest-port-test.cc289 void* ThreadFunc(void* data) { in ThreadFunc() function
316 const int status = pthread_create(&thread_id, &attr, &ThreadFunc, &mutex); in TEST()