8064701: Some CDS optimizations should be disabled if bootclasspath is modified by JVMTI

Added API to track bootclasspath modification

Reviewed-by: jiangli, dholmes, minqi
This commit is contained in:
Ioi Lam 2014-11-18 03:38:50 -08:00
parent ae592ef688
commit ef64d5393d
4 changed files with 39 additions and 1 deletions

View file

@ -63,6 +63,9 @@ public:
ClassPathEntry* new_entry) {
ClassLoader::add_to_list(new_entry);
}
static void append_boot_classpath(ClassPathEntry* new_entry) {
ClassLoader::add_to_list(new_entry);
}
static void setup_search_paths() {}
};