src/share/vm/runtime/os.hpp

changeset 9413
5aa3d728164a
parent 8661
27ae9bbef86a
child 9417
65409bcab2ad
     1.1 --- a/src/share/vm/runtime/os.hpp	Tue Jul 10 18:31:51 2018 +0100
     1.2 +++ b/src/share/vm/runtime/os.hpp	Fri Jul 06 18:50:13 2018 +0000
     1.3 @@ -152,8 +152,16 @@
     1.4    static size_t page_size_for_region(size_t region_size, size_t min_pages, bool must_be_aligned);
     1.5  
     1.6    static void initialize_initial_active_processor_count();
     1.7 +
     1.8 +  LINUX_ONLY(static void pd_init_container_support();)
     1.9 +
    1.10   public:
    1.11    static void init(void);                      // Called before command line parsing
    1.12 +
    1.13 +  static void init_container_support() {       // Called during command line parsing.
    1.14 +     LINUX_ONLY(pd_init_container_support();)
    1.15 +  }
    1.16 +
    1.17    static void init_before_ergo(void);          // Called after command line parsing
    1.18                                                 // before VM ergonomics processing.
    1.19    static jint init_2(void);                    // Called after command line parsing

mercurial