[Lldb-commits] [PATCH] D128893: [lldb] [llgs] Fix disabling non-stop mode

Michał Górny via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Jul 13 09:05:52 PDT 2022


mgorny marked an inline comment as done.
mgorny added inline comments.


================
Comment at: lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp:1913-1915
+  auto process_it = m_inhibit_stop_reason_processes.find(process.GetID());
+  if (process_it != m_inhibit_stop_reason_processes.end()) {
+    m_inhibit_stop_reason_processes.erase(process_it);
----------------
labath wrote:
> `if (m_inhibit_stop_reason_processes.erase(process.GetID()) != 0)`
This is now irrelevant with the flag field ;-).


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D128893/new/

https://reviews.llvm.org/D128893



More information about the lldb-commits mailing list