commit | 98d6da5f7cb69d8165e4954ca64463acd93db9eb | [log] [tgz] |
---|---|---|
author | Jim Ingham <jingham@apple.com> | Thu Jun 28 20:30:23 2012 +0000 |
committer | Jim Ingham <jingham@apple.com> | Thu Jun 28 20:30:23 2012 +0000 |
tree | f535a9d25a94c8d3624ba710523c17bf95068e51 | |
parent | b2f11986f8e1b990f372ad91c3ad597a1631c278 [diff] [blame] |
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
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp index b08350a..cf527e2 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
@@ -760,7 +760,7 @@ } else { - error_str.assign ("failed to send the qLaunchSuccess packet"); + error_str.assign ("timed out waiting for app to launch"); } return false; }