12c77eefeSRaphael Isemann//===-- HostThreadMacOSX.cpp ------------------------------------*- C++ -*-===// 22c77eefeSRaphael Isemann// 32946cd70SChandler Carruth// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 42946cd70SChandler Carruth// See https://llvm.org/LICENSE.txt for license information. 52946cd70SChandler Carruth// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 62c77eefeSRaphael Isemann// 72c77eefeSRaphael Isemann//===----------------------------------------------------------------------===// 82c77eefeSRaphael Isemann 92c77eefeSRaphael Isemann#include "lldb/Host/macosx/HostThreadMacOSX.h" 102c77eefeSRaphael Isemann#include <CoreFoundation/CoreFoundation.h> 112c77eefeSRaphael Isemann#include <Foundation/Foundation.h> 122c77eefeSRaphael Isemann 132c77eefeSRaphael Isemannusing namespace lldb_private; 142c77eefeSRaphael Isemann 152c77eefeSRaphael Isemannlldb::thread_result_t 162c77eefeSRaphael IsemannHostThreadMacOSX::ThreadCreateTrampoline(lldb::thread_arg_t arg) { 17*f4568e12SPavel Labath @autoreleasepool { 182c77eefeSRaphael Isemann return HostThreadPosix::ThreadCreateTrampoline(arg); 192c77eefeSRaphael Isemann } 20*f4568e12SPavel Labath} 21