< prev index next >

src/share/vm/runtime/java.cpp

Print this page

        

*** 364,373 **** --- 364,377 ---- #endif // ENABLE_ZAP_DEAD_LOCALS // Native memory tracking data if (PrintNMTStatistics) { MemTracker::final_report(tty); } + + if (AsyncGCLogging && PrintGCLogStatistics) { + tty->print_cr("GCLogOverflow: %d", GCLogEvent::buffer_overflow_count()); + } } #else // PRODUCT MODE STATISTICS void print_statistics() {
*** 396,405 **** --- 400,413 ---- // Native memory tracking data if (PrintNMTStatistics) { MemTracker::final_report(tty); } + + if (AsyncGCLogging && PrintGCLogStatistics) { + tty->print_cr("GCLogOverflow: %d", GCLogEvent::buffer_overflow_count()); + } } #endif
< prev index next >