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

Side by Side Diff: runtime/vm/isolate_win.cc

Issue 9189003: Move assert.h/assert.cc from runtime/vm to runtime/platform (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Check for correct rebase Created 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/isolate_win.h ('k') | runtime/vm/memory_region.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/assert.h" 5 #include "vm/isolate.h"
6
7 #include "platform/assert.h"
6 #include "vm/globals.h" 8 #include "vm/globals.h"
7 #include "vm/isolate.h"
8 9
9 namespace dart { 10 namespace dart {
10 11
11 DWORD isolate_key = TLS_OUT_OF_INDEXES; 12 DWORD isolate_key = TLS_OUT_OF_INDEXES;
12 13
13 14
14 void Isolate::SetCurrent(Isolate* current) { 15 void Isolate::SetCurrent(Isolate* current) {
15 ASSERT(isolate_key != TLS_OUT_OF_INDEXES); 16 ASSERT(isolate_key != TLS_OUT_OF_INDEXES);
16 BOOL result = TlsSetValue(isolate_key, current); 17 BOOL result = TlsSetValue(isolate_key, current);
17 if (!result) { 18 if (!result) {
18 FATAL("TlsSetValue failed"); 19 FATAL("TlsSetValue failed");
19 } 20 }
20 } 21 }
21 22
22 23
23 void Isolate::InitOnce() { 24 void Isolate::InitOnce() {
24 ASSERT(isolate_key == TLS_OUT_OF_INDEXES); 25 ASSERT(isolate_key == TLS_OUT_OF_INDEXES);
25 isolate_key = TlsAlloc(); 26 isolate_key = TlsAlloc();
26 if (isolate_key == TLS_OUT_OF_INDEXES) { 27 if (isolate_key == TLS_OUT_OF_INDEXES) {
27 FATAL("TlsAlloc failed"); 28 FATAL("TlsAlloc failed");
28 } 29 }
29 create_callback_ = NULL; 30 create_callback_ = NULL;
30 } 31 }
31 32
32 } // namespace dart 33 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/isolate_win.h ('k') | runtime/vm/memory_region.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698