hotspot/src/share/vm/runtime/synchronizer.hpp
changeset 27680 8ecc0871c18e
parent 27165 785a8d56024c
child 28621 37cc414b6491
--- a/hotspot/src/share/vm/runtime/synchronizer.hpp	Thu Nov 13 11:14:01 2014 +0100
+++ b/hotspot/src/share/vm/runtime/synchronizer.hpp	Fri Nov 14 09:47:09 2014 +0100
@@ -169,7 +169,7 @@
   void waitUninterruptibly(TRAPS) { ObjectSynchronizer::waitUninterruptibly(_obj, 0, CHECK); }
   // complete_exit gives up lock completely, returning recursion count
   // reenter reclaims lock with original recursion count
-  intptr_t complete_exit(TRAPS)  { return ObjectSynchronizer::complete_exit(_obj, CHECK_0); }
+  intptr_t complete_exit(TRAPS)  { return ObjectSynchronizer::complete_exit(_obj, THREAD); }
   void reenter(intptr_t recursion, TRAPS)  { ObjectSynchronizer::reenter(_obj, recursion, CHECK); }
 };