< prev index next >

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

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

@@ -65,13 +65,15 @@
 
   // 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);
+  // 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 >