diff options
Diffstat (limited to 'runtime/base/mutex.h')
-rw-r--r-- | runtime/base/mutex.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/runtime/base/mutex.h b/runtime/base/mutex.h index e44bdb89cc..2adeb8cc97 100644 --- a/runtime/base/mutex.h +++ b/runtime/base/mutex.h @@ -111,7 +111,6 @@ enum LockLevel { kJdwpEventListLock, kJdwpAttachLock, kJdwpStartLock, - kRuntimeCallbacksLock, kRuntimeShutdownLock, kTraceLock, kHeapBitmapLock, @@ -616,11 +615,8 @@ class Locks { // Guards shutdown of the runtime. static Mutex* runtime_shutdown_lock_ ACQUIRED_AFTER(heap_bitmap_lock_); - // Guards accesses to runtime callback lists. - static ReaderWriterMutex* runtime_callbacks_lock_ ACQUIRED_AFTER(runtime_shutdown_lock_); - // Guards background profiler global state. - static Mutex* profiler_lock_ ACQUIRED_AFTER(runtime_callbacks_lock_); + static Mutex* profiler_lock_ ACQUIRED_AFTER(runtime_shutdown_lock_); // Guards trace (ie traceview) requests. static Mutex* trace_lock_ ACQUIRED_AFTER(profiler_lock_); |