summaryrefslogtreecommitdiff
path: root/include/lldb/Host/posix/HostThreadPosix.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Host/posix/HostThreadPosix.h')
-rw-r--r--include/lldb/Host/posix/HostThreadPosix.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/lldb/Host/posix/HostThreadPosix.h b/include/lldb/Host/posix/HostThreadPosix.h
index 99b99d767b18..c230a61bc575 100644
--- a/include/lldb/Host/posix/HostThreadPosix.h
+++ b/include/lldb/Host/posix/HostThreadPosix.h
@@ -22,10 +22,10 @@ public:
HostThreadPosix(lldb::thread_t thread);
~HostThreadPosix() override;
- Error Join(lldb::thread_result_t *result) override;
- Error Cancel() override;
+ Status Join(lldb::thread_result_t *result) override;
+ Status Cancel() override;
- Error Detach();
+ Status Detach();
};
} // namespace lldb_private