]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThread.h
Update LLDB snapshot to upstream r225923 (git 2b588ecd)
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / include / lldb / Host / HostNativeThread.h
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(__linux__)
18 #include "lldb/Host/linux/HostThreadLinux.h"
19 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
20 #include "lldb/Host/freebsd/HostThreadFreeBSD.h"
21 #elif defined(__APPLE__)
22 #include "lldb/Host/macosx/HostThreadMacOSX.h"
23 #endif
24
25 #endif