6829013: G1: set the default value of G1VerifyConcMarkPrintRechable to false

Turn off G1VerifyConcMarkPrintReachable by default to minimize the amount of verbose output we generate by default.

Reviewed-by: jmasa
This commit is contained in:
Antonios Printezis 2009-04-23 16:58:16 -04:00
parent 425fb8197e
commit c2578847e2
2 changed files with 2 additions and 2 deletions

View file

@ -71,7 +71,7 @@
develop(intx, G1MarkingVerboseLevel, 0, \
"Level (0-4) of verboseness of the marking code") \
\
develop(bool, G1VerifyConcMarkPrintReachable, true, \
develop(bool, G1VerifyConcMarkPrintReachable, false, \
"If conc mark verification fails, print reachable objects") \
\
develop(bool, G1TraceMarkStackOverflow, false, \

View file

@ -718,7 +718,7 @@ void HeapRegion::verify(bool allow_dirty) const {
vl_cl.failures()) {
g1->concurrent_mark()->print_prev_bitmap_reachable();
}
guarantee(!vl_cl.failures(), "should not have had any failures");
guarantee(!vl_cl.failures(), "region verification failed");
guarantee(p == top(), "end of last object must match end of space");
}