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

Unified Diff: runtime/vm/isolate_win.cc

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_win.h ('k') | runtime/vm/vm_sources.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate_win.cc
diff --git a/runtime/vm/isolate_win.cc b/runtime/vm/isolate_win.cc
deleted file mode 100644
index 80af81016fcc6018df3f817739d46c37ccea75ff..0000000000000000000000000000000000000000
--- a/runtime/vm/isolate_win.cc
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright (c) 2012, 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.
-
-#include "vm/isolate.h"
-
-#include "platform/assert.h"
-#include "vm/globals.h"
-
-namespace dart {
-
-DWORD isolate_key = TLS_OUT_OF_INDEXES;
-
-
-void Isolate::SetCurrent(Isolate* current) {
- ASSERT(isolate_key != TLS_OUT_OF_INDEXES);
- BOOL result = TlsSetValue(isolate_key, current);
- if (!result) {
- FATAL("TlsSetValue failed");
- }
-}
-
-
-void Isolate::InitOnce() {
- ASSERT(isolate_key == TLS_OUT_OF_INDEXES);
- isolate_key = TlsAlloc();
- if (isolate_key == TLS_OUT_OF_INDEXES) {
- FATAL("TlsAlloc failed");
- }
- create_callback_ = NULL;
-}
-
-} // namespace dart
« no previous file with comments | « runtime/vm/isolate_win.h ('k') | runtime/vm/vm_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698