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

Unified Diff: src/vm/thread.h

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/spinlock.h ('k') | src/vm/thread_cmsis.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/vm/thread.h
diff --git a/src/vm/thread.h b/src/vm/thread.h
index ea65b86f246d8a5dd45001eb3af27ac631e4d09d..b107610f0759ac4a14dd3c8b46e5c3b5539d2e4b 100644
--- a/src/vm/thread.h
+++ b/src/vm/thread.h
@@ -8,19 +8,19 @@
#include "src/shared/globals.h"
#include "src/shared/platform.h"
-#if defined(FLETCH_TARGET_OS_POSIX)
+#if defined(DARTINO_TARGET_OS_POSIX)
#include "src/vm/thread_posix.h"
-#elif defined(FLETCH_TARGET_OS_LK)
+#elif defined(DARTINO_TARGET_OS_LK)
#include "src/vm/thread_lk.h"
-#elif defined(FLETCH_TARGET_OS_CMSIS)
+#elif defined(DARTINO_TARGET_OS_CMSIS)
#include "src/vm/thread_cmsis.h"
-#elif defined(FLETCH_TARGET_OS_WIN)
+#elif defined(DARTINO_TARGET_OS_WIN)
#include "src/vm/thread_windows.h"
#else
#error "OS is lacking thread implementation."
#endif
-namespace fletch {
+namespace dartino {
// A ThreadIdentifier represents a thread identifier for a thread.
// The ThreadIdentifier does not own the underlying OS handle.
@@ -53,6 +53,6 @@ class Thread {
DISALLOW_ALLOCATION();
};
-} // namespace fletch
+} // namespace dartino
#endif // SRC_VM_THREAD_H_
« no previous file with comments | « src/vm/spinlock.h ('k') | src/vm/thread_cmsis.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698