hotspot/src/os/solaris/launcher/java.h
changeset 1420 d116726a4ca4
parent 1 489c9b5090e2
child 1623 a0dd9009e992
--- a/hotspot/src/os/solaris/launcher/java.h	Mon Oct 06 11:39:34 2008 -0700
+++ b/hotspot/src/os/solaris/launcher/java.h	Wed Oct 08 08:10:51 2008 -0700
@@ -101,4 +101,15 @@
  */
 extern jboolean _launcher_debug;
 
+/*
+ * This allows for finding classes from the VM's bootstrap class loader
+ * directly, FindClass uses the application class loader internally, this will
+ * cause unnecessary searching of the classpath for the required classes.
+ */
+typedef jclass (JNICALL FindClassFromBootLoader_t(JNIEnv *env,
+                                                const char *name,
+                                                jboolean throwError));
+
+jclass FindBootStrapClass(JNIEnv *env, const char *classname);
+
 #endif /* _JAVA_H_ */