6923123: Hotspot refuses to start when -Xmx4m or -Xms4m is specified

Reduce NewSize from 4m to 1m.

Reviewed-by: tonyp, jmasa
This commit is contained in:
Paul Hohensee 2010-02-26 16:40:55 -05:00
parent c3066e0605
commit cef423370c

View File

@ -2925,7 +2925,7 @@ class CommandLineFlags {
product(uintx, OldSize, ScaleForWordSize(4*M), \ product(uintx, OldSize, ScaleForWordSize(4*M), \
"Initial tenured generation size (in bytes)") \ "Initial tenured generation size (in bytes)") \
\ \
product(uintx, NewSize, ScaleForWordSize(4*M), \ product(uintx, NewSize, ScaleForWordSize(1*M), \
"Initial new generation size (in bytes)") \ "Initial new generation size (in bytes)") \
\ \
product(uintx, MaxNewSize, max_uintx, \ product(uintx, MaxNewSize, max_uintx, \