[Lldb-commits] [lldb] r199202 - Fix return type for Windows

Deepak Panickal deepak at codeplay.com
Tue Jan 14 03:34:45 PST 2014


Author: panickal
Date: Tue Jan 14 05:34:44 2014
New Revision: 199202

URL: http://llvm.org/viewvc/llvm-project?rev=199202&view=rev
Log:
Fix return type for Windows

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

Modified: lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp?rev=199202&r1=199201&r2=199202&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp Tue Jan 14 05:34:44 2014
@@ -806,8 +806,7 @@ GDBRemoteCommunication::PacketResult
 GDBRemoteCommunicationServer::Handle_qLaunchGDBServer (StringExtractorGDBRemote &packet)
 {
 #ifdef _WIN32
-    // No unix sockets on windows
-    return false;
+    return SendErrorResponse(9);
 #else
     // Spawn a local debugserver as a platform so we can then attach or launch
     // a process...





More information about the lldb-commits mailing list