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

src/share/vm/runtime/init.cpp

Print this page

        

*** 27,36 **** --- 27,37 ---- #include "code/icBuffer.hpp" #include "gc/shared/collectedHeap.hpp" #include "interpreter/bytecodes.hpp" #include "memory/universe.hpp" #include "prims/methodHandles.hpp" + #include "runtime/globals.hpp" #include "runtime/handles.inline.hpp" #include "runtime/icache.hpp" #include "runtime/init.hpp" #include "runtime/safepoint.hpp" #include "runtime/sharedRuntime.hpp"
*** 139,150 **** 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); } 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