comparison src/os/solaris/launcher/java.h @ 388:f008d3631bd1

6755845: JVM_FindClassFromBoot triggers assertions Summary: Fixes assertions caused by one jvm_entry calling another, solved by refactoring code and modified gamma test. Reviewed-by: dholmes, xlu
author ksrini
date Wed, 08 Oct 2008 08:10:51 -0700
parents a61af66fc99e
children ad8c8ca4ab0f
comparison
equal deleted inserted replaced
387:fad66fdcb7fc 388:f008d3631bd1
99 /* 99 /*
100 * Make launcher spit debug output. 100 * Make launcher spit debug output.
101 */ 101 */
102 extern jboolean _launcher_debug; 102 extern jboolean _launcher_debug;
103 103
104 /*
105 * This allows for finding classes from the VM's bootstrap class loader
106 * directly, FindClass uses the application class loader internally, this will
107 * cause unnecessary searching of the classpath for the required classes.
108 */
109 typedef jclass (JNICALL FindClassFromBootLoader_t(JNIEnv *env,
110 const char *name,
111 jboolean throwError));
112
113 jclass FindBootStrapClass(JNIEnv *env, const char *classname);
114
104 #endif /* _JAVA_H_ */ 115 #endif /* _JAVA_H_ */