diff options
Diffstat (limited to 'include/lldb/Host/HostNativeProcess.h')
-rw-r--r-- | include/lldb/Host/HostNativeProcess.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/lldb/Host/HostNativeProcess.h b/include/lldb/Host/HostNativeProcess.h new file mode 100644 index 000000000000..b48956436116 --- /dev/null +++ b/include/lldb/Host/HostNativeProcess.h @@ -0,0 +1,27 @@ +//===-- HostNativeProcess.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_HostNativeProcess_h_ +#define lldb_Host_HostNativeProcess_h_ + +#if defined(_WIN32) +#include "lldb/Host/windows/HostProcessWindows.h" +namespace lldb_private +{ +typedef HostProcessWindows HostNativeProcess; +} +#else +#include "lldb/Host/posix/HostProcessPosix.h" +namespace lldb_private +{ +typedef HostProcessPosix HostNativeProcess; +} +#endif + +#endif |