[Lldb-commits] [lldb] r159375 - /lldb/branches/apple/igneous/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp

Jim Ingham jingham at apple.com
Thu Jun 28 13:43:06 PDT 2012


Author: jingham
Date: Thu Jun 28 15:43:06 2012
New Revision: 159375

URL: http://llvm.org/viewvc/llvm-project?rev=159375&view=rev
Log:
Make the error message when we time out waiting for the app to launch less cryptic.

rdar://problem/11754744

Modified:
    lldb/branches/apple/igneous/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp

Modified: lldb/branches/apple/igneous/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/branches/apple/igneous/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp?rev=159375&r1=159374&r2=159375&view=diff
==============================================================================
--- lldb/branches/apple/igneous/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp (original)
+++ lldb/branches/apple/igneous/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp Thu Jun 28 15:43:06 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