OLD | NEW |
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 #ifndef BASE_THREADING_THREAD_LOCAL_STORAGE_H_ | 5 #ifndef BASE_THREADING_THREAD_LOCAL_STORAGE_H_ |
6 #define BASE_THREADING_THREAD_LOCAL_STORAGE_H_ | 6 #define BASE_THREADING_THREAD_LOCAL_STORAGE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/base_export.h" | 9 #include "base/base_export.h" |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 pthread_key_t key_; | 65 pthread_key_t key_; |
66 #endif | 66 #endif |
67 | 67 |
68 DISALLOW_COPY_AND_ASSIGN(Slot); | 68 DISALLOW_COPY_AND_ASSIGN(Slot); |
69 }; | 69 }; |
70 | 70 |
71 #if defined(OS_WIN) | 71 #if defined(OS_WIN) |
72 // Function called when on thread exit to call TLS | 72 // Function called when on thread exit to call TLS |
73 // destructor functions. This function is used internally. | 73 // destructor functions. This function is used internally. |
74 static void ThreadExit(); | 74 static void ThreadExit(); |
75 | |
76 private: | |
77 // Function to lazily initialize our thread local storage. | |
78 static void **Initialize(); | |
79 | |
80 static long tls_key_; | |
81 static long tls_max_; | |
82 #endif // OS_WIN | 75 #endif // OS_WIN |
83 | 76 |
84 DISALLOW_COPY_AND_ASSIGN(ThreadLocalStorage); | 77 DISALLOW_COPY_AND_ASSIGN(ThreadLocalStorage); |
85 }; | 78 }; |
86 | 79 |
87 } // namespace base | 80 } // namespace base |
88 | 81 |
89 #endif // BASE_THREADING_THREAD_LOCAL_STORAGE_H_ | 82 #endif // BASE_THREADING_THREAD_LOCAL_STORAGE_H_ |
OLD | NEW |