Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(999)

Unified Diff: runtime/vm/os_fuchsia.cc

Issue 2154443002: [fuchsia] Update to new spelling of magenta syscalls (Closed) Base URL: https://chromium.googlesource.com/external/github.com/dart-lang/sdk/@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/vm/os_thread_fuchsia.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/os_fuchsia.cc
diff --git a/runtime/vm/os_fuchsia.cc b/runtime/vm/os_fuchsia.cc
index db9264ee2a3526de093d404118e306413dbd7e66..5272825c0370aa688a89ac512a0fcc84e00b4b38 100644
--- a/runtime/vm/os_fuchsia.cc
+++ b/runtime/vm/os_fuchsia.cc
@@ -50,12 +50,12 @@ int64_t OS::GetCurrentTimeMillis() {
int64_t OS::GetCurrentTimeMicros() {
- return _magenta_current_time() / 1000;
+ return mx_current_time() / 1000;
}
int64_t OS::GetCurrentMonotonicTicks() {
- return _magenta_current_time();
+ return mx_current_time();
}
« no previous file with comments | « no previous file | runtime/vm/os_thread_fuchsia.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698