jdk/src/share/javavm/export/jvm.h
changeset 3833 b666ed188811
parent 1090 c5805b1672a6
child 5506 202f599c92aa
--- a/jdk/src/share/javavm/export/jvm.h	Wed Aug 05 13:17:30 2009 -0600
+++ b/jdk/src/share/javavm/export/jvm.h	Thu Aug 06 11:25:12 2009 -0700
@@ -375,6 +375,12 @@
 JVM_ResolveClass(JNIEnv *env, jclass cls);
 
 /*
+ * Find a class from a boot class loader. Returns NULL if class not found.
+ */
+JNIEXPORT jclass JNICALL
+JVM_FindClassFromBootLoader(JNIEnv *env, const char *name);
+
+/*
  * Find a class from a given class loader. Throw ClassNotFoundException
  * or NoClassDefFoundError depending on the value of the last
  * argument.