diff options
author | Tamas Berghammer <tberghammer@google.com> | 2015-02-11 10:29:30 +0000 |
---|---|---|
committer | Tamas Berghammer <tberghammer@google.com> | 2015-02-11 10:29:30 +0000 |
commit | e13c2731ba83ce3f820026878240f72d3b7df0d5 (patch) | |
tree | ea061498b66cd4219dd18fc5aedb167548b70e90 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | |
parent | c4d5ed06cde28a4c209385a2513e338673834c80 (diff) | |
download | bcm5719-llvm-e13c2731ba83ce3f820026878240f72d3b7df0d5.tar.gz bcm5719-llvm-e13c2731ba83ce3f820026878240f72d3b7df0d5.zip |
Separate monolithic GDBRemoteCommunicationServer class into 4 part
GDBRemoteCommunicationServer: Basic packet handling, handler registration
LLDBCommonPacketHandler: Common packet handling for lldb-platform and lldb-gdbserver
LLDBPlatformPacketHandler: lldb-platform specific packet handling
LLGSPacketHandler: lldb-gdbserver specific packet handling
Differential Revision: http://reviews.llvm.org/D7538
llvm-svn: 228823
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h index d90614bce88..4beeade241d 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h @@ -27,7 +27,7 @@ public: //------------------------------------------------------------------ // Constructors and Destructors //------------------------------------------------------------------ - GDBRemoteCommunicationClient(bool is_platform); + GDBRemoteCommunicationClient(); ~GDBRemoteCommunicationClient(); |