From 3899f14f1f9c96304ac1400935cefc2021aa55f3 Mon Sep 17 00:00:00 2001 From: Coleen Phillimore Date: Fri, 18 Feb 2011 18:26:17 -0500 Subject: [PATCH] 7019557: SharedMiscDataSize too small for 64-bit fastdebug JVM Increase default SharedMiscDataSize Reviewed-by: dcubed, kamg --- hotspot/src/share/vm/runtime/globals.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hotspot/src/share/vm/runtime/globals.hpp b/hotspot/src/share/vm/runtime/globals.hpp index e900b6ce8e2..b67c54cd433 100644 --- a/hotspot/src/share/vm/runtime/globals.hpp +++ b/hotspot/src/share/vm/runtime/globals.hpp @@ -3692,7 +3692,7 @@ class CommandLineFlags { product(uintx, SharedReadOnlySize, 10*M, \ "Size of read-only space in permanent generation (in bytes)") \ \ - product(uintx, SharedMiscDataSize, 4*M, \ + product(uintx, SharedMiscDataSize, NOT_LP64(4*M) LP64_ONLY(5*M), \ "Size of the shared data area adjacent to the heap (in bytes)") \ \ product(uintx, SharedMiscCodeSize, 4*M, \