< prev index next >

src/hotspot/share/runtime/mutexLocker.cpp

Print this page
rev 59635 : [mq]: cds_lambda

*** 148,157 **** --- 148,158 ---- #if INCLUDE_CDS #if INCLUDE_JVMTI Mutex* CDSClassFileStream_lock = NULL; #endif Mutex* DumpTimeTable_lock = NULL; + Mutex* CDSLambda_lock = NULL; #endif // INCLUDE_CDS #if INCLUDE_JVMCI Monitor* JVMCI_lock = NULL; #endif
*** 342,351 **** --- 343,353 ---- #if INCLUDE_CDS #if INCLUDE_JVMTI def(CDSClassFileStream_lock , PaddedMutex , max_nonleaf, false, _safepoint_check_always); #endif def(DumpTimeTable_lock , PaddedMutex , leaf - 1, true, _safepoint_check_never); + def(CDSLambda_lock , PaddedMutex , leaf, true, _safepoint_check_never); #endif // INCLUDE_CDS #if INCLUDE_JVMCI def(JVMCI_lock , PaddedMonitor, nonleaf+2, true, _safepoint_check_always); #endif
< prev index next >