| Index: runtime/vm/os_thread_fuchsia.cc
|
| diff --git a/runtime/vm/os_thread_fuchsia.cc b/runtime/vm/os_thread_fuchsia.cc
|
| index e4f7bba30285eae91162ff3bf20560d0a9e776f2..9d17913f9f2748433f00ea685b2b3e33e7158d21 100644
|
| --- a/runtime/vm/os_thread_fuchsia.cc
|
| +++ b/runtime/vm/os_thread_fuchsia.cc
|
| @@ -5,10 +5,12 @@
|
| #include "platform/globals.h" // NOLINT
|
| #if defined(HOST_OS_FUCHSIA)
|
|
|
| +#include "vm/os.h"
|
| #include "vm/os_thread.h"
|
| #include "vm/os_thread_fuchsia.h"
|
|
|
| #include <errno.h> // NOLINT
|
| +#include <magenta/status.h>
|
| #include <magenta/syscalls.h>
|
| #include <magenta/syscalls/object.h>
|
| #include <magenta/threads.h>
|
| @@ -163,7 +165,10 @@ ThreadId OSThread::GetCurrentThreadId() {
|
| mx_status_t status =
|
| mx_object_get_info(thread_handle, MX_INFO_HANDLE_BASIC, &info,
|
| sizeof(info), nullptr, nullptr);
|
| - return status == NO_ERROR ? info.koid : MX_KOID_INVALID;
|
| + if (status != NO_ERROR) {
|
| + FATAL1("Failed to get thread koid: %s\n", mx_status_get_string(status));
|
| + }
|
| + return info.koid;
|
| }
|
|
|
|
|
|
|