]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - include/lldb/Host/macosx/HostThreadMacOSX.h
Vendor import of lldb trunk r290819:
[FreeBSD/FreeBSD.git] / include / lldb / Host / macosx / HostThreadMacOSX.h
1 //===-- HostThreadMacOSX.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_macosx_HostThreadMacOSX_h_
11 #define lldb_Host_macosx_HostThreadMacOSX_h_
12
13 #include "lldb/Host/posix/HostThreadPosix.h"
14
15 namespace lldb_private {
16
17 class HostThreadMacOSX : public HostThreadPosix {
18   friend class ThreadLauncher;
19
20 public:
21   HostThreadMacOSX();
22   HostThreadMacOSX(lldb::thread_t thread);
23
24 protected:
25   static lldb::thread_result_t ThreadCreateTrampoline(lldb::thread_arg_t arg);
26 };
27 }
28
29 #endif