Skip to content

Commit 2e8b195

Browse files
author
William Kemper
committed
8354078: Implement JEP 521: Generational Shenandoah
Reviewed-by: ysr
1 parent 11ad173 commit 2e8b195

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/hotspot/share/gc/shenandoah/mode/shenandoahGenerationalMode.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class ShenandoahGenerationalMode : public ShenandoahMode {
3232
virtual void initialize_flags() const;
3333
virtual const char* name() { return "Generational"; }
3434
virtual bool is_diagnostic() { return false; }
35-
virtual bool is_experimental() { return true; }
35+
virtual bool is_experimental() { return false; }
3636
virtual bool is_generational() { return true; }
3737
};
3838

test/hotspot/jtreg/gc/shenandoah/options/TestModeUnlock.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ enum Mode {
4747
public static void main(String[] args) throws Exception {
4848
testWith("-XX:ShenandoahGCMode=satb", Mode.PRODUCT);
4949
testWith("-XX:ShenandoahGCMode=passive", Mode.DIAGNOSTIC);
50-
testWith("-XX:ShenandoahGCMode=generational", Mode.EXPERIMENTAL);
50+
testWith("-XX:ShenandoahGCMode=generational", Mode.PRODUCT);
5151
}
5252

5353
private static void testWith(String h, Mode mode) throws Exception {

0 commit comments

Comments
 (0)