Author: ovyalov
Date: Tue Feb 24 16:23:39 2015
New Revision: 230390

URL: http://llvm.org/viewvc/llvm-project?rev=230390&view=rev
Log:
Fix qLaunchGDBServer packet parsing in GDBRemoteCommunicationServerPlatform.

Modified:
    
lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp

Modified: 
lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
URL: 
http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp?rev=230390&r1=230389&r2=230390&view=diff
==============================================================================
--- 
lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
 (original)
+++ 
lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
 Tue Feb 24 16:23:39 2015
@@ -84,14 +84,14 @@ GDBRemoteCommunicationServerPlatform::Ha
 
     Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PLATFORM));
     if (log)
-        log->Printf ("LLGSPacketHandler::%s() called", __FUNCTION__);
+        log->Printf ("GDBRemoteCommunicationServerPlatform::%s() called", 
__FUNCTION__);
 
     // Sleep and wait a bit for debugserver to start to listen...
     ConnectionFileDescriptor file_conn;
     std::string hostname;
     // TODO: /tmp/ should not be hardcoded. User might want to override /tmp
     // with the TMPDIR environment variable
-    packet.SetFilePos(::strlen ("qLaunchLLGSPacketHandler;"));
+    packet.SetFilePos(::strlen ("qLaunchGDBServer;"));
     std::string name;
     std::string value;
     uint16_t port = UINT16_MAX;


_______________________________________________
lldb-commits mailing list
lldb-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to