hotspot/src/share/vm/runtime/globals.cpp
changeset 4579 62478db2dc78
parent 4450 6d700b859b3e
child 5547 f4b087cbb361
equal deleted inserted replaced
4573:6358f8c9ed3b 4579:62478db2dc78
   466 
   466 
   467 void CommandLineFlags::verify() {
   467 void CommandLineFlags::verify() {
   468   assert(Arguments::check_vm_args_consistency(), "Some flag settings conflict");
   468   assert(Arguments::check_vm_args_consistency(), "Some flag settings conflict");
   469 }
   469 }
   470 
   470 
       
   471 #endif // PRODUCT
       
   472 
   471 void CommandLineFlags::printFlags() {
   473 void CommandLineFlags::printFlags() {
   472   // Print the flags sorted by name
   474   // Print the flags sorted by name
   473   // note: this method is called before the thread structure is in place
   475   // note: this method is called before the thread structure is in place
   474   //       which means resource allocation cannot be used.
   476   //       which means resource allocation cannot be used.
   475 
   477 
   491       array[i]->print_on(tty);
   493       array[i]->print_on(tty);
   492     }
   494     }
   493   }
   495   }
   494   FREE_C_HEAP_ARRAY(Flag*, array);
   496   FREE_C_HEAP_ARRAY(Flag*, array);
   495 }
   497 }
   496 
       
   497 #endif