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...


_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to