8000831: Heap verification output incorrect/incomplete

Restore non-silent output of heap verification.

Reviewed-by: ysr, brutisso, jmasa
This commit is contained in:
John Cuthbertson 2012-10-15 10:02:42 -07:00
parent 724e5ecfb3
commit 9abdcd4a3c
9 changed files with 34 additions and 28 deletions

View file

@ -64,7 +64,7 @@ void VM_CMS_Operation::verify_before_gc() {
FreelistLocker x(_collector);
MutexLockerEx y(_collector->bitMapLock(), Mutex::_no_safepoint_check_flag);
Universe::heap()->prepare_for_verify();
Universe::verify(true);
Universe::verify();
}
}
@ -74,7 +74,7 @@ void VM_CMS_Operation::verify_after_gc() {
HandleMark hm;
FreelistLocker x(_collector);
MutexLockerEx y(_collector->bitMapLock(), Mutex::_no_safepoint_check_flag);
Universe::verify(true);
Universe::verify();
}
}