hotspot/src/share/vm/runtime/arguments.cpp
changeset 11442 770f7b89bb6b
parent 11426 7dd181af6a26
parent 11441 a89f443814cd
child 11448 bc6ee0f54f87
child 11585 3101e13e34d9
--- a/hotspot/src/share/vm/runtime/arguments.cpp	Fri Jan 06 20:09:20 2012 -0800
+++ b/hotspot/src/share/vm/runtime/arguments.cpp	Tue Jan 10 15:47:19 2012 -0500
@@ -2330,7 +2330,7 @@
 #ifndef PRODUCT
     // -Xprintflags
     } else if (match_option(option, "-Xprintflags", &tail)) {
-      CommandLineFlags::printFlags();
+      CommandLineFlags::printFlags(tty, false);
       vm_exit(0);
 #endif
     // -D
@@ -2978,13 +2978,13 @@
       IgnoreUnrecognizedVMOptions = false;
     }
     if (match_option(option, "-XX:+PrintFlagsInitial", &tail)) {
-      CommandLineFlags::printFlags();
+      CommandLineFlags::printFlags(tty, false);
       vm_exit(0);
     }
 
 #ifndef PRODUCT
     if (match_option(option, "-XX:+PrintFlagsWithComments", &tail)) {
-      CommandLineFlags::printFlags(true);
+      CommandLineFlags::printFlags(tty, true);
       vm_exit(0);
     }
 #endif
@@ -3177,7 +3177,7 @@
 #endif
 
   if (PrintCommandLineFlags) {
-    CommandLineFlags::printSetFlags();
+    CommandLineFlags::printSetFlags(tty);
   }
 
   // Apply CPU specific policy for the BiasedLocking