aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm/gc_implementation
diff options
context:
space:
mode:
authortonyp <none@none>2009-04-23 16:58:16 -0400
committertonyp <none@none>2009-04-23 16:58:16 -0400
commit27c400aff002d0053e4427a4faf3209d936fc7c0 (patch)
tree705445bdce81507e37b822ac4a446852a6b26e5a /src/share/vm/gc_implementation
parent3a217592585a860f5e49ff68efb541f1d4559b67 (diff)
downloadjdk8u_hotspot-27c400aff002d0053e4427a4faf3209d936fc7c0.tar.gz
6829013: G1: set the default value of G1VerifyConcMarkPrintRechable to false
Summary: Turn off G1VerifyConcMarkPrintReachable by default to minimize the amount of verbose output we generate by default. Reviewed-by: jmasa
Diffstat (limited to 'src/share/vm/gc_implementation')
-rw-r--r--src/share/vm/gc_implementation/g1/g1_globals.hpp2
-rw-r--r--src/share/vm/gc_implementation/g1/heapRegion.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/share/vm/gc_implementation/g1/g1_globals.hpp b/src/share/vm/gc_implementation/g1/g1_globals.hpp
index f6589e75c..bc77c445c 100644
--- a/src/share/vm/gc_implementation/g1/g1_globals.hpp
+++ b/src/share/vm/gc_implementation/g1/g1_globals.hpp
@@ -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, \
diff --git a/src/share/vm/gc_implementation/g1/heapRegion.cpp b/src/share/vm/gc_implementation/g1/heapRegion.cpp
index ee578bb2c..2610cef75 100644
--- a/src/share/vm/gc_implementation/g1/heapRegion.cpp
+++ b/src/share/vm/gc_implementation/g1/heapRegion.cpp
@@ -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");
}