WebKit Roll 61390:61491.
[chromium-blink-merge.git] / base / thread_local_win.cc
blob368c0d682803dd09b8cdd68ec803101f9f25034a
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/thread_local.h"
7 #include <windows.h>
9 #include "base/logging.h"
11 namespace base {
13 // static
14 void ThreadLocalPlatform::AllocateSlot(SlotType& slot) {
15 slot = TlsAlloc();
16 CHECK_NE(slot, TLS_OUT_OF_INDEXES);
19 // static
20 void ThreadLocalPlatform::FreeSlot(SlotType& slot) {
21 if (!TlsFree(slot)) {
22 NOTREACHED() << "Failed to deallocate tls slot with TlsFree().";
26 // static
27 void* ThreadLocalPlatform::GetValueFromSlot(SlotType& slot) {
28 return TlsGetValue(slot);
31 // static
32 void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) {
33 if (!TlsSetValue(slot, value)) {
34 LOG(FATAL) << "Failed to TlsSetValue().";
38 } // namespace base