提交 88369f39 编写于 作者: Z zgu

8006691: Remove jvm_version_info.is_kernel_jvm field

Summary: Removed is_kernel_jvm from jvm_version_info as Kernel VM has been deprecated
Reviewed-by: mchung, coleenp
上级 9c2c1f0e
...@@ -4528,6 +4528,5 @@ JVM_ENTRY(void, JVM_GetVersionInfo(JNIEnv* env, jvm_version_info* info, size_t i ...@@ -4528,6 +4528,5 @@ 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 // consider to expose this new capability in the sun.rt.jvmCapabilities jvmstat
// counter defined in runtimeService.cpp. // counter defined in runtimeService.cpp.
info->is_attachable = AttachListener::is_attach_supported(); info->is_attachable = AttachListener::is_attach_supported();
info->is_kernel_jvm = 0; // false;
} }
JVM_END JVM_END
...@@ -1559,8 +1559,7 @@ typedef struct { ...@@ -1559,8 +1559,7 @@ typedef struct {
* the new bit is also added in the main/baseline. * the new bit is also added in the main/baseline.
*/ */
unsigned int is_attachable : 1; unsigned int is_attachable : 1;
unsigned int is_kernel_jvm : 1; unsigned int : 31;
unsigned int : 30;
unsigned int : 32; unsigned int : 32;
unsigned int : 32; unsigned int : 32;
} jvm_version_info; } jvm_version_info;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册