| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 #include "vm/isolate.h" | |
| 6 | |
| 7 #include "platform/assert.h" | |
| 8 #include "vm/globals.h" | |
| 9 | |
| 10 namespace dart { | |
| 11 | |
| 12 DWORD isolate_key = TLS_OUT_OF_INDEXES; | |
| 13 | |
| 14 | |
| 15 void Isolate::SetCurrent(Isolate* current) { | |
| 16 ASSERT(isolate_key != TLS_OUT_OF_INDEXES); | |
| 17 BOOL result = TlsSetValue(isolate_key, current); | |
| 18 if (!result) { | |
| 19 FATAL("TlsSetValue failed"); | |
| 20 } | |
| 21 } | |
| 22 | |
| 23 | |
| 24 void Isolate::InitOnce() { | |
| 25 ASSERT(isolate_key == TLS_OUT_OF_INDEXES); | |
| 26 isolate_key = TlsAlloc(); | |
| 27 if (isolate_key == TLS_OUT_OF_INDEXES) { | |
| 28 FATAL("TlsAlloc failed"); | |
| 29 } | |
| 30 create_callback_ = NULL; | |
| 31 } | |
| 32 | |
| 33 } // namespace dart | |
| OLD | NEW |