Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h95 bool RunSafelyOnThread(function_ref<void()>, unsigned RequestedStackSize = 0);
97 unsigned RequestedStackSize = 0) {
98 return RunSafelyOnThread([&]() { Fn(UserData); }, RequestedStackSize);
H A DThreading.h66 unsigned RequestedStackSize = 0);
/freebsd-12.1/contrib/llvm/lib/Support/
H A DThreading.cpp43 unsigned RequestedStackSize) { in llvm_execute_on_thread() argument
44 (void)RequestedStackSize; in llvm_execute_on_thread()
H A DCrashRecoveryContext.cpp405 unsigned RequestedStackSize) { in RunSafelyOnThread() argument
408 llvm_execute_on_thread(RunSafelyOnThread_Dispatch, &Info, RequestedStackSize); in RunSafelyOnThread()
/freebsd-12.1/contrib/llvm/lib/Support/Unix/
H A DThreading.inc58 unsigned RequestedStackSize) {
68 if (RequestedStackSize != 0) {
69 if (::pthread_attr_setstacksize(&Attr, RequestedStackSize) != 0)
/freebsd-12.1/contrib/llvm/lib/Support/Windows/
H A DThreading.inc40 unsigned RequestedStackSize) {
44 RequestedStackSize, ThreadCallback,