diff options
Diffstat (limited to 'runtime/base/mutex.h')
-rw-r--r-- | runtime/base/mutex.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/runtime/base/mutex.h b/runtime/base/mutex.h index 3d7624d979..c79e287d5b 100644 --- a/runtime/base/mutex.h +++ b/runtime/base/mutex.h @@ -60,7 +60,6 @@ enum LockLevel { kUnexpectedSignalLock, kThreadSuspendCountLock, kAbortLock, - kLambdaTableLock, kJdwpSocketLock, kRegionSpaceRegionLock, kRosAllocGlobalLock, @@ -690,10 +689,6 @@ class Locks { // Have an exclusive logging thread. static Mutex* logging_lock_ ACQUIRED_AFTER(unexpected_signal_lock_); - - // Allow reader-writer mutual exclusion on the boxed table of lambda objects. - // TODO: this should be a RW mutex lock, except that ConditionVariables don't work with it. - static Mutex* lambda_table_lock_ ACQUIRED_AFTER(mutator_lock_); }; class Roles { |