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_SYNCHRONIZATION_LOCK_IMPL_H_ | 5 #ifndef BASE_SYNCHRONIZATION_LOCK_IMPL_H_ |
6 #define BASE_SYNCHRONIZATION_LOCK_IMPL_H_ | 6 #define BASE_SYNCHRONIZATION_LOCK_IMPL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
11 #if defined(OS_WIN) | 11 #if defined(OS_WIN) |
12 #include <windows.h> | 12 #include <windows.h> |
13 #elif defined(OS_POSIX) | 13 #elif defined(OS_POSIX) |
14 #include <pthread.h> | 14 #include <pthread.h> |
15 #endif | 15 #endif |
16 | 16 |
17 #include "base/base_api.h" | |
18 #include "base/basictypes.h" | 17 #include "base/basictypes.h" |
19 | 18 |
20 namespace base { | 19 namespace base { |
21 namespace internal { | 20 namespace internal { |
22 | 21 |
23 // This class implements the underlying platform-specific spin-lock mechanism | 22 // This class implements the underlying platform-specific spin-lock mechanism |
24 // used for the Lock class. Most users should not use LockImpl directly, but | 23 // used for the Lock class. Most users should not use LockImpl directly, but |
25 // should instead use Lock. | 24 // should instead use Lock. |
26 class BASE_API LockImpl { | 25 class LockImpl { |
27 public: | 26 public: |
28 #if defined(OS_WIN) | 27 #if defined(OS_WIN) |
29 typedef CRITICAL_SECTION OSLockType; | 28 typedef CRITICAL_SECTION OSLockType; |
30 #elif defined(OS_POSIX) | 29 #elif defined(OS_POSIX) |
31 typedef pthread_mutex_t OSLockType; | 30 typedef pthread_mutex_t OSLockType; |
32 #endif | 31 #endif |
33 | 32 |
34 LockImpl(); | 33 LockImpl(); |
35 ~LockImpl(); | 34 ~LockImpl(); |
36 | 35 |
(...skipping 18 matching lines...) Expand all Loading... |
55 private: | 54 private: |
56 OSLockType os_lock_; | 55 OSLockType os_lock_; |
57 | 56 |
58 DISALLOW_COPY_AND_ASSIGN(LockImpl); | 57 DISALLOW_COPY_AND_ASSIGN(LockImpl); |
59 }; | 58 }; |
60 | 59 |
61 } // namespace internal | 60 } // namespace internal |
62 } // namespace base | 61 } // namespace base |
63 | 62 |
64 #endif // BASE_SYNCHRONIZATION_LOCK_IMPL_H_ | 63 #endif // BASE_SYNCHRONIZATION_LOCK_IMPL_H_ |
OLD | NEW |