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

Unified Diff: src/vm/event_handler_lk.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/event_handler_linux.cc ('k') | src/vm/event_handler_macos.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/vm/event_handler_lk.cc
diff --git a/src/vm/event_handler_lk.cc b/src/vm/event_handler_lk.cc
index da985ce4fcf2bf768965f659f7a108f2fb50e311..b5ffc9d021fe0730fcfc9dec1b0eb30c9e1ecb8e 100644
--- a/src/vm/event_handler_lk.cc
+++ b/src/vm/event_handler_lk.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_LK)
+#if defined(DARTINO_TARGET_OS_LK)
#include "src/vm/event_handler.h"
@@ -16,17 +16,17 @@
#include "src/vm/scheduler.h"
#include "src/vm/thread.h"
-namespace fletch {
+namespace dartino {
-const char* kFletchInterruptPortName = "FLETCH_INT";
+const char* kDartinoInterruptPortName = "DARTINO_INT";
class PortSet {
public:
PortSet() : group(0), port_set(NULL) {
// Create and add the interrupt port.
- port_create(kFletchInterruptPortName, PORT_MODE_UNICAST, &interrupt_port);
+ port_create(kDartinoInterruptPortName, PORT_MODE_UNICAST, &interrupt_port);
port_t interrupt_read;
- port_open(kFletchInterruptPortName, NULL, &interrupt_read);
+ port_open(kDartinoInterruptPortName, NULL, &interrupt_read);
AddReadPort(interrupt_read);
}
@@ -162,6 +162,6 @@ void EventHandler::Run() {
}
}
-} // namespace fletch
+} // namespace dartino
-#endif // defined(FLETCH_TARGET_OS_LK)
+#endif // defined(DARTINO_TARGET_OS_LK)
« no previous file with comments | « src/vm/event_handler_linux.cc ('k') | src/vm/event_handler_macos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698