mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-24 04:54:40 +02:00
Merge
This commit is contained in:
commit
2d6f42d18c
513 changed files with 31554 additions and 2230 deletions
|
@ -389,6 +389,17 @@ JNIEXPORT jclass JNICALL
|
|||
JVM_FindClassFromClassLoader(JNIEnv *env, const char *name, jboolean init,
|
||||
jobject loader, jboolean throwError);
|
||||
|
||||
/*
|
||||
* Find a class from a boot class loader. Throw ClassNotFoundException
|
||||
* or NoClassDefFoundError depending on the value of the last
|
||||
* argument. This is the same as FindClassFromClassLoader but provided
|
||||
* as a convenience method exported correctly on all platforms for
|
||||
* JSR 277 launcher class loading.
|
||||
*/
|
||||
JNIEXPORT jclass JNICALL
|
||||
JVM_FindClassFromBootLoader(JNIEnv *env, const char *name,
|
||||
jboolean throwError);
|
||||
|
||||
/*
|
||||
* Find a class from a given class.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue