diff options
author | Pavel Labath <pavel@labath.sk> | 2022-03-09 18:19:58 +0100 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2022-03-10 20:26:54 +0100 |
commit | ed1a83befe6569e8bc67846a98dcf3eaa6dd978a (patch) | |
tree | 82405eace6941541702730a8ce57313f809c2341 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | |
parent | 72276bdaff931910f62a84336b3e864ab48bac06 (diff) | |
download | llvm-ed1a83befe6569e8bc67846a98dcf3eaa6dd978a.zip llvm-ed1a83befe6569e8bc67846a98dcf3eaa6dd978a.tar.gz llvm-ed1a83befe6569e8bc67846a98dcf3eaa6dd978a.tar.bz2 |
[lldb/gdb-remote] Remove ancient debugserver workaround
This workaround is the source of an awkwared Process->Platform
dependency. While this could be solved in various ways (the only thing
we really use is the plugin name), it may be better to just remove it --
the workaround was added 10 years ago (43c555dfc), and the affected
debugservers were "old" even then, so hopefully they are not in use
anymore.
Differential Revision: https://reviews.llvm.org/D121305
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h index 2a5e431..d8f1850 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h @@ -281,7 +281,6 @@ protected: MMapMap m_addr_to_mmap_size; lldb::BreakpointSP m_thread_create_bp_sp; bool m_waiting_for_attach; - bool m_destroy_tried_resuming; lldb::CommandObjectSP m_command_sp; int64_t m_breakpoint_pc_offset; lldb::tid_t m_initial_tid; // The initial thread ID, given by stub on attach |