< prev index next >

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

Print this page

        

@@ -36,11 +36,11 @@
 
 // Age table for adaptive feedback-mediated tenuring (scavenging)
 //
 // Note: all sizes are in oops
 
-class ageTable VALUE_OBJ_CLASS_SPEC {
+class AgeTable VALUE_OBJ_CLASS_SPEC {
   friend class VMStructs;
 
  public:
   // constants
   enum { table_size = markOopDesc::max_age + 1 };

@@ -48,11 +48,11 @@
   // instance variables
   size_t sizes[table_size];
 
   // constructor.  "global" indicates that this is the global age table
   // (as opposed to gc-thread-local)
-  ageTable(bool global = true);
+  AgeTable(bool global = true);
 
   // clear table
   void clear();
 
   // add entry

@@ -65,11 +65,11 @@
     sizes[age] += oop_size;
   }
 
   // Merge another age table with the current one.  Used
   // for parallel young generation gc.
-  void merge(ageTable* subTable);
+  void merge(AgeTable* subTable);
 
   // calculate new tenuring threshold based on age information
   uint compute_tenuring_threshold(size_t survivor_capacity, GCPolicyCounters* gc_counters);
 
  private:
< prev index next >