src/share/vm/runtime/init.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 8059557_rev2_to_rev3 Cdiff src/share/vm/runtime/init.cpp

src/share/vm/runtime/init.cpp

Print this page

        

*** 140,154 **** NMT_stack_walkable = true; #endif // INCLUDE_NMT // All the flags that get adjusted by VM_Version_init and os::init_2 // have been set so dump the flags now. ! if (PrintFlagsFinal) { ! CommandLineFlags::printFlags(tty, false); ! } ! if (PrintFlagsRanges) { ! CommandLineFlags::printFlags(tty, false, true); } return JNI_OK; } --- 140,151 ---- NMT_stack_walkable = true; #endif // INCLUDE_NMT // All the flags that get adjusted by VM_Version_init and os::init_2 // have been set so dump the flags now. ! if (PrintFlagsFinal || PrintFlagsRanges) { ! CommandLineFlags::printFlags(tty, false, PrintFlagsRanges); } return JNI_OK; }
src/share/vm/runtime/init.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File