aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm/services/management.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/services/management.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/services/management.cpp')
-rw-r--r--src/share/vm/services/management.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/vm/services/management.cpp b/src/share/vm/services/management.cpp
index 669afbaea..ee681b171 100644
--- a/src/share/vm/services/management.cpp
+++ b/src/share/vm/services/management.cpp
@@ -790,7 +790,7 @@ JVM_ENTRY(jobject, jmm_GetMemoryUsage(JNIEnv* env, jboolean heap))
assert(!has_undefined_init_size, "Undefined init size");
assert(!has_undefined_max_size, "Undefined max size");
- MemoryUsage usage((heap ? Arguments::initial_heap_size() : total_init),
+ MemoryUsage usage((heap ? InitialHeapSize : total_init),
total_used,
total_committed,
(heap ? Universe::heap()->max_capacity() : total_max));