src/share/vm/memory/genCollectedHeap.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/memory/genCollectedHeap.cpp

src/share/vm/memory/genCollectedHeap.cpp

Print this page
rev 6362 : 8042298: Remove the names gen0 and gen1 from the GC code
Summary: Renamed gen0 and gen1 to young and old throughout the GC code.
Reviewed-by:

*** 1117,1130 **** } #endif // INCLUDE_ALL_GCS } void GenCollectedHeap::print_tracing_info() const { ! if (TraceGen0Time) { get_gen(0)->print_summary_info(); } ! if (TraceGen1Time) { get_gen(1)->print_summary_info(); } } void GenCollectedHeap::print_heap_change(size_t prev_used) const { --- 1117,1130 ---- } #endif // INCLUDE_ALL_GCS } void GenCollectedHeap::print_tracing_info() const { ! if (TraceYoungGenTime) { get_gen(0)->print_summary_info(); } ! if (TraceOldGenTime) { get_gen(1)->print_summary_info(); } } void GenCollectedHeap::print_heap_change(size_t prev_used) const {
src/share/vm/memory/genCollectedHeap.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File