diff options
author | Jean-Daniel Dupas <devlists@shadowlab.org> | 2013-12-05 19:25:45 +0000 |
---|---|---|
committer | Jean-Daniel Dupas <devlists@shadowlab.org> | 2013-12-05 19:25:45 +0000 |
commit | 0fefa67606dc4b5078c3754e182de38ba7386231 (patch) | |
tree | e98cba233118d5c959cdcfbda7bbe50064100fed /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp | |
parent | 2bf0173b1694c42f951a4d2dd1229596c4dadd6a (diff) | |
download | bcm5719-llvm-0fefa67606dc4b5078c3754e182de38ba7386231.tar.gz bcm5719-llvm-0fefa67606dc4b5078c3754e182de38ba7386231.zip |
Extends StringExtractorGDBRemote to support debugger packets.
CC: lldb-commits
Differential Revision: http://llvm-reviews.chandlerc.com/D2337
llvm-svn: 196525
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp index d94e0a414f7..56414e213b1 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp @@ -109,6 +109,7 @@ GDBRemoteCommunicationServer::GetPacketAndSendResponse (uint32_t timeout_usec, interrupt = true; break; + default: case StringExtractorGDBRemote::eServerPacketType_unimplemented: return SendUnimplementedResponse (packet.GetStringRef().c_str()) > 0; |