< prev index next >

src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/BitMapSegmented.java

Print this page

        

@@ -24,12 +24,12 @@
 
 package sun.jvm.hotspot.utilities;
 
 /** A BitMap implementing the BitMapInterface. */
 public class BitMapSegmented implements BitMapInterface {
-  private static final int SegmentSizeBits = 30;
-  private static final int SegmentSize = 1 << (SegmentSizeBits - 1);
+  public static final int SegmentSizeBits = 4;
+  public static final int SegmentSize = 1 << (SegmentSizeBits - 1);
 
   public BitMapSegmented(long sizeInBits) {
     this.size = sizeInBits;
 
     if (sizeInBits == 0) {
< prev index next >