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"
9 #include "base/logging.h"
14 void ThreadLocalPlatform::AllocateSlot(SlotType
& slot
) {
16 CHECK_NE(slot
, TLS_OUT_OF_INDEXES
);
20 void ThreadLocalPlatform::FreeSlot(SlotType
& slot
) {
22 NOTREACHED() << "Failed to deallocate tls slot with TlsFree().";
27 void* ThreadLocalPlatform::GetValueFromSlot(SlotType
& slot
) {
28 return TlsGetValue(slot
);
32 void ThreadLocalPlatform::SetValueInSlot(SlotType
& slot
, void* value
) {
33 if (!TlsSetValue(slot
, value
)) {
34 LOG(FATAL
) << "Failed to TlsSetValue().";