diff options
author | Jim Ingham <jingham@apple.com> | 2012-06-28 20:30:23 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-06-28 20:30:23 +0000 |
commit | 98d6da5f7cb69d8165e4954ca64463acd93db9eb (patch) | |
tree | f535a9d25a94c8d3624ba710523c17bf95068e51 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp | |
parent | b2f11986f8e1b990f372ad91c3ad597a1631c278 (diff) | |
download | bcm5719-llvm-98d6da5f7cb69d8165e4954ca64463acd93db9eb.tar.gz bcm5719-llvm-98d6da5f7cb69d8165e4954ca64463acd93db9eb.zip |
Make the error message when we time out waiting for debugserver to reply to the qLaunchSuccess packet less cryptic.
<rdar://problem/11754744>
llvm-svn: 159373
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp | 2 |
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 b08350a5ec8..cf527e26283 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp @@ -760,7 +760,7 @@ GDBRemoteCommunicationClient::GetLaunchSuccess (std::string &error_str) } else { - error_str.assign ("failed to send the qLaunchSuccess packet"); + error_str.assign ("timed out waiting for app to launch"); } return false; } |