| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_AUTO_LOCK_H_ | 5 #ifndef LIBRARIES_SDK_UTIL_AUTO_LOCK_H_ |
| 7 #define LIBRARIES_SDK_UTIL_AUTO_LOCK_H_ | 6 #define LIBRARIES_SDK_UTIL_AUTO_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 #include "sdk_util/simple_lock.h" | 10 #include "sdk_util/simple_lock.h" |
| 12 | 11 |
| 13 | 12 |
| 14 // This macro is provided to allow us to quickly instrument locking for | 13 // This macro is provided to allow us to quickly instrument locking for |
| (...skipping 17 matching lines...) Expand all Loading... |
| 32 lock_ = NULL; | 31 lock_ = NULL; |
| 33 } | 32 } |
| 34 | 33 |
| 35 private: | 34 private: |
| 36 pthread_mutex_t* lock_; | 35 pthread_mutex_t* lock_; |
| 37 | 36 |
| 38 DISALLOW_COPY_AND_ASSIGN(AutoLock); | 37 DISALLOW_COPY_AND_ASSIGN(AutoLock); |
| 39 }; | 38 }; |
| 40 | 39 |
| 41 #endif // LIBRARIES_SDK_UTIL_AUTO_LOCK_H_ | 40 #endif // LIBRARIES_SDK_UTIL_AUTO_LOCK_H_ |
| 42 | |
| OLD | NEW |