diff 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
line wrap: on
line diff
--- a/src/share/vm/classfile/classLoaderExt.hpp	Thu Nov 20 11:06:26 2014 +0100
+++ b/src/share/vm/classfile/classLoaderExt.hpp	Tue Nov 18 03:38:50 2014 -0800
@@ -63,6 +63,9 @@
                                    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() {}
 
   static void init_lookup_cache(TRAPS) {}