summaryrefslogtreecommitdiffstats
path: root/lldb/source/Host/common/HostThread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Host/common/HostThread.cpp')
-rw-r--r--lldb/source/Host/common/HostThread.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Host/common/HostThread.cpp b/lldb/source/Host/common/HostThread.cpp
index 738b7ef72f1..02882c52390 100644
--- a/lldb/source/Host/common/HostThread.cpp
+++ b/lldb/source/Host/common/HostThread.cpp
@@ -18,11 +18,11 @@ HostThread::HostThread() : m_native_thread(new HostNativeThread) {}
HostThread::HostThread(lldb::thread_t thread)
: m_native_thread(new HostNativeThread(thread)) {}
-Error HostThread::Join(lldb::thread_result_t *result) {
+Status HostThread::Join(lldb::thread_result_t *result) {
return m_native_thread->Join(result);
}
-Error HostThread::Cancel() { return m_native_thread->Cancel(); }
+Status HostThread::Cancel() { return m_native_thread->Cancel(); }
void HostThread::Reset() { return m_native_thread->Reset(); }
OpenPOWER on IntegriCloud