| Index: runtime/bin/utils_fuchsia.cc
|
| diff --git a/runtime/bin/utils_fuchsia.cc b/runtime/bin/utils_fuchsia.cc
|
| index 0809723b8a0c96fb7afbbd5f8b7410dc47f60413..79a1fbae6dc50b87ab3655fd848fdb60717fd009 100644
|
| --- a/runtime/bin/utils_fuchsia.cc
|
| +++ b/runtime/bin/utils_fuchsia.cc
|
| @@ -88,7 +88,7 @@ int64_t TimerUtils::GetCurrentMonotonicMillis() {
|
|
|
|
|
| int64_t TimerUtils::GetCurrentMonotonicMicros() {
|
| - int64_t ticks = mx_current_time();
|
| + int64_t ticks = mx_time_get(MX_CLOCK_MONOTONIC);
|
| return ticks / kNanosecondsPerMicrosecond;
|
| }
|
|
|
|
|