< prev index next >

src/share/vm/runtime/mutexLocker.cpp

Print this page
rev 8932 : 8046148

*** 125,134 **** --- 125,135 ---- 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; Monitor* JfrMsg_lock = NULL; Mutex* JfrBuffer_lock = NULL;
*** 280,289 **** --- 281,291 ---- def(CompileThread_lock , Monitor, nonleaf+5, false, Monitor::_safepoint_check_always); def(PeriodicTask_lock , Monitor, nonleaf+5, true, Monitor::_safepoint_check_sometimes); 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); def(JfrBuffer_lock , Mutex, leaf, true, Monitor::_safepoint_check_never); def(JfrThreadGroups_lock , Mutex, leaf, true, Monitor::_safepoint_check_always);
< prev index next >