8222811: Consolidate MutexLockerEx and MutexLocker

Make MutexLocker be MutexLockerEx implementation, remove MutexLockerEx calls.

Reviewed-by: dcubed, dholmes, pliden, rehn
This commit is contained in:
Coleen Phillimore 2019-04-25 10:56:31 -04:00
parent 88303d1c60
commit fbafef11c0
127 changed files with 718 additions and 746 deletions

View file

@ -97,7 +97,7 @@ void ThreadService::init() {
void ThreadService::reset_peak_thread_count() {
// Acquire the lock to update the peak thread count
// to synchronize with thread addition and removal.
MutexLockerEx mu(Threads_lock);
MutexLocker mu(Threads_lock);
_peak_threads_count->set_value(get_live_thread_count());
}