< prev index next >

agent/src/share/classes/sun/jvm/hotspot/gc_interface/CollectedHeap.java

Print this page
rev 10784 : [backport] Disable heap iteration for Shenandoah in SA

@@ -75,19 +75,10 @@
 
   public CollectedHeapName kind() {
     return CollectedHeapName.ABSTRACT;
   }
 
-  public int oop_extra_words() {
-    return 0;
-  }
-
-  // offset of the first oop from region's bottom
-  public int oop_region_offset_words() {
-    return 0;
-  }
-
   public void print() { printOn(System.out); }
   public void printOn(PrintStream tty) {
     MemRegion mr = reservedRegion();
     tty.println("unknown subtype of CollectedHeap @ " + getAddress() + " (" +
                 mr.start() + "," + mr.end() + ")");
< prev index next >