< prev index next >

src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/epsilon/EpsilonHeap.java

Print this page

        

*** 79,88 **** --- 79,93 ---- public ContiguousSpace space() { return space; } @Override + public void liveRegionsIterate(LiveRegionsClosure closure) { + closure.doLiveRegions(space()); + } + + @Override public void printOn(PrintStream tty) { MemRegion mr = reservedRegion(); tty.println("Epsilon heap"); tty.println(" reserved: [" + mr.start() + ", " + mr.end() + "]"); tty.println(" committed: [" + virtualSpace.low() + ", " + virtualSpace.high() + "]");
< prev index next >