| OLD | NEW |
| 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 */ | |
| 5 | 4 |
| 6 #ifndef LIBRARIES_SDK_UTIL_SIMPLE_LOCK_H_ | 5 #ifndef LIBRARIES_SDK_UTIL_SIMPLE_LOCK_H_ |
| 7 #define LIBRARIES_SDK_UTIL_SIMPLE_LOCK_H_ | 6 #define LIBRARIES_SDK_UTIL_SIMPLE_LOCK_H_ |
| 8 | 7 |
| 9 #include "pthread.h" | 8 #include "pthread.h" |
| 10 #include "sdk_util/macros.h" | 9 #include "sdk_util/macros.h" |
| 11 | 10 |
| 12 /* | 11 /* |
| 13 * SimpleLock | 12 * SimpleLock |
| 14 * | 13 * |
| (...skipping 12 matching lines...) Expand all Loading... |
| 27 | 26 |
| 28 pthread_mutex_t* mutex() const { return &lock_; } | 27 pthread_mutex_t* mutex() const { return &lock_; } |
| 29 | 28 |
| 30 private: | 29 private: |
| 31 mutable pthread_mutex_t lock_; | 30 mutable pthread_mutex_t lock_; |
| 32 | 31 |
| 33 DISALLOW_COPY_AND_ASSIGN(SimpleLock); | 32 DISALLOW_COPY_AND_ASSIGN(SimpleLock); |
| 34 }; | 33 }; |
| 35 | 34 |
| 36 #endif // LIBRARIES_SDK_UTIL_SIMPLE_LOCK_H_ | 35 #endif // LIBRARIES_SDK_UTIL_SIMPLE_LOCK_H_ |
| 37 | |
| OLD | NEW |