< prev index next >

src/hotspot/share/gc/shared/gcCause.cpp

Print this page
rev 52572 : JDK-8212657: Implementation of JDK-8204089 Promptly Return Unused Committed Memory from G1
Summary: Issue optional, default enabled, concurrent cycles when the VM is idle to reclaim unused internal and Java heap memory.
Reviewed-by:
Contributed-by: Rodrigo Bruno <rbruno@gsd.inesc-id.pt>, Ruslan Synytsky <rs@jelastic.com>, Thomas Schatzl <thomas.schatzl@oracle.com>

*** 100,109 **** --- 100,112 ---- return "G1 Evacuation Pause"; case _g1_humongous_allocation: return "G1 Humongous Allocation"; + case _g1_periodic_collection: + return "G1 Periodic Collection"; + case _dcmd_gc_run: return "Diagnostic Command"; case _z_timer: return "Timer";
< prev index next >