src/hotspot/share/runtime/os.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/hotspot/share/runtime/os.hpp	Fri Oct 20 09:45:22 2017
--- new/src/hotspot/share/runtime/os.hpp	Fri Oct 20 09:45:21 2017

*** 140,151 **** --- 140,159 ---- // Get summary strings for system information in buffer provided static void get_summary_cpu_info(char* buf, size_t buflen); static void get_summary_os_info(char* buf, size_t buflen); static void initialize_initial_active_processor_count(); + + LINUX_ONLY(static void pd_init_container_support();) + public: static void init(void); // Called before command line parsing + + static void init_container_support() { // Called during command line parsing. + LINUX_ONLY(pd_init_container_support();) + } + static void init_before_ergo(void); // Called after command line parsing // before VM ergonomics processing. static jint init_2(void); // Called after command line parsing // and VM ergonomics processing static void init_globals(void) { // Called from init_globals() in init.cpp

src/hotspot/share/runtime/os.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File