diff options
Diffstat (limited to 'lldb/source/Host/common/HostThread.cpp')
-rw-r--r-- | lldb/source/Host/common/HostThread.cpp | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/lldb/source/Host/common/HostThread.cpp b/lldb/source/Host/common/HostThread.cpp index 82eacc9473a..1739732b03a 100644 --- a/lldb/source/Host/common/HostThread.cpp +++ b/lldb/source/Host/common/HostThread.cpp @@ -47,16 +47,10 @@ HostThread::Release() return m_native_thread->Release(); } -void -HostThread::SetState(ThreadState state) -{ - m_native_thread->SetState(state); -} - -ThreadState -HostThread::GetState() const +bool +HostThread::IsJoinable() const { - return m_native_thread->GetState(); + return m_native_thread->IsJoinable(); } HostNativeThreadBase & |