llvm/lldb/source/Host/common/HostThread.cpp

//===-- HostThread.cpp ----------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "lldb/Host/HostThread.h"
#include "lldb/Host/HostNativeThread.h"

usingnamespacelldb;
usingnamespacelldb_private;

HostThread::HostThread() :{}

HostThread::HostThread(lldb::thread_t thread)
    :{}

Status HostThread::Join(lldb::thread_result_t *result) {}

Status HostThread::Cancel() {}

void HostThread::Reset() {}

lldb::thread_t HostThread::Release() {}

bool HostThread::IsJoinable() const {}

HostNativeThread &HostThread::GetNativeThread() {}

const HostNativeThread &HostThread::GetNativeThread() const {}

lldb::thread_result_t HostThread::GetResult() const {}

bool HostThread::EqualsThread(lldb::thread_t thread) const {}