diff options
author | Jason Molenda <jmolenda@apple.com> | 2025-04-08 21:05:09 -0700 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2025-04-08 21:05:50 -0700 |
commit | 50e218ad9cef3e59f8d8ba8c9c7b57ce9c213c52 (patch) | |
tree | 96b6a6dc7ed39ce8b0af1b70391682f426448c62 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | c5e07fb86122669794808d6e857c88048f3a4926 (diff) | |
download | llvm-50e218ad9cef3e59f8d8ba8c9c7b57ce9c213c52.zip llvm-50e218ad9cef3e59f8d8ba8c9c7b57ce9c213c52.tar.gz llvm-50e218ad9cef3e59f8d8ba8c9c7b57ce9c213c52.tar.bz2 |
Revert "[lldb] Clear thread-creation breakpoints in ProcessGDBRemote::Clear (#134397)"
This reverts commit 232525f06942adb3b9977632e38dcd5f08c0642d.
This change is causing test crashes while running
TestCompletion.py on Darwin systems, most of the CI runs
have failed since it has been merged in.
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index d7e8c2c..6836078 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -3410,9 +3410,6 @@ Status ProcessGDBRemote::DisableWatchpoint(WatchpointSP wp_sp, bool notify) { void ProcessGDBRemote::Clear() { m_thread_list_real.Clear(); m_thread_list.Clear(); - if (m_thread_create_bp_sp) - if (TargetSP target_sp = m_target_wp.lock()) - target_sp->RemoveBreakpointByID(m_thread_create_bp_sp->GetID()); } Status ProcessGDBRemote::DoSignal(int signo) { |