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

Unified Diff: runtime/vm/os_android.cc

Issue 12041056: Initial revision of ARM simulator and (empty) MIPS simulator. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 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
Index: runtime/vm/os_android.cc
===================================================================
--- runtime/vm/os_android.cc (revision 17504)
+++ runtime/vm/os_android.cc (working copy)
@@ -309,6 +309,11 @@
}
+void OS::DebugBreak() {
+ UNIMPLEMENTED();
+}
+
+
void OS::Print(const char* format, ...) {
va_list args;
va_start(args, format);
@@ -388,6 +393,10 @@
}
+// Cache the null page size.
+uword OS::null_page_size_ = 0;
+
+
void OS::InitOnce() {
// TODO(5411554): For now we check that initonce is called only once,
// Once there is more formal mechanism to call InitOnce we can move
@@ -395,6 +404,9 @@
static bool init_once_called = false;
ASSERT(init_once_called == false);
init_once_called = true;
+
+ // Initialize the null page size.
+ null_page_size_ = static_cast<uword>(getpagesize());
}

Powered by Google App Engine
This is Rietveld 408576698