comparison src/share/vm/classfile/classLoaderExt.hpp @ 20667:887a7cedb892

8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI Summary: Added API to track bootclasspath modification Reviewed-by: jiangli, dholmes, minqi
author iklam
date Tue, 18 Nov 2014 03:38:50 -0800
parents 4cb90023bf2b
children
comparison
equal deleted inserted replaced
20666:bee8095780db 20667:887a7cedb892
61 61
62 static void add_class_path_entry(const char* path, bool check_for_duplicates, 62 static void add_class_path_entry(const char* path, bool check_for_duplicates,
63 ClassPathEntry* new_entry) { 63 ClassPathEntry* new_entry) {
64 ClassLoader::add_to_list(new_entry); 64 ClassLoader::add_to_list(new_entry);
65 } 65 }
66 static void append_boot_classpath(ClassPathEntry* new_entry) {
67 ClassLoader::add_to_list(new_entry);
68 }
66 static void setup_search_paths() {} 69 static void setup_search_paths() {}
67 70
68 static void init_lookup_cache(TRAPS) {} 71 static void init_lookup_cache(TRAPS) {}
69 static void copy_lookup_cache_to_archive(char** top, char* end) {} 72 static void copy_lookup_cache_to_archive(char** top, char* end) {}
70 static char* restore_lookup_cache_from_archive(char* buffer) {return buffer;} 73 static char* restore_lookup_cache_from_archive(char* buffer) {return buffer;}