src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/GCCause.java
changeset 50525 767cdb97f103
parent 49054 fa4c8865a4ff
child 52925 9c18c9d839d3
equal deleted inserted replaced
50524:04f4e983c2f7 50525:767cdb97f103
     1 /*
     1 /*
     2  * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    59   _g1_inc_collection_pause ("G1 Evacuation Pause"),
    59   _g1_inc_collection_pause ("G1 Evacuation Pause"),
    60   _g1_humongous_allocation ("G1 Humongous Allocation"),
    60   _g1_humongous_allocation ("G1 Humongous Allocation"),
    61 
    61 
    62   _dcmd_gc_run ("Diagnostic Command"),
    62   _dcmd_gc_run ("Diagnostic Command"),
    63 
    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 
    64   _last_gc_cause ("ILLEGAL VALUE - last gc cause - ILLEGAL VALUE");
    70   _last_gc_cause ("ILLEGAL VALUE - last gc cause - ILLEGAL VALUE");
    65 
    71 
    66   private final String value;
    72   private final String value;
    67 
    73 
    68   GCCause(String val) {
    74   GCCause(String val) {