| //===-- 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(__NetBSD__) |
| #include "lldb/Host/netbsd/HostThreadNetBSD.h" |
| #elif defined(__APPLE__) |
| #include "lldb/Host/macosx/HostThreadMacOSX.h" |
| #endif |
| |
| #endif |