Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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);
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DCrashRecoveryContext.cpp510 unsigned RequestedStackSize) { in RunSafelyOnThread() argument
513 llvm::thread Thread(RequestedStackSize == 0 in RunSafelyOnThread()
515 : std::optional<unsigned>(RequestedStackSize), in RunSafelyOnThread()