]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - include/lldb/Host/HostNativeThreadForward.h
Import LLDB as of upstream SVN r225923 (git 2b588ecd)
[FreeBSD/FreeBSD.git] / include / lldb / Host / HostNativeThreadForward.h
1 //===-- HostNativeThreadForward.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_HostNativeThreadForward_h_
11 #define lldb_Host_HostNativeThreadForward_h_
12
13 namespace lldb_private
14 {
15 #if defined(_WIN32)
16 class HostThreadWindows;
17 typedef HostThreadWindows HostNativeThread;
18 #elif defined(__linux__)
19 class HostThreadLinux;
20 typedef HostThreadLinux HostNativeThread;
21 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
22 class HostThreadFreeBSD;
23 typedef HostThreadFreeBSD HostNativeThread;
24 #elif defined(__APPLE__)
25 class HostThreadMacOSX;
26 typedef HostThreadMacOSX HostNativeThread;
27 #endif
28 }
29
30 #endif