mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
8188052: JNI FindClass needs to specify the class loading context used for library lifecycle hooks
Reviewed-by: alanb, coleenp, dholmes
This commit is contained in:
parent
42a29333b9
commit
4c1297b778
8 changed files with 27 additions and 20 deletions
|
@ -2381,7 +2381,7 @@ public abstract class ClassLoader {
|
|||
private int jniVersion;
|
||||
// the class from which the library is loaded, also indicates
|
||||
// the loader this native library belongs.
|
||||
private final Class<?> fromClass;
|
||||
private Class<?> fromClass;
|
||||
// the canonicalized name of the native library.
|
||||
// or static library name
|
||||
String name;
|
||||
|
@ -2404,6 +2404,8 @@ public abstract class ClassLoader {
|
|||
protected void finalize() {
|
||||
synchronized (loadedLibraryNames) {
|
||||
if (fromClass.getClassLoader() != null && loaded) {
|
||||
this.fromClass = null; // no context when unloaded
|
||||
|
||||
/* remove the native library name */
|
||||
int size = loadedLibraryNames.size();
|
||||
for (int i = 0; i < size; i++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue