diff options
author | Oleksiy Vyalov <ovyalov@google.com> | 2014-12-10 01:27:28 +0000 |
---|---|---|
committer | Oleksiy Vyalov <ovyalov@google.com> | 2014-12-10 01:27:28 +0000 |
commit | 859e4b5da12ec670e5237663fbe77e9dc37f4aab (patch) | |
tree | c1f2ee821408e010d45d6739791c7f041ef10f28 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h | |
parent | 238d897b07ff986b086c0a37e465dbc4310307e5 (diff) | |
download | bcm5719-llvm-859e4b5da12ec670e5237663fbe77e9dc37f4aab.tar.gz bcm5719-llvm-859e4b5da12ec670e5237663fbe77e9dc37f4aab.zip |
Add D request handler to GDBRemoteCommunicationServer in order to support detach from inferior.
llvm-svn: 223901
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h index bd7da225db6..07ce98e29ac 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h @@ -460,6 +460,9 @@ protected: Handle_vAttach (StringExtractorGDBRemote &packet); PacketResult + Handle_D (StringExtractorGDBRemote &packet); + + PacketResult Handle_qThreadStopInfo (StringExtractorGDBRemote &packet); void |