hotspot/src/share/vm/runtime/arguments.cpp
changeset 2741 34e2a243d69a
parent 2570 ecc7862946d4
child 3262 30d1c247fc25
--- a/hotspot/src/share/vm/runtime/arguments.cpp	Mon May 04 02:57:39 2009 -0700
+++ b/hotspot/src/share/vm/runtime/arguments.cpp	Thu Apr 30 15:07:53 2009 -0700
@@ -1288,10 +1288,14 @@
                      Abstract_VM_Version::parallel_worker_threads());
   if (ParallelGCThreads == 0) {
     FLAG_SET_DEFAULT(ParallelGCThreads,
-                     Abstract_VM_Version::parallel_worker_threads
-());
+                     Abstract_VM_Version::parallel_worker_threads());
   }
   no_shared_spaces();
+
+  // Set the maximum pause time goal to be a reasonable default.
+  if (FLAG_IS_DEFAULT(MaxGCPauseMillis)) {
+    FLAG_SET_DEFAULT(MaxGCPauseMillis, 200);
+  }
 }
 
 void Arguments::set_server_heap_size() {