comparison src/share/vm/gc_implementation/g1/g1_globals.hpp @ 7449:37f7535e5f18

8001424: G1: Rename certain G1-specific flags Summary: Rename G1DefaultMinNewGenPercent, G1DefaultMaxNewGenPercent, and G1OldCSetRegionLiveThresholdPercent to G1NewSizePercent, G1MaxNewSizePercent, and G1MixedGCLiveThresholdPercent respectively. The previous names are no longer accepted. Reviewed-by: brutisso, ysr
author johnc
date Fri, 21 Dec 2012 11:45:34 -0800
parents c9814fadeb38
children 4967eb4f67a9
comparison
equal deleted inserted replaced
7448:b735136e0d82 7449:37f7535e5f18
285 \ 285 \
286 develop(uintx, G1ConcMarkForceOverflow, 0, \ 286 develop(uintx, G1ConcMarkForceOverflow, 0, \
287 "The number of times we'll force an overflow during " \ 287 "The number of times we'll force an overflow during " \
288 "concurrent marking") \ 288 "concurrent marking") \
289 \ 289 \
290 experimental(uintx, G1DefaultMinNewGenPercent, 20, \ 290 experimental(uintx, G1NewSizePercent, 20, \
291 "Percentage (0-100) of the heap size to use as minimum " \ 291 "Percentage (0-100) of the heap size to use as default " \
292 "young gen size.") \ 292 "minimum young gen size.") \
293 \ 293 \
294 experimental(uintx, G1DefaultMaxNewGenPercent, 80, \ 294 experimental(uintx, G1MaxNewSizePercent, 80, \
295 "Percentage (0-100) of the heap size to use as maximum " \ 295 "Percentage (0-100) of the heap size to use as default " \
296 "young gen size.") \ 296 " maximum young gen size.") \
297 \ 297 \
298 experimental(uintx, G1OldCSetRegionLiveThresholdPercent, 90, \ 298 experimental(uintx, G1MixedGCLiveThresholdPercent, 90, \
299 "Threshold for regions to be added to the collection set. " \ 299 "Threshold for regions to be considered for inclusion in the " \
300 "Regions with more live bytes than this will not be collected.") \ 300 "collection set of mixed GCs. " \
301 "Regions with live bytes exceeding this will not be collected.") \
301 \ 302 \
302 product(uintx, G1HeapWastePercent, 5, \ 303 product(uintx, G1HeapWastePercent, 5, \
303 "Amount of space, expressed as a percentage of the heap size, " \ 304 "Amount of space, expressed as a percentage of the heap size, " \
304 "that G1 is willing not to collect to avoid expensive GCs.") \ 305 "that G1 is willing not to collect to avoid expensive GCs.") \
305 \ 306 \