aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
diff options
context:
space:
mode:
authoreleviant <56861949+eleviant@users.noreply.github.com>2025-06-22 18:59:08 +0200
committerGitHub <noreply@github.com>2025-06-22 18:59:08 +0200
commit80b9fcf8fdf2a44da291b41d9244aa99e867f26c (patch)
tree166bdae54910a86d39a1106286e865da56ecae1a /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
parentee414e35047c588daba1ee62e8291ea171700f43 (diff)
downloadllvm-80b9fcf8fdf2a44da291b41d9244aa99e867f26c.zip
llvm-80b9fcf8fdf2a44da291b41d9244aa99e867f26c.tar.gz
llvm-80b9fcf8fdf2a44da291b41d9244aa99e867f26c.tar.bz2
Revert "[lldb] Fix qEcho message handling (#145072)" (#145241)
Temporarily revert commit e066f35c6981c720e3a7e5883efc40c861b3b7ee, because lldb tests randomly hang after it's been pushed.
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp')
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
index d8130ca..adbf06b 100644
--- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
+++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
@@ -406,7 +406,7 @@ void GDBRemoteCommunicationClient::GetRemoteQSupported() {
m_supports_qXfer_memory_map_read = eLazyBoolYes;
else if (x == "qXfer:siginfo:read+")
m_supports_qXfer_siginfo_read = eLazyBoolYes;
- else if (x == "qEcho+")
+ else if (x == "qEcho")
m_supports_qEcho = eLazyBoolYes;
else if (x == "QPassSignals+")
m_supports_QPassSignals = eLazyBoolYes;