mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8080511: Refresh of jimage support
Co-authored-by: James Laskey <james.laskey@oracle.com> Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com> Reviewed-by: alanb, mchung, psandoz, acorn, lfoltan, ctornqvi
This commit is contained in:
parent
6684a41c5d
commit
aaac2cbb54
40 changed files with 2815 additions and 322 deletions
|
@ -100,6 +100,8 @@ Mutex* ProfilePrint_lock = NULL;
|
|||
Mutex* ExceptionCache_lock = NULL;
|
||||
Monitor* ObjAllocPost_lock = NULL;
|
||||
Mutex* OsrList_lock = NULL;
|
||||
Mutex* ImageFileReaderTable_lock = NULL;
|
||||
|
||||
#ifndef PRODUCT
|
||||
Mutex* FullGCALot_lock = NULL;
|
||||
#endif
|
||||
|
@ -227,6 +229,7 @@ void mutex_init() {
|
|||
def(ProfilePrint_lock , Mutex , leaf, false, Monitor::_safepoint_check_always); // serial profile printing
|
||||
def(ExceptionCache_lock , Mutex , leaf, false, Monitor::_safepoint_check_always); // serial profile printing
|
||||
def(OsrList_lock , Mutex , leaf, true, Monitor::_safepoint_check_never);
|
||||
def(ImageFileReaderTable_lock , Mutex , nonleaf, false, Monitor::_safepoint_check_always); // synchronize image readers open/close
|
||||
def(Debug1_lock , Mutex , leaf, true, Monitor::_safepoint_check_never);
|
||||
#ifndef PRODUCT
|
||||
def(FullGCALot_lock , Mutex , leaf, false, Monitor::_safepoint_check_always); // a lock to make FullGCALot MT safe
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue