< prev index next >

src/hotspot/share/runtime/mutexLocker.cpp

Print this page
rev 59477 : [mq]: cds_lambda

*** 147,156 **** --- 147,157 ---- #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
*** 340,349 **** --- 341,351 ---- #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 >