changeset 1284:8911d8c0596f

6923123: Hotspot refuses to start when -Xmx4m or -Xms4m is specified Summary: Reduce NewSize from 4m to 1m. Reviewed-by: tonyp, jmasa
author phh
date Fri, 26 Feb 2010 16:40:55 -0500
parents 72f1840531a4
children c76ca382971b
files src/share/vm/runtime/globals.hpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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,                                     \