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

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

Issue 1550503002: Switch to standard integer types in base/threading/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
« no previous file with comments | « base/threading/thread_local.h ('k') | base/threading/thread_local_storage.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/threading/thread_local.h" 5 #include "base/threading/thread_local.h"
6 6
7 #include <pthread.h> 7 #include <pthread.h>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "build/build_config.h"
10 11
11 #if !defined(OS_ANDROID) 12 #if !defined(OS_ANDROID)
12 13
13 namespace base { 14 namespace base {
14 namespace internal { 15 namespace internal {
15 16
16 // static 17 // static
17 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) { 18 void ThreadLocalPlatform::AllocateSlot(SlotType* slot) {
18 int error = pthread_key_create(slot, NULL); 19 int error = pthread_key_create(slot, NULL);
19 CHECK_EQ(error, 0); 20 CHECK_EQ(error, 0);
(...skipping 13 matching lines...) Expand all
33 // static 34 // static
34 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) { 35 void ThreadLocalPlatform::SetValueInSlot(SlotType slot, void* value) {
35 int error = pthread_setspecific(slot, value); 36 int error = pthread_setspecific(slot, value);
36 DCHECK_EQ(error, 0); 37 DCHECK_EQ(error, 0);
37 } 38 }
38 39
39 } // namespace internal 40 } // namespace internal
40 } // namespace base 41 } // namespace base
41 42
42 #endif // !defined(OS_ANDROID) 43 #endif // !defined(OS_ANDROID)
OLDNEW
« no previous file with comments | « base/threading/thread_local.h ('k') | base/threading/thread_local_storage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698