< prev index next >

src/share/vm/gc/shared/ageTable.hpp

Print this page
rev 11906 : [mq]: 8164936-age-table-print-wrong

*** 65,77 **** // Merge another age table with the current one. Used // for parallel young generation gc. void merge(AgeTable* subTable); ! // calculate new tenuring threshold based on age information ! uint compute_tenuring_threshold(size_t survivor_capacity, GCPolicyCounters* gc_counters); private: PerfVariable* _perf_sizes[table_size]; }; #endif // SHARE_VM_GC_SHARED_AGETABLE_HPP --- 65,79 ---- // Merge another age table with the current one. Used // for parallel young generation gc. void merge(AgeTable* subTable); ! // Calculate new tenuring threshold based on age information. ! uint compute_tenuring_threshold(size_t desired_survivor_size); ! void print_age_table(uint tenuring_threshold); private: + PerfVariable* _perf_sizes[table_size]; }; #endif // SHARE_VM_GC_SHARED_AGETABLE_HPP
< prev index next >