< prev index next >

agent/src/share/classes/sun/jvm/hotspot/gc_interface/GCCause.java

Print this page
rev 10797 : [backport] Some Shenandoah related additions to SA
rev 10799 : [backport] Re-label Shenandoah GC causes (SA&GC)

@@ -53,10 +53,15 @@
   _adaptive_size_policy ("Ergonomics"),
 
   _g1_inc_collection_pause ("G1 Evacuation Pause"),
   _g1_humongous_allocation ("G1 Humongous Allocation"),
 
+  _shenandoah_allocation_failure_evac ("Allocation Failure During Evacuation"),
+  _shenandoah_stop_vm ("Stopping VM"),
+  _shenandoah_concurrent_gc ("Concurrent GC"),
+  _shenandoah_upgrade_to_full_gc ("Upgrade to Full GC"),
+
   _last_ditch_collection ("Last ditch collection"),
   _last_gc_cause ("ILLEGAL VALUE - last gc cause - ILLEGAL VALUE");
 
   private final String value;
 
< prev index next >