Merge
authordcubed
Thu, 16 Jul 2015 02:49:21 +0200
changeset 31793 74fc81d5d81a
parent 31791 619b204d5475 (current diff)
parent 31792 01f875743508 (diff)
child 31794 3fd30fa1e480
child 31848 65b917637e4f
Merge
--- a/hotspot/src/share/vm/runtime/vframe.cpp	Wed Jul 15 20:58:06 2015 +0000
+++ b/hotspot/src/share/vm/runtime/vframe.cpp	Thu Jul 16 02:49:21 2015 +0200
@@ -235,12 +235,14 @@
             // disable the extra printing below.
             mark = NULL;
           }
-        } else if (frame_count != 0) {
+        } else if (frame_count != 0 && ObjectMonitor::Knob_Verbose) {
           // This is not the first frame so we either own this monitor
           // or we owned the monitor before and called wait(). Because
           // wait() could have been called on any monitor in a lower
           // numbered frame on the stack, we have to check all the
           // monitors on the list for this frame.
+          // Note: Only enable this new output line in verbose mode
+          // since existing tests are not ready for it.
           mark = monitor->owner()->mark();
           if (mark->has_monitor() &&
               ( // we have marked ourself as pending on this monitor