mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8198691: CodeHeap State Analytics
Reviewed-by: kvn, thartmann
This commit is contained in:
parent
9b9d9308ed
commit
b7cb1a07e4
14 changed files with 2832 additions and 19 deletions
|
@ -137,6 +137,7 @@ Mutex* JfrStream_lock = NULL;
|
|||
#ifndef SUPPORTS_NATIVE_CX8
|
||||
Mutex* UnsafeJlong_lock = NULL;
|
||||
#endif
|
||||
Monitor* CodeHeapStateAnalytics_lock = NULL;
|
||||
|
||||
Mutex* MetaspaceExpand_lock = NULL;
|
||||
|
||||
|
@ -301,6 +302,8 @@ void mutex_init() {
|
|||
#ifndef SUPPORTS_NATIVE_CX8
|
||||
def(UnsafeJlong_lock , PaddedMutex , special, false, Monitor::_safepoint_check_never);
|
||||
#endif
|
||||
|
||||
def(CodeHeapStateAnalytics_lock , PaddedMutex , leaf, true, Monitor::_safepoint_check_never);
|
||||
}
|
||||
|
||||
GCMutexLocker::GCMutexLocker(Monitor * mutex) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue