mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
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:
parent
c3066e0605
commit
cef423370c
1 changed files with 1 additions and 1 deletions
|
@ -2925,7 +2925,7 @@ class CommandLineFlags {
|
|||
product(uintx, OldSize, ScaleForWordSize(4*M), \
|
||||
"Initial tenured generation size (in bytes)") \
|
||||
\
|
||||
product(uintx, NewSize, ScaleForWordSize(4*M), \
|
||||
product(uintx, NewSize, ScaleForWordSize(1*M), \
|
||||
"Initial new generation size (in bytes)") \
|
||||
\
|
||||
product(uintx, MaxNewSize, max_uintx, \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue