8248401: Refactor/unify RMI gc support functionality

Move recent timestamp of most recent whole heap liveness analysis into CollectedHeap, removing the duplicates in all collectors

Reviewed-by: kbarrett, ayang, stefank
This commit is contained in:
Thomas Schatzl 2020-08-07 19:23:53 +02:00
parent 1ad1659413
commit 9852a6f75c
25 changed files with 56 additions and 166 deletions

View file

@ -502,7 +502,7 @@ JVM_END
JVM_LEAF(jlong, JVM_MaxObjectInspectionAge(void))
JVMWrapper("JVM_MaxObjectInspectionAge");
return Universe::heap()->millis_since_last_gc();
return Universe::heap()->millis_since_last_whole_heap_examined();
JVM_END