blob: 96f3b748d296cb8f4fb664795140e72948e7d89a [file] [log] [blame]
Elliott Hughes8daa0922011-09-11 13:46:25 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ART_SRC_MUTEX_H_
18#define ART_SRC_MUTEX_H_
19
20#include <pthread.h>
Brian Carlstromcd74c4b2012-01-23 13:21:00 -080021#include <stdint.h>
Elliott Hughesffb465f2012-03-01 18:46:05 -080022
23#include <iosfwd>
Elliott Hughes8daa0922011-09-11 13:46:25 -070024#include <string>
25
Ian Rogers00f7d0e2012-07-19 15:28:27 -070026#include "globals.h"
Ian Rogers81d425b2012-09-27 16:03:43 -070027#include "locks.h"
Ian Rogers50b35e22012-10-04 10:09:15 -070028#include "logging.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070029#include "macros.h"
Ian Rogers81d425b2012-09-27 16:03:43 -070030
Ian Rogersab470162012-09-29 23:06:53 -070031#if defined(__APPLE__)
Ian Rogers81d425b2012-09-27 16:03:43 -070032#define ART_USE_FUTEXES 0
Ian Rogersab470162012-09-29 23:06:53 -070033#else
Ian Rogers5bd97c42012-11-27 02:38:26 -080034#define ART_USE_FUTEXES 1
Ian Rogersab470162012-09-29 23:06:53 -070035#endif
Elliott Hughes8daa0922011-09-11 13:46:25 -070036
Ian Rogers66aee5c2012-08-15 17:17:47 -070037// Currently Darwin doesn't support locks with timeouts.
38#if !defined(__APPLE__)
39#define HAVE_TIMED_RWLOCK 1
40#else
41#define HAVE_TIMED_RWLOCK 0
42#endif
43
Elliott Hughes8daa0922011-09-11 13:46:25 -070044namespace art {
45
Ian Rogers50b35e22012-10-04 10:09:15 -070046class Thread;
47
Ian Rogers25fd14b2012-09-05 10:56:38 -070048const bool kDebugLocking = kIsDebugBuild;
49
Ian Rogers00f7d0e2012-07-19 15:28:27 -070050// Base class for all Mutex implementations
51class BaseMutex {
52 public:
53 const std::string& GetName() const {
54 return name_;
55 }
56
57 virtual bool IsMutex() const { return false; }
58 virtual bool IsReaderWriterMutex() const { return false; }
59
60 protected:
61 friend class ConditionVariable;
62
Ian Rogers81d425b2012-09-27 16:03:43 -070063 BaseMutex(const char* name, LockLevel level);
Ian Rogers00f7d0e2012-07-19 15:28:27 -070064 virtual ~BaseMutex() {}
Ian Rogers81d425b2012-09-27 16:03:43 -070065 void RegisterAsLocked(Thread* self);
66 void RegisterAsUnlocked(Thread* self);
67 void CheckSafeToWait(Thread* self);
Ian Rogers00f7d0e2012-07-19 15:28:27 -070068
Ian Rogers81d425b2012-09-27 16:03:43 -070069 const LockLevel level_; // Support for lock hierarchy.
Ian Rogers00f7d0e2012-07-19 15:28:27 -070070 const std::string name_;
71};
72
73// A Mutex is used to achieve mutual exclusion between threads. A Mutex can be used to gain
74// exclusive access to what it guards. A Mutex can be in one of two states:
75// - Free - not owned by any thread,
76// - Exclusive - owned by a single thread.
77//
78// The effect of locking and unlocking operations on the state is:
79// State | ExclusiveLock | ExclusiveUnlock
80// -------------------------------------------
81// Free | Exclusive | error
82// Exclusive | Block* | Free
83// * Mutex is not reentrant and so an attempt to ExclusiveLock on the same thread will result in
84// an error. Being non-reentrant simplifies Waiting on ConditionVariables.
Ian Rogers01ae5802012-09-28 16:14:01 -070085std::ostream& operator<<(std::ostream& os, const Mutex& mu);
Ian Rogers00f7d0e2012-07-19 15:28:27 -070086class LOCKABLE Mutex : public BaseMutex {
87 public:
Ian Rogers81d425b2012-09-27 16:03:43 -070088 explicit Mutex(const char* name, LockLevel level = kDefaultMutexLevel, bool recursive = false);
Elliott Hughes8daa0922011-09-11 13:46:25 -070089 ~Mutex();
90
Ian Rogers00f7d0e2012-07-19 15:28:27 -070091 virtual bool IsMutex() const { return true; }
Elliott Hughes8daa0922011-09-11 13:46:25 -070092
Ian Rogers00f7d0e2012-07-19 15:28:27 -070093 // Block until mutex is free then acquire exclusive access.
Ian Rogers81d425b2012-09-27 16:03:43 -070094 void ExclusiveLock(Thread* self) EXCLUSIVE_LOCK_FUNCTION();
95 void Lock(Thread* self) EXCLUSIVE_LOCK_FUNCTION() { ExclusiveLock(self); }
Elliott Hughes8daa0922011-09-11 13:46:25 -070096
Ian Rogers00f7d0e2012-07-19 15:28:27 -070097 // Returns true if acquires exclusive access, false otherwise.
Ian Rogers81d425b2012-09-27 16:03:43 -070098 bool ExclusiveTryLock(Thread* self) EXCLUSIVE_TRYLOCK_FUNCTION(true);
99 bool TryLock(Thread* self) EXCLUSIVE_TRYLOCK_FUNCTION(true) { return ExclusiveTryLock(self); }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700100
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700101 // Release exclusive access.
Ian Rogers81d425b2012-09-27 16:03:43 -0700102 void ExclusiveUnlock(Thread* self) UNLOCK_FUNCTION();
103 void Unlock(Thread* self) UNLOCK_FUNCTION() { ExclusiveUnlock(self); }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700104
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700105 // Is the current thread the exclusive holder of the Mutex.
Ian Rogers81d425b2012-09-27 16:03:43 -0700106 bool IsExclusiveHeld(const Thread* self) const;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700107
108 // Assert that the Mutex is exclusively held by the current thread.
Ian Rogers81d425b2012-09-27 16:03:43 -0700109 void AssertExclusiveHeld(const Thread* self) {
Brian Carlstrom81b88712012-11-05 19:21:30 -0800110 if (kDebugLocking && !gAborting) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700111 CHECK(IsExclusiveHeld(self)) << *this;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700112 }
113 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700114 void AssertHeld(const Thread* self) { AssertExclusiveHeld(self); }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700115
116 // Assert that the Mutex is not held by the current thread.
Ian Rogers81d425b2012-09-27 16:03:43 -0700117 void AssertNotHeldExclusive(const Thread* self) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700118 if (kDebugLocking) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700119 CHECK(!IsExclusiveHeld(self)) << *this;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700120 }
121 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700122 void AssertNotHeld(const Thread* self) { AssertNotHeldExclusive(self); }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700123
124 // Id associated with exclusive owner.
125 uint64_t GetExclusiveOwnerTid() const;
126
127 // Returns how many times this Mutex has been locked, it is better to use AssertHeld/NotHeld.
128 unsigned int GetDepth() const {
129 return recursion_count_;
130 }
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700131
Ian Rogers01ae5802012-09-28 16:14:01 -0700132 std::string Dump() const;
133
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700134 private:
Ian Rogersc604d732012-10-14 16:09:54 -0700135#if ART_USE_FUTEXES
136 // 0 is unheld, 1 is held.
137 volatile int32_t state_;
138 // Exclusive owner.
139 volatile uint64_t exclusive_owner_;
140 // Number of waiting contenders.
141 volatile int32_t num_contenders_;
142#else
Elliott Hughes8daa0922011-09-11 13:46:25 -0700143 pthread_mutex_t mutex_;
Ian Rogersc604d732012-10-14 16:09:54 -0700144#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700145 const bool recursive_; // Can the lock be recursively held?
146 unsigned int recursion_count_;
Elliott Hughesf1498432012-03-28 19:34:27 -0700147 friend class ConditionVariable;
Elliott Hughes3efb8412012-03-16 16:09:38 -0700148 friend class MutexTester;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700149 DISALLOW_COPY_AND_ASSIGN(Mutex);
150};
151
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700152// A ReaderWriterMutex is used to achieve mutual exclusion between threads, similar to a Mutex.
153// Unlike a Mutex a ReaderWriterMutex can be used to gain exclusive (writer) or shared (reader)
154// access to what it guards. A flaw in relation to a Mutex is that it cannot be used with a
155// condition variable. A ReaderWriterMutex can be in one of three states:
156// - Free - not owned by any thread,
157// - Exclusive - owned by a single thread,
158// - Shared(n) - shared amongst n threads.
159//
160// The effect of locking and unlocking operations on the state is:
161//
162// State | ExclusiveLock | ExclusiveUnlock | SharedLock | SharedUnlock
163// ----------------------------------------------------------------------------
164// Free | Exclusive | error | SharedLock(1) | error
165// Exclusive | Block | Free | Block | error
166// Shared(n) | Block | error | SharedLock(n+1)* | Shared(n-1) or Free
167// * for large values of n the SharedLock may block.
Ian Rogers01ae5802012-09-28 16:14:01 -0700168std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700169class LOCKABLE ReaderWriterMutex : public BaseMutex {
Elliott Hughes8daa0922011-09-11 13:46:25 -0700170 public:
Ian Rogers81d425b2012-09-27 16:03:43 -0700171 explicit ReaderWriterMutex(const char* name, LockLevel level = kDefaultMutexLevel);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700172 ~ReaderWriterMutex();
173
174 virtual bool IsReaderWriterMutex() const { return true; }
175
176 // Block until ReaderWriterMutex is free then acquire exclusive access.
Ian Rogers81d425b2012-09-27 16:03:43 -0700177 void ExclusiveLock(Thread* self) EXCLUSIVE_LOCK_FUNCTION();
178 void WriterLock(Thread* self) EXCLUSIVE_LOCK_FUNCTION() { ExclusiveLock(self); }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700179
180 // Release exclusive access.
Ian Rogers81d425b2012-09-27 16:03:43 -0700181 void ExclusiveUnlock(Thread* self) UNLOCK_FUNCTION();
182 void WriterUnlock(Thread* self) UNLOCK_FUNCTION() { ExclusiveUnlock(self); }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700183
184 // Block until ReaderWriterMutex is free and acquire exclusive access. Returns true on success
185 // or false if timeout is reached.
Ian Rogers66aee5c2012-08-15 17:17:47 -0700186#if HAVE_TIMED_RWLOCK
Ian Rogersc604d732012-10-14 16:09:54 -0700187 bool ExclusiveLockWithTimeout(Thread* self, int64_t ms, int32_t ns)
Ian Rogers81d425b2012-09-27 16:03:43 -0700188 EXCLUSIVE_TRYLOCK_FUNCTION(true);
Ian Rogers66aee5c2012-08-15 17:17:47 -0700189#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700190
191 // Block until ReaderWriterMutex is shared or free then acquire a share on the access.
Ian Rogers81d425b2012-09-27 16:03:43 -0700192 void SharedLock(Thread* self) SHARED_LOCK_FUNCTION();
193 void ReaderLock(Thread* self) SHARED_LOCK_FUNCTION() { SharedLock(self); }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700194
195 // Try to acquire share of ReaderWriterMutex.
Ian Rogers81d425b2012-09-27 16:03:43 -0700196 bool SharedTryLock(Thread* self) EXCLUSIVE_TRYLOCK_FUNCTION(true);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700197
198 // Release a share of the access.
Ian Rogers81d425b2012-09-27 16:03:43 -0700199 void SharedUnlock(Thread* self) UNLOCK_FUNCTION();
200 void ReaderUnlock(Thread* self) UNLOCK_FUNCTION() { SharedUnlock(self); }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700201
202 // Is the current thread the exclusive holder of the ReaderWriterMutex.
Ian Rogers81d425b2012-09-27 16:03:43 -0700203 bool IsExclusiveHeld(const Thread* self) const;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700204
205 // Assert the current thread has exclusive access to the ReaderWriterMutex.
Ian Rogers81d425b2012-09-27 16:03:43 -0700206 void AssertExclusiveHeld(const Thread* self) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700207 if (kDebugLocking) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700208 CHECK(IsExclusiveHeld(self)) << *this;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700209 }
210 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700211 void AssertWriterHeld(const Thread* self) { AssertExclusiveHeld(self); }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700212
213 // Assert the current thread doesn't have exclusive access to the ReaderWriterMutex.
Ian Rogers81d425b2012-09-27 16:03:43 -0700214 void AssertNotExclusiveHeld(const Thread* self) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700215 if (kDebugLocking) {
Ian Rogers81d425b2012-09-27 16:03:43 -0700216 CHECK(!IsExclusiveHeld(self));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700217 }
218 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700219 void AssertNotWriterHeld(const Thread* self) { AssertNotExclusiveHeld(self); }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700220
221 // Is the current thread a shared holder of the ReaderWriterMutex.
Ian Rogers81d425b2012-09-27 16:03:43 -0700222 bool IsSharedHeld(const Thread* self) const;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700223
224 // Assert the current thread has shared access to the ReaderWriterMutex.
Ian Rogers81d425b2012-09-27 16:03:43 -0700225 void AssertSharedHeld(const Thread* self) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700226 if (kDebugLocking) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700227 CHECK(IsSharedHeld(self)) << *this;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700228 }
229 }
Ian Rogers81d425b2012-09-27 16:03:43 -0700230 void AssertReaderHeld(const Thread* self) { AssertSharedHeld(self); }
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700231
232 // Assert the current thread doesn't hold this ReaderWriterMutex either in shared or exclusive
233 // mode.
Ian Rogers81d425b2012-09-27 16:03:43 -0700234 void AssertNotHeld(const Thread* self) {
Ian Rogers25fd14b2012-09-05 10:56:38 -0700235 if (kDebugLocking) {
Ian Rogers01ae5802012-09-28 16:14:01 -0700236 CHECK(!IsSharedHeld(self)) << *this;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700237 }
Elliott Hughes8daa0922011-09-11 13:46:25 -0700238 }
239
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700240 // Id associated with exclusive owner.
241 uint64_t GetExclusiveOwnerTid() const;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700242
Ian Rogers01ae5802012-09-28 16:14:01 -0700243 std::string Dump() const;
244
Ian Rogers81d425b2012-09-27 16:03:43 -0700245 private:
246#if ART_USE_FUTEXES
247 // -1 implies held exclusive, +ve shared held by state_ many owners.
248 volatile int32_t state_;
249 // Exclusive owner.
250 volatile uint64_t exclusive_owner_;
251 // Pending readers.
252 volatile int32_t num_pending_readers_;
253 // Pending writers.
254 volatile int32_t num_pending_writers_;
255#else
256 pthread_rwlock_t rwlock_;
257#endif
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700258 friend class MutexTester;
259 DISALLOW_COPY_AND_ASSIGN(ReaderWriterMutex);
260};
261
262// ConditionVariables allow threads to queue and sleep. Threads may then be resumed individually
263// (Signal) or all at once (Broadcast).
Elliott Hughes5f791332011-09-15 17:45:30 -0700264class ConditionVariable {
265 public:
Ian Rogersc604d732012-10-14 16:09:54 -0700266 explicit ConditionVariable(const std::string& name, Mutex& mutex);
Elliott Hughes5f791332011-09-15 17:45:30 -0700267 ~ConditionVariable();
268
Ian Rogersc604d732012-10-14 16:09:54 -0700269 void Broadcast(Thread* self);
270 void Signal(Thread* self);
271 // TODO: No thread safety analysis on Wait and TimedWait as they call mutex operations via their
272 // pointer copy, thereby defeating annotalysis.
273 void Wait(Thread* self) NO_THREAD_SAFETY_ANALYSIS;
274 void TimedWait(Thread* self, int64_t ms, int32_t ns) NO_THREAD_SAFETY_ANALYSIS;
Elliott Hughes5f791332011-09-15 17:45:30 -0700275
276 private:
Elliott Hughes5f791332011-09-15 17:45:30 -0700277 std::string name_;
Ian Rogersc604d732012-10-14 16:09:54 -0700278 // The Mutex being used by waiters. It is an error to mix condition variables between different
279 // Mutexes.
280 Mutex& guard_;
281#if ART_USE_FUTEXES
282 // A counter that is modified by signals and broadcasts. This ensures that when a waiter gives up
283 // their Mutex and another thread takes it and signals, the waiting thread observes that state_
284 // changed and doesn't enter the wait.
285 volatile int32_t state_;
286 // Number of threads that have come into to wait, not the length of the waiters on the futex as
Ian Rogers5bd97c42012-11-27 02:38:26 -0800287 // waiters may have been requeued onto guard_. Guarded by guard_.
Ian Rogersc604d732012-10-14 16:09:54 -0700288 volatile int32_t num_waiters_;
Ian Rogers5bd97c42012-11-27 02:38:26 -0800289 // Number of threads that have been awoken out of the pool of waiters. Guarded by guard_.
Ian Rogersc604d732012-10-14 16:09:54 -0700290 volatile int32_t num_awoken_;
291#else
292 pthread_cond_t cond_;
293#endif
Elliott Hughes5f791332011-09-15 17:45:30 -0700294 DISALLOW_COPY_AND_ASSIGN(ConditionVariable);
295};
296
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700297// Scoped locker/unlocker for a regular Mutex that acquires mu upon construction and releases it
298// upon destruction.
299class SCOPED_LOCKABLE MutexLock {
300 public:
Ian Rogers81d425b2012-09-27 16:03:43 -0700301 explicit MutexLock(Thread* self, Mutex& mu) EXCLUSIVE_LOCK_FUNCTION(mu) : self_(self), mu_(mu) {
302 mu_.ExclusiveLock(self_);
303 }
304
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700305 ~MutexLock() UNLOCK_FUNCTION() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700306 mu_.ExclusiveUnlock(self_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700307 }
308
309 private:
Ian Rogers81d425b2012-09-27 16:03:43 -0700310 Thread* const self_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700311 Mutex& mu_;
312 DISALLOW_COPY_AND_ASSIGN(MutexLock);
313};
314// Catch bug where variable name is omitted. "MutexLock (lock);" instead of "MutexLock mu(lock)".
315#define MutexLock(x) COMPILE_ASSERT(0, mutex_lock_declaration_missing_variable_name)
316
317// Scoped locker/unlocker for a ReaderWriterMutex that acquires read access to mu upon
318// construction and releases it upon destruction.
319class SCOPED_LOCKABLE ReaderMutexLock {
320 public:
Ian Rogers81d425b2012-09-27 16:03:43 -0700321 explicit ReaderMutexLock(Thread* self, ReaderWriterMutex& mu) EXCLUSIVE_LOCK_FUNCTION(mu) :
322 self_(self), mu_(mu) {
323 mu_.SharedLock(self_);
324 }
325
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700326 ~ReaderMutexLock() UNLOCK_FUNCTION() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700327 mu_.SharedUnlock(self_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700328 }
329
330 private:
Ian Rogers81d425b2012-09-27 16:03:43 -0700331 Thread* const self_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700332 ReaderWriterMutex& mu_;
333 DISALLOW_COPY_AND_ASSIGN(ReaderMutexLock);
334};
335// Catch bug where variable name is omitted. "ReaderMutexLock (lock);" instead of
336// "ReaderMutexLock mu(lock)".
337#define ReaderMutexLock(x) COMPILE_ASSERT(0, reader_mutex_lock_declaration_missing_variable_name)
338
339// Scoped locker/unlocker for a ReaderWriterMutex that acquires write access to mu upon
340// construction and releases it upon destruction.
341class SCOPED_LOCKABLE WriterMutexLock {
342 public:
Ian Rogers81d425b2012-09-27 16:03:43 -0700343 explicit WriterMutexLock(Thread* self, ReaderWriterMutex& mu) EXCLUSIVE_LOCK_FUNCTION(mu) :
344 self_(self), mu_(mu) {
345 mu_.ExclusiveLock(self_);
346 }
347
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700348 ~WriterMutexLock() UNLOCK_FUNCTION() {
Ian Rogers81d425b2012-09-27 16:03:43 -0700349 mu_.ExclusiveUnlock(self_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700350 }
351
352 private:
Ian Rogers50b35e22012-10-04 10:09:15 -0700353 Thread* const self_;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700354 ReaderWriterMutex& mu_;
355 DISALLOW_COPY_AND_ASSIGN(WriterMutexLock);
356};
357// Catch bug where variable name is omitted. "WriterMutexLock (lock);" instead of
358// "WriterMutexLock mu(lock)".
359#define WriterMutexLock(x) COMPILE_ASSERT(0, writer_mutex_lock_declaration_missing_variable_name)
360
Elliott Hughes8daa0922011-09-11 13:46:25 -0700361} // namespace art
362
363#endif // ART_SRC_MUTEX_H_