hotspot/src/share/vm/classfile/systemDictionary.cpp
// ----------------------------------------------------------------------------
// Parallel class loading check
bool SystemDictionary::is_parallelCapable(Handle class_loader) {
{- -------------------------------------------
(1)
---------------------------------------- -}
if (UnsyncloadClass || class_loader.is_null()) return true;
if (AlwaysLockClassLoader) return false;
return java_lang_Class::parallelCapable(class_loader());
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.