diff options
author | Michał Górny <mgorny@moritz.systems> | 2022-06-20 11:34:23 +0200 |
---|---|---|
committer | Michał Górny <mgorny@moritz.systems> | 2022-06-24 17:20:24 +0200 |
commit | e827e5186fb6991bc749eaaddf13f8a53ebb63c2 (patch) | |
tree | f8a316f0061b3c32e0fdae054a7d7ed37baedc4e /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h | |
parent | 630da0e309ef4764465dcaf559676633e948f5c0 (diff) | |
download | llvm-e827e5186fb6991bc749eaaddf13f8a53ebb63c2.zip llvm-e827e5186fb6991bc749eaaddf13f8a53ebb63c2.tar.gz llvm-e827e5186fb6991bc749eaaddf13f8a53ebb63c2.tar.bz2 |
[lldb] [llgs] Implement the 'T' packet
Implement the 'T' packet that is used to verify whether the specified
thread belongs to the debugged processes.
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.llvm.org/D128170
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 03a548b..abb7f10 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h @@ -246,6 +246,8 @@ protected: PacketResult Handle_QMemTags(StringExtractorGDBRemote &packet); + PacketResult Handle_T(StringExtractorGDBRemote &packet); + void SetCurrentThreadID(lldb::tid_t tid); lldb::tid_t GetCurrentThreadID() const; |