Skip to content

Commit

Permalink
Add shenandoah generational heap to type DB
Browse files Browse the repository at this point in the history
  • Loading branch information
earthling-amzn committed Dec 11, 2024
1 parent 842a0d8 commit 55c117e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
import sun.jvm.hotspot.gc.parallel.ParallelScavengeHeap;
import sun.jvm.hotspot.gc.serial.SerialHeap;
import sun.jvm.hotspot.gc.shared.CollectedHeap;
import sun.jvm.hotspot.gc.shenandoah.ShenandoahGenerationalHeap;
import sun.jvm.hotspot.gc.shenandoah.ShenandoahHeap;
import sun.jvm.hotspot.gc.x.XCollectedHeap;
import sun.jvm.hotspot.gc.z.ZCollectedHeap;
Expand Down Expand Up @@ -90,6 +91,7 @@ private static synchronized void initialize(TypeDataBase db) {
addHeapTypeIfInDB(db, XCollectedHeap.class);
addHeapTypeIfInDB(db, ZCollectedHeap.class);
addHeapTypeIfInDB(db, ShenandoahHeap.class);
addHeapTypeIfInDB(db, ShenandoahGenerationalHeap.class);

UniverseExt.initialize(heapConstructor);
}
Expand Down

0 comments on commit 55c117e

Please sign in to comment.