[Lldb-commits] [lldb] r159373 - /lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
Jim Ingham
jingham at apple.com
Thu Jun 28 13:30:23 PDT 2012
Author: jingham
Date: Thu Jun 28 15:30:23 2012
New Revision: 159373
URL: http://llvm.org/viewvc/llvm-project?rev=159373&view=rev
Log:
Make the error message when we time out waiting for debugserver to reply to the qLaunchSuccess packet less cryptic.
<rdar://problem/11754744>
Modified:
lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
Modified: lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp?rev=159373&r1=159372&r2=159373&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp Thu Jun 28 15:30:23 2012
@@ -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;
}
More information about the lldb-commits
mailing list