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

Unified Diff: src/vm/port.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/vm/port.h ('k') | src/vm/preempter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/vm/port.cc
diff --git a/src/vm/port.cc b/src/vm/port.cc
index 53061d8b10eef555b9f52ca462ef87f02398bbe8..5b39c25b1a5227e63b917eac2e04c43dbd12ea93 100644
--- a/src/vm/port.cc
+++ b/src/vm/port.cc
@@ -11,7 +11,7 @@
#include "src/vm/object.h"
#include "src/vm/process.h"
-namespace fletch {
+namespace dartino {
Port::Port(Process* process, Instance* channel)
: process_(process),
@@ -20,7 +20,7 @@ Port::Port(Process* process, Instance* channel)
spinlock_(),
next_(process->ports()) {
ASSERT(process != NULL);
-#if defined(FLETCH_TARGET_OS_POSIX)
+#if defined(DARTINO_TARGET_OS_POSIX)
ASSERT(Thread::GetProcess() == process);
#else
// Other platforms do not have Thread Local Storage support and just return
@@ -187,4 +187,4 @@ BEGIN_NATIVE(PortSendExit) {
}
END_NATIVE()
-} // namespace fletch
+} // namespace dartino
« no previous file with comments | « src/vm/port.h ('k') | src/vm/preempter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698