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

Unified Diff: src/shared/platform_posix.cc

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 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
« no previous file with comments | « src/shared/platform_posix.h ('k') | src/shared/platform_windows.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/platform_posix.cc
diff --git a/src/shared/platform_posix.cc b/src/shared/platform_posix.cc
index cb54b93d6bb17f53398c4c0f57cba770d82cac6f..1a0bec4d44406a65585f4d512fd39f11a5daedb6 100644
--- a/src/shared/platform_posix.cc
+++ b/src/shared/platform_posix.cc
@@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE.md file.
-#if defined(FLETCH_TARGET_OS_POSIX)
+#if defined(DARTINO_TARGET_OS_POSIX)
// We do not include platform_posix.h on purpose. That file
// should never be directly inported. platform.h is always
@@ -24,7 +24,7 @@
#include "src/shared/utils.h"
-namespace fletch {
+namespace dartino {
static uint64 time_launch;
@@ -167,7 +167,7 @@ void Platform::ImmediateAbort() { abort(); }
#ifdef DEBUG
void Platform::WaitForDebugger(const char* executable_name) {
- const char* tty = Platform::GetEnv("FLETCH_VM_TTY");
+ const char* tty = Platform::GetEnv("DARTINO_VM_TTY");
if (tty) {
close(2); // Stderr.
open(tty, O_WRONLY); // Replace stderr with terminal.
@@ -241,6 +241,6 @@ bool VirtualMemory::Uncommit(uword address, int size) {
kMmapFdOffset) != MAP_FAILED;
}
-} // namespace fletch
+} // namespace dartino
-#endif // defined(FLETCH_TARGET_OS_POSIX)
+#endif // defined(DARTINO_TARGET_OS_POSIX)
« no previous file with comments | « src/shared/platform_posix.h ('k') | src/shared/platform_windows.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698