Deleted Added
full compact
HostNativeThread.h (296417) HostNativeThread.h (321369)
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"
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(__NetBSD__)
22#include "lldb/Host/netbsd/HostThreadNetBSD.h"
23#elif defined(__APPLE__)
24#include "lldb/Host/macosx/HostThreadMacOSX.h"
17#elif defined(__APPLE__)
18#include "lldb/Host/macosx/HostThreadMacOSX.h"
19#else
20#include "lldb/Host/posix/HostThreadPosix.h"
25#endif
26
27#endif
21#endif
22
23#endif