test/lib/sun/hotspot/gc/GC.java
branchepsilon-gc-branch
changeset 56540 ada11a8e2ebc
parent 49630 2f1b308b4469
child 56633 28d61698c79e
equal deleted inserted replaced
56536:9931d138b808 56540:ada11a8e2ebc
    34      * Enum values much match CollectedHeap::Name
    34      * Enum values much match CollectedHeap::Name
    35      */
    35      */
    36     Serial(1),
    36     Serial(1),
    37     Parallel(2),
    37     Parallel(2),
    38     ConcMarkSweep(3),
    38     ConcMarkSweep(3),
    39     G1(4);
    39     G1(4),
       
    40     Epsilon(5),
       
    41     ;
    40 
    42 
    41     private static final WhiteBox WB = WhiteBox.getWhiteBox();
    43     private static final WhiteBox WB = WhiteBox.getWhiteBox();
    42 
    44 
    43     private final int name;
    45     private final int name;
    44 
    46