mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-15 16:44:36 +02:00
8048190: NoClassDefFoundError omits original ExceptionInInitializerError
Reviewed-by: dholmes, iklam
This commit is contained in:
parent
7e14c3cc11
commit
464e874a5c
9 changed files with 255 additions and 13 deletions
|
@ -43,6 +43,7 @@ Mutex* Patching_lock = NULL;
|
|||
Mutex* CompiledMethod_lock = NULL;
|
||||
Monitor* SystemDictionary_lock = NULL;
|
||||
Mutex* SharedDictionary_lock = NULL;
|
||||
Monitor* ClassInitError_lock = NULL;
|
||||
Mutex* Module_lock = NULL;
|
||||
Mutex* CompiledIC_lock = NULL;
|
||||
Mutex* InlineCacheBuffer_lock = NULL;
|
||||
|
@ -256,6 +257,7 @@ void mutex_init() {
|
|||
|
||||
def(SystemDictionary_lock , PaddedMonitor, leaf, true, _safepoint_check_always);
|
||||
def(SharedDictionary_lock , PaddedMutex , leaf, true, _safepoint_check_always);
|
||||
def(ClassInitError_lock , PaddedMonitor, leaf+1, true, _safepoint_check_always);
|
||||
def(Module_lock , PaddedMutex , leaf+2, false, _safepoint_check_always);
|
||||
def(InlineCacheBuffer_lock , PaddedMutex , leaf, true, _safepoint_check_never);
|
||||
def(VMStatistic_lock , PaddedMutex , leaf, false, _safepoint_check_always);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue