diff options
author | Deepak Panickal <deepak@codeplay.com> | 2014-01-14 11:34:44 +0000 |
---|---|---|
committer | Deepak Panickal <deepak@codeplay.com> | 2014-01-14 11:34:44 +0000 |
commit | 263fde068f11f55ca928899f6fc15416191f8252 (patch) | |
tree | 321fc294b65780c18b72416ff12ff5a2e94a1c78 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp | |
parent | ba6ea6024cb13adab69b45df671c3ac19f0edd62 (diff) | |
download | bcm5719-llvm-263fde068f11f55ca928899f6fc15416191f8252.tar.gz bcm5719-llvm-263fde068f11f55ca928899f6fc15416191f8252.zip |
Fix return type for Windows
llvm-svn: 199202
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp index 91658b98d61..9579e7cc2a5 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp @@ -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... |