8036703: Add trace event with statistics for the metaspace chunk free lists

Reviewed-by: stefank, mgerdin, coleenp, egahlin
This commit is contained in:
Erik Helin 2014-03-18 09:03:28 +01:00
parent 0a79ba6680
commit 853fffb2cb
11 changed files with 265 additions and 10 deletions

View file

@ -2496,7 +2496,8 @@ void CMSCollector::save_heap_summary() {
}
void CMSCollector::report_heap_summary(GCWhen::Type when) {
_gc_tracer_cm->report_gc_heap_summary(when, _last_heap_summary, _last_metaspace_summary);
_gc_tracer_cm->report_gc_heap_summary(when, _last_heap_summary);
_gc_tracer_cm->report_metaspace_summary(when, _last_metaspace_summary);
}
void CMSCollector::collect_in_foreground(bool clear_all_soft_refs, GCCause::Cause cause) {