comparison src/share/vm/gc_implementation/g1/g1_globals.hpp @ 3868:ae73da50be4b

7081064: G1: remove develop params G1FixedSurvivorSpaceSize, G1FixedTenuringThreshold, and G1FixedEdenSize Summary: Remove three develop parameters we don't use. Reviewed-by: brutisso, jwilhelm
author tonyp
date Mon, 22 Aug 2011 10:16:33 -0400
parents ff53346271fe
children 4fe626cbf0bf
comparison
equal deleted inserted replaced
3867:ff53346271fe 3868:ae73da50be4b
247 \ 247 \
248 develop(bool, G1FailOnFPError, false, \ 248 develop(bool, G1FailOnFPError, false, \
249 "When set, G1 will fail when it encounters an FP 'error', " \ 249 "When set, G1 will fail when it encounters an FP 'error', " \
250 "so as to allow debugging") \ 250 "so as to allow debugging") \
251 \ 251 \
252 develop(bool, G1FixedTenuringThreshold, false, \
253 "When set, G1 will not adjust the tenuring threshold") \
254 \
255 develop(bool, G1FixedEdenSize, false, \
256 "When set, G1 will not allocate unused survivor space regions") \
257 \
258 develop(uintx, G1FixedSurvivorSpaceSize, 0, \
259 "If non-0 is the size of the G1 survivor space, " \
260 "otherwise SurvivorRatio is used to determine the size") \
261 \
262 product(uintx, G1HeapRegionSize, 0, \ 252 product(uintx, G1HeapRegionSize, 0, \
263 "Size of the G1 regions.") \ 253 "Size of the G1 regions.") \
264 \ 254 \
265 experimental(bool, G1UseParallelRSetUpdating, true, \ 255 experimental(bool, G1UseParallelRSetUpdating, true, \
266 "Enables the parallelization of remembered set updating " \ 256 "Enables the parallelization of remembered set updating " \