mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8146690: Make all classes in GC follow the naming convention
Reviewed-by: dholmes, stefank
This commit is contained in:
parent
49d61bdeb6
commit
ad0c208a5a
77 changed files with 411 additions and 411 deletions
|
@ -38,7 +38,7 @@ class GCPolicyCounters;
|
|||
//
|
||||
// Note: all sizes are in oops
|
||||
|
||||
class ageTable VALUE_OBJ_CLASS_SPEC {
|
||||
class AgeTable VALUE_OBJ_CLASS_SPEC {
|
||||
friend class VMStructs;
|
||||
|
||||
public:
|
||||
|
@ -50,7 +50,7 @@ class ageTable VALUE_OBJ_CLASS_SPEC {
|
|||
|
||||
// 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();
|
||||
|
@ -67,7 +67,7 @@ class ageTable VALUE_OBJ_CLASS_SPEC {
|
|||
|
||||
// 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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue