< prev index next >

src/hotspot/share/runtime/threadSMR.cpp

Print this page
rev 47862 : imported patch 10.07.open.rebase_20171110.dcubed
rev 47865 : dholmes CR: Fix indents, trailing spaces and various typos. Add descriptions for the '_cnt', '_max' and '_times" fields, add impl notes to document the type choices.

*** 59,69 **** ThreadsListHandle::~ThreadsListHandle() { Threads::release_stable_list(_self); if (EnableThreadSMRStatistics) { _timer.stop(); ! jint millis = (jint)_timer.milliseconds(); Threads::inc_smr_tlh_cnt(); Threads::add_smr_tlh_times(millis); Threads::update_smr_tlh_time_max(millis); } } --- 59,69 ---- ThreadsListHandle::~ThreadsListHandle() { Threads::release_stable_list(_self); if (EnableThreadSMRStatistics) { _timer.stop(); ! uint millis = (uint)_timer.milliseconds(); Threads::inc_smr_tlh_cnt(); Threads::add_smr_tlh_times(millis); Threads::update_smr_tlh_time_max(millis); } }
< prev index next >