< prev index next >

src/share/vm/gc/shared/gcTrace.cpp

Print this page
rev 8823 : imported patch 8133530-add-jfr-event-for-evacuation

*** 250,255 **** --- 250,263 ---- assert_set_gc_id(); send_evacuation_failed_event(ef_info); ef_info.reset(); } + + void G1NewTracer::report_evacuation_statistics(const G1EvacSummary& young_summary, const G1EvacSummary& old_summary) const { + assert_set_gc_id(); + + send_young_evacuation_statistics(young_summary); + send_old_evacuation_statistics(old_summary); + } + #endif
< prev index next >