1 //===-- HostNativeThread.h --------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #ifndef lldb_Host_HostNativeThread_h_
11 #define lldb_Host_HostNativeThread_h_
12 
13 #include "HostNativeThreadForward.h"
14 
15 #if defined(_WIN32)
16 #include "lldb/Host/windows/HostThreadWindows.h"
17 #elif defined(__APPLE__)
18 #include "lldb/Host/macosx/HostThreadMacOSX.h"
19 #else
20 #include "lldb/Host/posix/HostThreadPosix.h"
21 #endif
22 
23 #endif
24