< prev index next >

src/hotspot/share/gc/g1/g1GCPhaseTimes.hpp

Print this page
rev 49681 : imported patch 6672778-partial-queue-trimming
rev 49683 : imported patch 6672778-stefanj-review
rev 49684 : imported patch 6672778-inconsistent-time-fixes
rev 49691 : [mq]: 8201596-weak-processing-missing

*** 128,137 **** --- 128,139 ---- double _cur_clear_ct_time_ms; double _cur_expand_heap_time_ms; double _cur_ref_proc_time_ms; double _cur_ref_enq_time_ms; + double _cur_weak_ref_proc_time_ms; + double _cur_collection_start_sec; double _root_region_scan_wait_time_ms; double _external_accounted_time_ms;
*** 254,263 **** --- 256,269 ---- void record_ref_proc_time(double ms) { _cur_ref_proc_time_ms = ms; } + void record_weak_ref_proc_time(double ms) { + _cur_weak_ref_proc_time_ms = ms; + } + void record_ref_enq_time(double ms) { _cur_ref_enq_time_ms = ms; } void record_root_region_scan_wait_time(double time_ms) {
< prev index next >