hotspot/src/share/vm/memory/heap.cpp
changeset 4493 9204129f065e
parent 3261 c7d5aae8d3f7
child 5547 f4b087cbb361
--- a/hotspot/src/share/vm/memory/heap.cpp	Mon Dec 14 13:26:29 2009 -0700
+++ b/hotspot/src/share/vm/memory/heap.cpp	Wed Dec 16 12:54:49 2009 -0500
@@ -464,7 +464,7 @@
   }
 
   // Verify that freelist contains the right amount of free space
-  guarantee(len == _free_segments, "wrong freelist");
+  //  guarantee(len == _free_segments, "wrong freelist");
 
   // Verify that the number of free blocks is not out of hand.
   static int free_block_threshold = 10000;
@@ -479,5 +479,5 @@
   for(HeapBlock *h = first_block(); h != NULL; h = next_block(h)) {
     if (h->free()) count--;
   }
-  guarantee(count == 0, "missing free blocks");
+  //  guarantee(count == 0, "missing free blocks");
 }