aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Host/HostNativeThread.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Host/HostNativeThread.h')
-rw-r--r--include/lldb/Host/HostNativeThread.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/lldb/Host/HostNativeThread.h b/include/lldb/Host/HostNativeThread.h
new file mode 100644
index 000000000000..f39c775df8e3
--- /dev/null
+++ b/include/lldb/Host/HostNativeThread.h
@@ -0,0 +1,25 @@
+//===-- HostNativeThread.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_HostNativeThread_h_
+#define lldb_Host_HostNativeThread_h_
+
+#include "HostNativeThreadForward.h"
+
+#if defined(_WIN32)
+#include "lldb/Host/windows/HostThreadWindows.h"
+#elif defined(__linux__)
+#include "lldb/Host/linux/HostThreadLinux.h"
+#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
+#include "lldb/Host/freebsd/HostThreadFreeBSD.h"
+#elif defined(__APPLE__)
+#include "lldb/Host/macosx/HostThreadMacOSX.h"
+#endif
+
+#endif