--- 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_ */