aboutsummaryrefslogtreecommitdiff
path: root/source/Host/windows/HostThreadWindows.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Host/windows/HostThreadWindows.cpp')
-rw-r--r--source/Host/windows/HostThreadWindows.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/Host/windows/HostThreadWindows.cpp b/source/Host/windows/HostThreadWindows.cpp
index aa791714c338..3d603ff61663 100644
--- a/source/Host/windows/HostThreadWindows.cpp
+++ b/source/Host/windows/HostThreadWindows.cpp
@@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//
-#include "lldb/Utility/Error.h"
+#include "lldb/Utility/Status.h"
#include "lldb/Host/windows/HostThreadWindows.h"
#include "lldb/Host/windows/windows.h"
@@ -33,8 +33,8 @@ HostThreadWindows::~HostThreadWindows() { Reset(); }
void HostThreadWindows::SetOwnsHandle(bool owns) { m_owns_handle = owns; }
-Error HostThreadWindows::Join(lldb::thread_result_t *result) {
- Error error;
+Status HostThreadWindows::Join(lldb::thread_result_t *result) {
+ Status error;
if (IsJoinable()) {
DWORD wait_result = ::WaitForSingleObject(m_thread, INFINITE);
if (WAIT_OBJECT_0 == wait_result && result) {
@@ -51,8 +51,8 @@ Error HostThreadWindows::Join(lldb::thread_result_t *result) {
return error;
}
-Error HostThreadWindows::Cancel() {
- Error error;
+Status HostThreadWindows::Cancel() {
+ Status error;
DWORD result = ::QueueUserAPC(::ExitThreadProxy, m_thread, 0);
error.SetError(result, eErrorTypeWin32);