Home
last modified time | relevance | path

Searched refs:DefaultStackSize (Results 1 – 3 of 3) sorted by relevance

/llvm-project/compiler-rt/test/asan/TestCases/Posix/
H A Dunpoison-alternate-stack.cpp141 size_t const DefaultStackSize = in main() local
145 size_t const MappingSize = DefaultStackSize + AltStackSize; in main()
153 AltStack.ss_sp = (char *)Mapping + DefaultStackSize; in main()
160 pthread_attr_setstack(&ThreadAttr, Mapping, DefaultStackSize); in main()
/llvm-project/llvm/lib/Support/
H A DThreading.cpp83 const std::optional<unsigned> llvm::thread::DefaultStackSize = 8 * 1024 * 1024;
88 const std::optional<unsigned> llvm::thread::DefaultStackSize = 4 * 1024 * 1024;
90 const std::optional<unsigned> llvm::thread::DefaultStackSize; member in llvm::thread
85 const std::optional<unsigned> llvm::thread::DefaultStackSize = 8 * 1024 * 1024; global() member in llvm::thread
92 const std::optional<unsigned> llvm::thread::DefaultStackSize; global() member in llvm::thread
/llvm-project/llvm/include/llvm/Support/
H A Dthread.h70 static const std::optional<unsigned> DefaultStackSize; variable
78 : thread(DefaultStackSize, f, args...) {} in thread()