diff options
author | Pavel Labath <labath@google.com> | 2017-02-24 09:29:14 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-02-24 09:29:14 +0000 |
commit | 4a705e7ea0cb911d9ec2933b99f5d1f7c1ba9ad3 (patch) | |
tree | 37789fcd612ae9d4d7099924a6c62a11bc3d2eab /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h | |
parent | 80c3b17410e10bab68ca3f48e86cdbc5357a9954 (diff) | |
download | bcm5719-llvm-4a705e7ea0cb911d9ec2933b99f5d1f7c1ba9ad3.tar.gz bcm5719-llvm-4a705e7ea0cb911d9ec2933b99f5d1f7c1ba9ad3.zip |
Implement QPassSignals GDB package in lldb-server
Summary: QPassSignals package allows lldb client to tell lldb-server to ignore certain types of signals and re-inject them back to inferior without stopping execution.
Reviewers: jmajors, labath
Subscribers: danalbert, srhines, emaste, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D30286
Author: Eugene Zemtsov <ezemtsov@google.com>
llvm-svn: 296101
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h index fa52cdaab49..e255b4cc486 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h @@ -203,6 +203,8 @@ protected: PacketResult Handle_qFileLoadAddress(StringExtractorGDBRemote &packet); + PacketResult Handle_QPassSignals(StringExtractorGDBRemote &packet); + void SetCurrentThreadID(lldb::tid_t tid); lldb::tid_t GetCurrentThreadID() const; |