Coverage Report

Created: 2023-09-30 09:22

/Users/buildslave/jenkins/workspace/coverage/llvm-project/lldb/source/Host/macosx/objcxx/HostThreadMacOSX.mm
Line
Count
Source
1
//===-- HostThreadMacOSX.cpp ------------------------------------*- C++ -*-===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
9
#include "lldb/Host/macosx/HostThreadMacOSX.h"
10
#include <CoreFoundation/CoreFoundation.h>
11
#include <Foundation/Foundation.h>
12
13
using namespace lldb_private;
14
15
lldb::thread_result_t
16
7.41k
HostThreadMacOSX::ThreadCreateTrampoline(lldb::thread_arg_t arg) {
17
7.41k
  @autoreleasepool {
18
7.41k
    return HostThreadPosix::ThreadCreateTrampoline(arg);
19
7.41k
  }
20
7.41k
}