hotspot/src/share/vm/runtime/arguments.hpp
changeset 22551 9bf46d16dcc6
parent 20288 e2d549f40de9
child 22555 ea32f6c51d08
equal deleted inserted replaced
22550:820966182ab9 22551:9bf46d16dcc6
   442   static jint adjust_after_os();
   442   static jint adjust_after_os();
   443   // Check for consistency in the selection of the garbage collector.
   443   // Check for consistency in the selection of the garbage collector.
   444   static bool check_gc_consistency();
   444   static bool check_gc_consistency();
   445   static void check_deprecated_gcs();
   445   static void check_deprecated_gcs();
   446   static void check_deprecated_gc_flags();
   446   static void check_deprecated_gc_flags();
   447   // Check consistecy or otherwise of VM argument settings
   447   // Check consistency or otherwise of VM argument settings
   448   static bool check_vm_args_consistency();
   448   static bool check_vm_args_consistency();
   449   // Check stack pages settings
   449   // Check stack pages settings
   450   static bool check_stack_pages();
   450   static bool check_stack_pages();
   451   // Used by os_solaris
   451   // Used by os_solaris
   452   static bool process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized);
   452   static bool process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized);
   492   static const char* gc_log_filename()      { return _gc_log_filename; }
   492   static const char* gc_log_filename()      { return _gc_log_filename; }
   493 
   493 
   494   // -Xprof
   494   // -Xprof
   495   static bool has_profile()                 { return _has_profile; }
   495   static bool has_profile()                 { return _has_profile; }
   496 
   496 
   497   // -Xms, -Xmx
   497   // -Xms
   498   static uintx min_heap_size()              { return _min_heap_size; }
   498   static uintx min_heap_size()              { return _min_heap_size; }
   499   static void  set_min_heap_size(uintx v)   { _min_heap_size = v;  }
   499   static void  set_min_heap_size(uintx v)   { _min_heap_size = v;  }
   500 
   500 
   501   // -Xrun
   501   // -Xrun
   502   static AgentLibrary* libraries()          { return _libraryList.first(); }
   502   static AgentLibrary* libraries()          { return _libraryList.first(); }