< prev index next >

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

Print this page

        

@@ -25,10 +25,11 @@
 #ifndef SHARE_VM_GC_IMPLEMENTATION_SHARED_AGETABLE_HPP
 #define SHARE_VM_GC_IMPLEMENTATION_SHARED_AGETABLE_HPP
 
 #include "oops/markOop.hpp"
 #include "oops/oop.hpp"
+#include "gc_implementation/shared/gcTrace.hpp"
 #include "runtime/perfData.hpp"
 
 /* Copyright (c) 1992-2009 Oracle and/or its affiliates, and Stanford University.
    See the LICENSE file for license information. */
 

@@ -67,11 +68,11 @@
   // for parallel young generation gc.
   void merge(ageTable* subTable);
   void merge_par(ageTable* subTable);
 
   // calculate new tenuring threshold based on age information
-  uint compute_tenuring_threshold(size_t survivor_capacity);
+  uint compute_tenuring_threshold(size_t survivor_capacity, GCTracer &tracer);
 
  private:
   PerfVariable* _perf_sizes[table_size];
 };
 
< prev index next >