[Lldb-commits] [lldb] [lldb] Correctly annotate threads at a bp site as hitting it (PR #82709)

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Fri Feb 23 13:58:49 PST 2024


================
@@ -1722,6 +1742,8 @@ ThreadSP ProcessGDBRemote::SetThreadStopInfo(
     } else {
       bool handled = false;
       bool did_exec = false;
+      if (reason == "none")
----------------
jasonmolenda wrote:

I updated the patch where I handle this a little more cleanly, checking that `reason` has a value, and that the value is not `"none"`, and added a short comment.

https://github.com/llvm/llvm-project/pull/82709


More information about the lldb-commits mailing list