diff options
Diffstat (limited to 'include/lldb/Host/HostThread.h')
-rw-r--r-- | include/lldb/Host/HostThread.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/lldb/Host/HostThread.h b/include/lldb/Host/HostThread.h index 96314813cf7c9..0d2fbe6045af0 100644 --- a/include/lldb/Host/HostThread.h +++ b/include/lldb/Host/HostThread.h @@ -11,7 +11,7 @@ #define lldb_Host_HostThread_h_ #include "lldb/Host/HostNativeThreadForward.h" -#include "lldb/Utility/Error.h" +#include "lldb/Utility/Status.h" #include "lldb/lldb-types.h" #include <memory> @@ -34,8 +34,8 @@ public: HostThread(); HostThread(lldb::thread_t thread); - Error Join(lldb::thread_result_t *result); - Error Cancel(); + Status Join(lldb::thread_result_t *result); + Status Cancel(); void Reset(); lldb::thread_t Release(); |