src/share/vm/runtime/arguments.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File bug_8068687_metaindex.2 Cdiff src/share/vm/runtime/arguments.hpp

src/share/vm/runtime/arguments.hpp

Print this page

        

*** 258,271 **** static SystemProperty *_java_library_path; static SystemProperty *_java_home; static SystemProperty *_java_class_path; static SystemProperty *_sun_boot_class_path; - // Meta-index for knowing what packages are in the boot class path - static char* _meta_index_path; - static char* _meta_index_dir; - // temporary: to emit warning if the default ext dirs are not empty. // remove this variable when the warning is no longer needed. static char* _ext_dirs; // java.vendor.url.bug, bug reporting URL for fatal errors. --- 258,267 ----
*** 598,617 **** static void set_java_home(char *value) { _java_home->set_value(value); } static void set_library_path(char *value) { _java_library_path->set_value(value); } static void set_ext_dirs(char *value) { _ext_dirs = os::strdup_check_oom(value); } static void set_sysclasspath(char *value) { _sun_boot_class_path->set_value(value); } static void append_sysclasspath(const char *value) { _sun_boot_class_path->append_value(value); } - static void set_meta_index_path(char* meta_index_path, char* meta_index_dir) { - _meta_index_path = meta_index_path; - _meta_index_dir = meta_index_dir; - } static char* get_java_home() { return _java_home->value(); } static char* get_dll_dir() { return _sun_boot_library_path->value(); } static char* get_sysclasspath() { return _sun_boot_class_path->value(); } - static char* get_meta_index_path() { return _meta_index_path; } - static char* get_meta_index_dir() { return _meta_index_dir; } static char* get_ext_dirs() { return _ext_dirs; } static char* get_appclasspath() { return _java_class_path->value(); } static void fix_appclasspath(); --- 594,607 ----
src/share/vm/runtime/arguments.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File