src/share/vm/runtime/vmThread.cpp

changeset 2825
1f4413413144
parent 2314
f95d63e2154a
child 3156
f08d439fab8c
     1.1 --- a/src/share/vm/runtime/vmThread.cpp	Tue Apr 26 11:46:34 2011 -0700
     1.2 +++ b/src/share/vm/runtime/vmThread.cpp	Tue Apr 26 21:17:24 2011 -0700
     1.3 @@ -291,7 +291,9 @@
     1.4      // Among other things, this ensures that Eden top is correct.
     1.5      Universe::heap()->prepare_for_verify();
     1.6      os::check_heap();
     1.7 -    Universe::verify(true, true); // Silent verification to not polute normal output
     1.8 +    // Silent verification so as not to pollute normal output,
     1.9 +    // unless we really asked for it.
    1.10 +    Universe::verify(true, !(PrintGCDetails || Verbose));
    1.11    }
    1.12  
    1.13    CompileBroker::set_should_block();

mercurial