hotspot/src/share/vm/runtime/synchronizer.cpp
changeset 18025 b7bcf7497f93
parent 17087 f0b76c4c93a0
child 20282 7f9cbdf89af2
child 22819 f88b9c394e42
--- a/hotspot/src/share/vm/runtime/synchronizer.cpp	Fri Jun 07 09:33:01 2013 -0700
+++ b/hotspot/src/share/vm/runtime/synchronizer.cpp	Mon Jun 10 11:30:51 2013 +0200
@@ -213,7 +213,7 @@
      }
   }
 
-  ObjectSynchronizer::inflate(THREAD, object)->exit (THREAD) ;
+  ObjectSynchronizer::inflate(THREAD, object)->exit (true, THREAD) ;
 }
 
 // -----------------------------------------------------------------------------
@@ -343,7 +343,7 @@
   // If this thread has locked the object, exit the monitor.  Note:  can't use
   // monitor->check(CHECK); must exit even if an exception is pending.
   if (monitor->check(THREAD)) {
-     monitor->exit(THREAD);
+     monitor->exit(true, THREAD);
   }
 }