[Lldb-commits] [PATCH] D65555: [lldb] [Process/NetBSD] Enable reporting of new and exited threads [WIP]
Michał Górny via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Sat Aug 3 23:19:39 PDT 2019
mgorny marked 6 inline comments as done.
mgorny added a comment.
@jfb, could you please remove your red flag now? ;-)
================
Comment at: lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp:738
+ if (*it && ((*it)->GetID() == thread_id)) {
+ m_threads.erase(it);
+ break;
----------------
mgorny wrote:
> Note to self, this should be `it =... `
Nevermind myself. It `breaks` immediately, so it doesn't matter.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D65555/new/
https://reviews.llvm.org/D65555
More information about the lldb-commits
mailing list