diff options
author | Stephane Sezer <sas@cd80.net> | 2016-01-08 00:00:17 +0000 |
---|---|---|
committer | Stephane Sezer <sas@cd80.net> | 2016-01-08 00:00:17 +0000 |
commit | 6f455290465f4e1f9094769d496fc9734a2cfc33 (patch) | |
tree | 890bc3914a8c72761f9a95d303c64a3db293ded7 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | |
parent | 54a7c69a34f913c4681ddf2d9088ecdc6babddfe (diff) | |
download | bcm5719-llvm-6f455290465f4e1f9094769d496fc9734a2cfc33.tar.gz bcm5719-llvm-6f455290465f4e1f9094769d496fc9734a2cfc33.zip |
Make sure we don't send qModuleInfo packets unnecessarily.
Summary:
Some debug servers don't support it so there's no point in spamming
this.
Reviewers: clayborg
Subscribers: fjricci, lldb-commits
Differential Revision: http://reviews.llvm.org/D15972
llvm-svn: 257116
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h index d2df214d0db..686b9cff9a6 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h @@ -619,6 +619,7 @@ protected: m_supports_QEnvironment:1, m_supports_QEnvironmentHexEncoded:1, m_supports_qSymbol:1, + m_supports_qModuleInfo:1, m_supports_jThreadsInfo:1; lldb::pid_t m_curr_pid; |