[Lldb-commits] [PATCH] D13727: Add task pool to LLDB
Joe Ranieri via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 15 10:53:41 PDT 2015
This may or may not be relevant, but the stack size for std::thread on
OS X is a fixed size of 512KB (DEFAULT_STACK_SIZE in pthread.c).
There's no way to specify a stack size with std::thread and no
per-process override like I think you can do with rlimit on Linux.
It's an issue I ran into when implementing a similar work queue for
doing LLVM code generation in our compiler.
-- Joe Ranieri
More information about the lldb-commits
mailing list