diff options
author | Michał Górny <mgorny@moritz.systems> | 2022-09-07 17:13:57 +0200 |
---|---|---|
committer | Michał Górny <mgorny@moritz.systems> | 2022-09-09 17:13:08 +0200 |
commit | bdb4468d39496088fc05d8c5575647fac9c8062a (patch) | |
tree | c61c96872cf6375386f68e5fdc0e752037128e0f /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp | |
parent | 28bd7945eabdbde2b1fc071ab2f9b78e6e754a1a (diff) | |
download | llvm-bdb4468d39496088fc05d8c5575647fac9c8062a.zip llvm-bdb4468d39496088fc05d8c5575647fac9c8062a.tar.gz llvm-bdb4468d39496088fc05d8c5575647fac9c8062a.tar.bz2 |
[gdb-remote] Move broadcasting logic down to GDBRemoteClientBase
Move the broadcasting support from GDBRemoteCommunication
to GDBRemoteClientBase since this is where it is actually used. Remove
GDBRemoteCommunication and subclass constructor arguments left over
after Communication cleanup.
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.llvm.org/D133427
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp index 089b6ee..072151e 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp @@ -70,11 +70,9 @@ enum GDBRemoteServerError { // GDBRemoteCommunicationServerLLGS constructor GDBRemoteCommunicationServerLLGS::GDBRemoteCommunicationServerLLGS( MainLoop &mainloop, const NativeProcessProtocol::Factory &process_factory) - : GDBRemoteCommunicationServerCommon("gdb-remote.server", - "gdb-remote.server.rx_packet"), - m_mainloop(mainloop), m_process_factory(process_factory), - m_current_process(nullptr), m_continue_process(nullptr), - m_stdio_communication() { + : GDBRemoteCommunicationServerCommon(), m_mainloop(mainloop), + m_process_factory(process_factory), m_current_process(nullptr), + m_continue_process(nullptr), m_stdio_communication() { RegisterPacketHandlers(); } |