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

Unified Diff: runtime/vm/os_fuchsia.cc

Issue 2259613002: [fuchsia] Fix build. Build packages/ output. Add Directory::Exists(). (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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 | « runtime/bin/directory_fuchsia.cc ('k') | tools/list_pkg_directories.py » ('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 b196c48aed820a4c6e6c50670963ae8d5ea2f203..af41362f162f0be21169c84de2278076863c6fdf 100644
--- a/runtime/vm/os_fuchsia.cc
+++ b/runtime/vm/os_fuchsia.cc
@@ -155,6 +155,12 @@ int OS::NumberOfAvailableProcessors() {
}
+uintptr_t OS::MaxRSS() {
+ UNIMPLEMENTED();
+ return 0;
+}
+
+
void OS::Sleep(int64_t millis) {
mx_nanosleep(
millis * kMicrosecondsPerMillisecond * kNanosecondsPerMicrosecond);
« no previous file with comments | « runtime/bin/directory_fuchsia.cc ('k') | tools/list_pkg_directories.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698