diff -r 0bf9477626ef -r 03468b206457 src/hotspot/share/runtime/biasedLocking.cpp --- a/src/hotspot/share/runtime/biasedLocking.cpp Wed Jun 26 11:25:51 2019 -0400 +++ b/src/hotspot/share/runtime/biasedLocking.cpp Wed Jun 26 18:22:28 2019 +0200 @@ -548,7 +548,7 @@ if (biased_locker != NULL) { _biased_locker_id = JFR_THREAD_ID(biased_locker); } - _safepoint_id = SafepointSynchronize::safepoint_counter(); + _safepoint_id = SafepointSynchronize::safepoint_id(); clean_up_cached_monitor_info(); return; } else { @@ -589,7 +589,7 @@ virtual void doit() { _status_code = bulk_revoke_or_rebias_at_safepoint((*_obj)(), _bulk_rebias, _attempt_rebias_of_object, _requesting_thread); - _safepoint_id = SafepointSynchronize::safepoint_counter(); + _safepoint_id = SafepointSynchronize::safepoint_id(); clean_up_cached_monitor_info(); }