mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8046148: JEP 158: Unified JVM Logging
Reviewed-by: coleenp, sla
This commit is contained in:
parent
0835a6e311
commit
3c2211a492
39 changed files with 2842 additions and 6 deletions
|
@ -127,6 +127,7 @@ Monitor* GCTaskManager_lock = NULL;
|
|||
Mutex* Management_lock = NULL;
|
||||
Monitor* Service_lock = NULL;
|
||||
Monitor* PeriodicTask_lock = NULL;
|
||||
Mutex* LogConfiguration_lock = NULL;
|
||||
|
||||
#ifdef INCLUDE_TRACE
|
||||
Mutex* JfrStacktrace_lock = NULL;
|
||||
|
@ -282,6 +283,7 @@ void mutex_init() {
|
|||
if (WhiteBoxAPI) {
|
||||
def(Compilation_lock , Monitor, leaf, false, Monitor::_safepoint_check_never);
|
||||
}
|
||||
def(LogConfiguration_lock , Mutex, nonleaf, false, Monitor::_safepoint_check_always);
|
||||
|
||||
#ifdef INCLUDE_TRACE
|
||||
def(JfrMsg_lock , Monitor, leaf, true, Monitor::_safepoint_check_always);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue