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

Side by Side Diff: base/threading/thread_local_posix.cc

Issue 1726203002: Refactor thread_local.h's TLS Implementation to use ThreadLocalStorage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
OLDNEW
(Empty)
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.
4
5 #include "base/threading/thread_local.h"
6
7 #include <pthread.h>
8
9 #include "base/logging.h"
10 #include "build/build_config.h"
11
12 #if !defined(OS_ANDROID)
13
14 namespace base {
15 namespace internal {
16
17 // static
18 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) {
19 int error = pthread_key_create(slot, NULL);
20 CHECK_EQ(error, 0);
21 }
22
23 // static
24 void ThreadLocalPlatform::FreeSlot(SlotType slot) {
25 int error = pthread_key_delete(slot);
26 DCHECK_EQ(0, error);
27 }
28
29 // static
30 void* ThreadLocalPlatform::GetValueFromSlot(SlotType slot) {
31 return pthread_getspecific(slot);
32 }
33
34 // static
35 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) {
36 int error = pthread_setspecific(slot, value);
37 DCHECK_EQ(error, 0);
38 }
39
40 } // namespace internal
41 } // namespace base
42
43 #endif // !defined(OS_ANDROID)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698