mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-23 20:44:41 +02:00
8042298: Remove the names gen0 and gen1 from the GC code
Renamed gen0 and gen1 to young and old throughout the GC code. Reviewed-by: sjohanss, jcoomes
This commit is contained in:
parent
47c9e23d81
commit
ded8b863dd
19 changed files with 225 additions and 226 deletions
|
@ -1450,8 +1450,7 @@ class CommandLineFlags {
|
|||
"(ParallelGC only)") \
|
||||
\
|
||||
product(bool, ScavengeBeforeFullGC, true, \
|
||||
"Scavenge youngest generation before each full GC, " \
|
||||
"used with UseParallelGC") \
|
||||
"Scavenge youngest generation before each full GC.") \
|
||||
\
|
||||
develop(bool, ScavengeWithObjectsInToSpace, false, \
|
||||
"Allow scavenges to occur when to-space contains objects") \
|
||||
|
@ -2252,9 +2251,6 @@ class CommandLineFlags {
|
|||
notproduct(bool, CheckMemoryInitialization, false, \
|
||||
"Check memory initialization") \
|
||||
\
|
||||
product(bool, CollectGen0First, false, \
|
||||
"Collect youngest generation before each full GC") \
|
||||
\
|
||||
diagnostic(bool, BindCMSThreadToCPU, false, \
|
||||
"Bind CMS Thread to CPU if possible") \
|
||||
\
|
||||
|
@ -2333,11 +2329,11 @@ class CommandLineFlags {
|
|||
NOT_LP64(2200*K) LP64_ONLY(4*M), \
|
||||
"Initial size of the boot class loader data metaspace") \
|
||||
\
|
||||
product(bool, TraceGen0Time, false, \
|
||||
"Trace accumulated time for Gen 0 collection") \
|
||||
product(bool, TraceYoungGenTime, false, \
|
||||
"Trace accumulated time for young collection") \
|
||||
\
|
||||
product(bool, TraceGen1Time, false, \
|
||||
"Trace accumulated time for Gen 1 collection") \
|
||||
product(bool, TraceOldGenTime, false, \
|
||||
"Trace accumulated time for old collection") \
|
||||
\
|
||||
product(bool, PrintTenuringDistribution, false, \
|
||||
"Print tenuring age information") \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue