aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Host/windows/ProcessLauncherWindows.h
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2019-08-20 18:01:57 +0000
committerDimitry Andric <dim@FreeBSD.org>2019-08-20 18:01:57 +0000
commit88c643b6fec27eec436c8d138fee6346e92337d6 (patch)
tree82cd13b2f3cde1c9e5f79689ba4e6ba67694843f /include/lldb/Host/windows/ProcessLauncherWindows.h
parent94994d372d014ce4c8758b9605d63fae651bd8aa (diff)
Remove upstream files and directories from vendor/lldb/dist that we do
not use. This saves on repository space, and reduces the number of tree conflicts when merging.
Notes
Notes: svn path=/vendor/lldb/dist/; revision=351271
Diffstat (limited to 'include/lldb/Host/windows/ProcessLauncherWindows.h')
-rw-r--r--include/lldb/Host/windows/ProcessLauncherWindows.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/include/lldb/Host/windows/ProcessLauncherWindows.h b/include/lldb/Host/windows/ProcessLauncherWindows.h
deleted file mode 100644
index 1df377d5eb88..000000000000
--- a/include/lldb/Host/windows/ProcessLauncherWindows.h
+++ /dev/null
@@ -1,30 +0,0 @@
-//===-- ProcessLauncherWindows.h --------------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef lldb_Host_windows_ProcessLauncherWindows_h_
-#define lldb_Host_windows_ProcessLauncherWindows_h_
-
-#include "lldb/Host/ProcessLauncher.h"
-#include "lldb/Host/windows/windows.h"
-
-namespace lldb_private {
-
-class ProcessLaunchInfo;
-
-class ProcessLauncherWindows : public ProcessLauncher {
-public:
- virtual HostProcess LaunchProcess(const ProcessLaunchInfo &launch_info,
- Status &error);
-
-protected:
- HANDLE GetStdioHandle(const ProcessLaunchInfo &launch_info, int fd);
-};
-}
-
-#endif