diff options
author | Jason Molenda <jmolenda@apple.com> | 2014-05-06 02:59:39 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2014-05-06 02:59:39 +0000 |
commit | bdc4f12f1996a3070da0a24b469da9bf93f544dd (patch) | |
tree | eb41453fe5f3403f1bd4176d5af61fec769c6813 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | |
parent | 018ff31462e85ac9a0bdd0e55bfe6c86ecd99657 (diff) | |
download | bcm5719-llvm-bdc4f12f1996a3070da0a24b469da9bf93f544dd.tar.gz bcm5719-llvm-bdc4f12f1996a3070da0a24b469da9bf93f544dd.zip |
Add GetxPacketSupported to test if the 'x' packet is supported.
<rdar://problem/16032150>
llvm-svn: 208052
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h index 8de845fa5fe..4293e8b12d7 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h @@ -283,6 +283,9 @@ public: GetpPacketSupported (lldb::tid_t tid); bool + GetxPacketSupported (); + + bool GetVAttachOrWaitSupported (); bool @@ -544,6 +547,7 @@ protected: lldb_private::LazyBool m_attach_or_wait_reply; lldb_private::LazyBool m_prepare_for_reg_writing_reply; lldb_private::LazyBool m_supports_p; + lldb_private::LazyBool m_supports_x; lldb_private::LazyBool m_avoid_g_packets; lldb_private::LazyBool m_supports_QSaveRegisterState; lldb_private::LazyBool m_supports_qXfer_auxv_read; |