--- old/src/share/vm/runtime/objectMonitor.inline.hpp 2016-10-25 10:40:10.460778376 +0200 +++ new/src/share/vm/runtime/objectMonitor.inline.hpp 2016-10-25 10:40:10.412778344 +0200 @@ -109,5 +109,12 @@ _recursions = 0; } +inline void ObjectMonitor::enter(TRAPS) { + enter(0, THREAD); +} + +inline void ObjectMonitor::exit(bool not_suspended, TRAPS) { + exit(NULL, 0, THREAD); +} #endif // SHARE_VM_RUNTIME_OBJECTMONITOR_INLINE_HPP