# HG changeset patch # User phh # Date 1267220455 18000 # Node ID 8911d8c0596f9723e3e7a37aad3e318d1cdbc648 # Parent 72f1840531a40301440c393d04710be5787f9503 6923123: Hotspot refuses to start when -Xmx4m or -Xms4m is specified Summary: Reduce NewSize from 4m to 1m. Reviewed-by: tonyp, jmasa diff -r 72f1840531a4 -r 8911d8c0596f src/share/vm/runtime/globals.hpp --- a/src/share/vm/runtime/globals.hpp Thu Feb 18 10:44:14 2010 -0800 +++ b/src/share/vm/runtime/globals.hpp Fri Feb 26 16:40:55 2010 -0500 @@ -2925,7 +2925,7 @@ 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, \