#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 { … }