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

Unified Diff: runtime/vm/isolate_linux.h

Issue 9328042: Move the thread local functions to the Thread class in runtime/platform (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments from asiva@ Created 8 years, 10 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 | « runtime/vm/isolate.cc ('k') | runtime/vm/isolate_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate_linux.h
diff --git a/runtime/vm/isolate_linux.h b/runtime/vm/isolate_linux.h
deleted file mode 100644
index 46c4f57c841854661a6dc1a4ad2597df09dd61bb..0000000000000000000000000000000000000000
--- a/runtime/vm/isolate_linux.h
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-#ifndef VM_ISOLATE_LINUX_H_
-#define VM_ISOLATE_LINUX_H_
-
-#if !defined(VM_ISOLATE_H_)
-#error Do not include isolate_linux.h directly; use isolate.h instead.
-#endif
-
-#include <pthread.h>
-
-namespace dart {
-
-#define PTHREAD_KEY_UNSET static_cast<pthread_key_t>(-1)
-extern pthread_key_t isolate_key;
-
-
-inline Isolate* Isolate::Current() {
- ASSERT(isolate_key != PTHREAD_KEY_UNSET);
- return reinterpret_cast<Isolate*>(pthread_getspecific(isolate_key));
-}
-
-} // namespace dart
-
-#endif // VM_ISOLATE_LINUX_H_
« no previous file with comments | « runtime/vm/isolate.cc ('k') | runtime/vm/isolate_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698