1 // Copyright (c) 2011 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/threading/thread_local.h"
9 #include "base/logging.h"
11 #if !defined(OS_ANDROID)
17 void ThreadLocalPlatform::AllocateSlot(SlotType
* slot
) {
18 int error
= pthread_key_create(slot
, NULL
);
23 void ThreadLocalPlatform::FreeSlot(SlotType slot
) {
24 int error
= pthread_key_delete(slot
);
29 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot
) {
30 return pthread_getspecific(slot
);
34 void ThreadLocalPlatform::SetValueInSlot(SlotType slot
, void* value
) {
35 int error
= pthread_setspecific(slot
, value
);
39 } // namespace internal
42 #endif // !defined(OS_ANDROID)