Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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);
/llvm-project-15.0.7/llvm/lib/Support/
H A DCrashRecoveryContext.cpp509 unsigned RequestedStackSize) { in RunSafelyOnThread() argument
512 llvm::thread Thread(RequestedStackSize == 0 in RunSafelyOnThread()
514 : llvm::Optional<unsigned>(RequestedStackSize), in RunSafelyOnThread()