src/share/vm/memory/heap.cpp

changeset 1558
167c2986d91b
parent 1279
bd02caa94611
child 1907
c18cbe5936b8
     1.1 --- a/src/share/vm/memory/heap.cpp	Mon Dec 14 13:26:29 2009 -0700
     1.2 +++ b/src/share/vm/memory/heap.cpp	Wed Dec 16 12:54:49 2009 -0500
     1.3 @@ -464,7 +464,7 @@
     1.4    }
     1.5  
     1.6    // Verify that freelist contains the right amount of free space
     1.7 -  guarantee(len == _free_segments, "wrong freelist");
     1.8 +  //  guarantee(len == _free_segments, "wrong freelist");
     1.9  
    1.10    // Verify that the number of free blocks is not out of hand.
    1.11    static int free_block_threshold = 10000;
    1.12 @@ -479,5 +479,5 @@
    1.13    for(HeapBlock *h = first_block(); h != NULL; h = next_block(h)) {
    1.14      if (h->free()) count--;
    1.15    }
    1.16 -  guarantee(count == 0, "missing free blocks");
    1.17 +  //  guarantee(count == 0, "missing free blocks");
    1.18  }

mercurial