aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm/runtime/vmThread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/share/vm/runtime/vmThread.cpp')
-rw-r--r--src/share/vm/runtime/vmThread.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/share/vm/runtime/vmThread.cpp b/src/share/vm/runtime/vmThread.cpp
index 68890c7d9..c50e0a1d7 100644
--- a/src/share/vm/runtime/vmThread.cpp
+++ b/src/share/vm/runtime/vmThread.cpp
@@ -291,7 +291,9 @@ void VMThread::run() {
// Among other things, this ensures that Eden top is correct.
Universe::heap()->prepare_for_verify();
os::check_heap();
- Universe::verify(true, true); // Silent verification to not polute normal output
+ // Silent verification so as not to pollute normal output,
+ // unless we really asked for it.
+ Universe::verify(true, !(PrintGCDetails || Verbose));
}
CompileBroker::set_should_block();