changeset 746:4753e4079a5a

Merge
author apetrusenko
date Mon, 27 Apr 2009 12:33:57 -0700
parents 6ffcd0923239 (current diff) 2b6c55e36143 (diff)
children b803b1b9e206
files
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/gc_implementation/g1/g1_globals.hpp	Fri Apr 24 18:45:14 2009 -0700
+++ b/src/share/vm/gc_implementation/g1/g1_globals.hpp	Mon Apr 27 12:33:57 2009 -0700
@@ -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,                            \
--- a/src/share/vm/gc_implementation/g1/heapRegion.cpp	Fri Apr 24 18:45:14 2009 -0700
+++ b/src/share/vm/gc_implementation/g1/heapRegion.cpp	Mon Apr 27 12:33:57 2009 -0700
@@ -718,7 +718,7 @@
       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");
 }