diff -r a8dcacf95bff -r 1126f0607c70 src/hotspot/share/code/stubs.cpp --- a/src/hotspot/share/code/stubs.cpp Thu Apr 25 05:54:54 2019 -0700 +++ b/src/hotspot/share/code/stubs.cpp Thu Apr 25 10:56:31 2019 -0400 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -207,7 +207,7 @@ void StubQueue::verify() { // verify only if initialized if (_stub_buffer == NULL) return; - MutexLockerEx lock(_mutex, Mutex::_no_safepoint_check_flag); + MutexLocker lock(_mutex, Mutex::_no_safepoint_check_flag); // verify index boundaries guarantee(0 <= _buffer_size, "buffer size must be positive"); guarantee(0 <= _buffer_limit && _buffer_limit <= _buffer_size , "_buffer_limit out of bounds"); @@ -234,7 +234,7 @@ void StubQueue::print() { - MutexLockerEx lock(_mutex, Mutex::_no_safepoint_check_flag); + MutexLocker lock(_mutex, Mutex::_no_safepoint_check_flag); for (Stub* s = first(); s != NULL; s = next(s)) { stub_print(s); }