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 #if defined(_WIN32) 15 class HostThreadWindows; 16 typedef HostThreadWindows HostNativeThread; 17 #elif defined(__APPLE__) 18 class HostThreadMacOSX; 19 typedef HostThreadMacOSX HostNativeThread; 20 #else 21 class HostThreadPosix; 22 typedef HostThreadPosix HostNativeThread; 23 #endif 24 } 25 26 #endif 27