[Lldb-commits] [PATCH] D120972: [lldb] Show progress events in the command line driver
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 3 22:53:19 PST 2022
JDevlieghere added inline comments.
================
Comment at: lldb/source/Core/Debugger.cpp:1822
+ [this] { return ProgressHandlerThread(); },
+ 8 * 1024 * 1024); // Use larger 8MB stack for this thread
+ if (progress_handler_thread) {
----------------
mib wrote:
> Why ?
I copied this from `StartIOHandlerThread`, but you're absolutely right, we don't need that big of stack to handle events.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D120972/new/
https://reviews.llvm.org/D120972
More information about the lldb-commits
mailing list