We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfe0c37 commit 8664998Copy full SHA for 8664998
lldb/tools/lldb-server/lldb-gdbserver.cpp
@@ -39,6 +39,8 @@
39
#include "Plugins/Process/Linux/NativeProcessLinux.h"
40
#elif defined(__NetBSD__)
41
#include "Plugins/Process/NetBSD/NativeProcessNetBSD.h"
42
+#elif defined(_WIN32)
43
+#include "Plugins/Process/Windows/Common/NativeProcessWindows.h"
44
#endif
45
46
#ifndef LLGS_PROGRAM_NAME
@@ -60,6 +62,8 @@ namespace {
60
62
typedef process_linux::NativeProcessLinux::Factory NativeProcessFactory;
61
63
64
typedef process_netbsd::NativeProcessNetBSD::Factory NativeProcessFactory;
65
66
+typedef NativeProcessWindows::Factory NativeProcessFactory;
67
#else
68
// Dummy implementation to make sure the code compiles
69
class NativeProcessFactory : public NativeProcessProtocol::Factory {
0 commit comments