diff options
Diffstat (limited to 'runtime/base/mutex.cc')
| -rw-r--r-- | runtime/base/mutex.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/runtime/base/mutex.cc b/runtime/base/mutex.cc index 2ec2b0c1de..13dcb8c634 100644 --- a/runtime/base/mutex.cc +++ b/runtime/base/mutex.cc @@ -46,7 +46,6 @@ Mutex* Locks::intern_table_lock_ = nullptr; Mutex* Locks::jni_libraries_lock_ = nullptr; Mutex* Locks::logging_lock_ = nullptr; Mutex* Locks::mem_maps_lock_ = nullptr; -Mutex* Locks::method_verifiers_lock_ = nullptr; Mutex* Locks::modify_ldt_lock_ = nullptr; ReaderWriterMutex* Locks::mutator_lock_ = nullptr; Mutex* Locks::profiler_lock_ = nullptr; @@ -1002,10 +1001,6 @@ void Locks::Init() { classlinker_classes_lock_ = new ReaderWriterMutex("ClassLinker classes lock", current_lock_level); - UPDATE_CURRENT_LOCK_LEVEL(kMethodVerifiersLock); - DCHECK(method_verifiers_lock_ == nullptr); - method_verifiers_lock_ = new Mutex("Method verifiers lock", current_lock_level); - UPDATE_CURRENT_LOCK_LEVEL(kMonitorPoolLock); DCHECK(allocated_monitor_ids_lock_ == nullptr); allocated_monitor_ids_lock_ = new Mutex("allocated monitor ids lock", current_lock_level); |