[PATCH] D50993: [clangd] Increase stack size of the new threads on macOS
Alex Lorenz via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 21 15:23:16 PDT 2018
arphaman added inline comments.
================
Comment at: clangd/Threading.cpp:76
+
+ if (::pthread_attr_setstacksize(&Attr, 8 * 1024 * 1024) != 0)
+ return;
----------------
please use clang::DesiredStackSize instead.
Repository:
rCTE Clang Tools Extra
https://reviews.llvm.org/D50993
More information about the cfe-commits
mailing list