aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm/memory/collectorPolicy.cpp
diff options
context:
space:
mode:
authorphh <none@none>2009-10-28 16:25:51 -0400
committerphh <none@none>2009-10-28 16:25:51 -0400
commit53f3decef00ad66714bbdb6a31d71a0e2eb50174 (patch)
tree8c689a9a58d49981e94647c7bbcfd780f5fa7a20 /src/share/vm/memory/collectorPolicy.cpp
parent19d46c801fc3ca633cf42cc2ea4b36e64668bf1b (diff)
6887571: Increase default heap config sizes
Summary: Apply modification of existing server heap size ergo to all collectors except CMS. Reviewed-by: jmasa, ysr, xlu
Diffstat (limited to 'src/share/vm/memory/collectorPolicy.cpp')
-rw-r--r--src/share/vm/memory/collectorPolicy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/vm/memory/collectorPolicy.cpp b/src/share/vm/memory/collectorPolicy.cpp
index 3f885d9ec..ebb886fba 100644
--- a/src/share/vm/memory/collectorPolicy.cpp
+++ b/src/share/vm/memory/collectorPolicy.cpp
@@ -55,7 +55,7 @@ void CollectorPolicy::initialize_flags() {
void CollectorPolicy::initialize_size_info() {
// User inputs from -mx and ms are aligned
- set_initial_heap_byte_size(Arguments::initial_heap_size());
+ set_initial_heap_byte_size(InitialHeapSize);
if (initial_heap_byte_size() == 0) {
set_initial_heap_byte_size(NewSize + OldSize);
}