Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h94 bool RunSafelyOnThread(function_ref<void()>, unsigned RequestedStackSize = 0);
96 unsigned RequestedStackSize = 0) {
97 return RunSafelyOnThread([&]() { Fn(UserData); }, RequestedStackSize);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DCrashRecoveryContext.cpp500 unsigned RequestedStackSize) { in RunSafelyOnThread() argument
504 RequestedStackSize == 0 in RunSafelyOnThread()
506 : llvm::Optional<unsigned>(RequestedStackSize)); in RunSafelyOnThread()