< prev index next >

src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/GCCause.java

Print this page




  44   _allocation_failure ("Allocation Failure"),
  45 
  46   _tenured_generation_full ("Tenured Generation Full"),
  47   _metadata_GC_threshold ("Metadata GC Threshold"),
  48   _metadata_GC_clear_soft_refs ("Metadata GC Clear Soft References"),
  49 
  50   _cms_generation_full ("CMS Generation Full"),
  51   _cms_initial_mark ("CMS Initial Mark"),
  52   _cms_final_remark ("CMS Final Remark"),
  53   _cms_concurrent_mark ("CMS Concurrent Mark"),
  54 
  55   _old_generation_expanded_on_last_scavenge ("Old Generation Expanded On Last Scavenge"),
  56   _old_generation_too_full_to_scavenge ("Old Generation Too Full To Scavenge"),
  57   _adaptive_size_policy ("Ergonomics"),
  58 
  59   _g1_inc_collection_pause ("G1 Evacuation Pause"),
  60   _g1_humongous_allocation ("G1 Humongous Allocation"),
  61 
  62   _dcmd_gc_run ("Diagnostic Command"),
  63 






  64   _last_gc_cause ("ILLEGAL VALUE - last gc cause - ILLEGAL VALUE");
  65 
  66   private final String value;
  67 
  68   GCCause(String val) {
  69     this.value = val;
  70   }
  71   public String value() {
  72     return value;
  73   }
  74 }


  44   _allocation_failure ("Allocation Failure"),
  45 
  46   _tenured_generation_full ("Tenured Generation Full"),
  47   _metadata_GC_threshold ("Metadata GC Threshold"),
  48   _metadata_GC_clear_soft_refs ("Metadata GC Clear Soft References"),
  49 
  50   _cms_generation_full ("CMS Generation Full"),
  51   _cms_initial_mark ("CMS Initial Mark"),
  52   _cms_final_remark ("CMS Final Remark"),
  53   _cms_concurrent_mark ("CMS Concurrent Mark"),
  54 
  55   _old_generation_expanded_on_last_scavenge ("Old Generation Expanded On Last Scavenge"),
  56   _old_generation_too_full_to_scavenge ("Old Generation Too Full To Scavenge"),
  57   _adaptive_size_policy ("Ergonomics"),
  58 
  59   _g1_inc_collection_pause ("G1 Evacuation Pause"),
  60   _g1_humongous_allocation ("G1 Humongous Allocation"),
  61 
  62   _dcmd_gc_run ("Diagnostic Command"),
  63 
  64    _z_timer ("Timer"),
  65    _z_warmup ("Warmup"),
  66    _z_allocation_rate ("Allocation Rate"),
  67    _z_allocation_stall ("Allocation Stall"),
  68    _z_proactive ("Proactive"),
  69 
  70   _last_gc_cause ("ILLEGAL VALUE - last gc cause - ILLEGAL VALUE");
  71 
  72   private final String value;
  73 
  74   GCCause(String val) {
  75     this.value = val;
  76   }
  77   public String value() {
  78     return value;
  79   }
  80 }
< prev index next >