-
Bug
-
Resolution: Fixed
-
P4
-
18
-
b20
Currently the URLClassLoaderTable in unregisteredClasses.cpp is defined as follows:
class URLClassLoaderTable : public ResourceHashtable<
Symbol*, Handle,
137, // prime number
ResourceObj::C_HEAP> {};
It should store OopHandle instead of Handle to avoid running into the same issue as inJDK-8274753.
class URLClassLoaderTable : public ResourceHashtable<
Symbol*, Handle,
137, // prime number
ResourceObj::C_HEAP> {};
It should store OopHandle instead of Handle to avoid running into the same issue as in
- relates to
-
JDK-8261941 Use ClassLoader for unregistered classes during -Xshare:dump
-
- Resolved
-