8000692: Remove old KERNEL code

Removed depreciated kernel VM source code from hotspot VM

Reviewed-by: dholmes, acorn
This commit is contained in:
Zhengyu Gu 2013-01-25 10:04:08 -05:00
parent 19303cc71d
commit fc0efc91c8
33 changed files with 40 additions and 430 deletions

View file

@ -4519,10 +4519,6 @@ JVM_ENTRY(void, JVM_GetVersionInfo(JNIEnv* env, jvm_version_info* info, size_t i
// consider to expose this new capability in the sun.rt.jvmCapabilities jvmstat
// counter defined in runtimeService.cpp.
info->is_attachable = AttachListener::is_attach_supported();
#ifdef KERNEL
info->is_kernel_jvm = 1; // true;
#else // KERNEL
info->is_kernel_jvm = 0; // false;
#endif // KERNEL
}
JVM_END