8153498: Update the PostVMInitHook mechanism to use an internal package in the base module

Reviewed-by: alanb, lfoltan
This commit is contained in:
Chris Hegarty 2016-04-09 23:03:25 +01:00
parent 50d3fe6b48
commit 39e36bdf78
2 changed files with 2 additions and 2 deletions

View file

@ -1051,7 +1051,7 @@ static const char* get_java_runtime_version(TRAPS) {
// General purpose hook into Java code, run once when the VM is initialized.
// The Java library method itself may be changed independently from the VM.
static void call_postVMInitHook(TRAPS) {
Klass* k = SystemDictionary::resolve_or_null(vmSymbols::sun_misc_PostVMInitHook(), THREAD);
Klass* k = SystemDictionary::resolve_or_null(vmSymbols::jdk_internal_vm_PostVMInitHook(), THREAD);
instanceKlassHandle klass (THREAD, k);
if (klass.not_null()) {
JavaValue result(T_VOID);