8006691: Remove jvm_version_info.is_kernel_jvm field
authorzgu
Fri, 08 Feb 2013 16:31:48 -0500
changeset 15598 8f4707a58a53
parent 15592 4eec33e264bb
child 15599 5522c001696a
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
hotspot/src/share/vm/prims/jvm.cpp
hotspot/src/share/vm/prims/jvm.h
--- a/hotspot/src/share/vm/prims/jvm.cpp	Fri Feb 08 10:42:24 2013 +0100
+++ b/hotspot/src/share/vm/prims/jvm.cpp	Fri Feb 08 16:31:48 2013 -0500
@@ -4528,6 +4528,5 @@
   // consider to expose this new capability in the sun.rt.jvmCapabilities jvmstat
   // counter defined in runtimeService.cpp.
   info->is_attachable = AttachListener::is_attach_supported();
-  info->is_kernel_jvm = 0; // false;
 }
 JVM_END
--- a/hotspot/src/share/vm/prims/jvm.h	Fri Feb 08 10:42:24 2013 +0100
+++ b/hotspot/src/share/vm/prims/jvm.h	Fri Feb 08 16:31:48 2013 -0500
@@ -1559,8 +1559,7 @@
      * the new bit is also added in the main/baseline.
      */
     unsigned int is_attachable : 1;
-    unsigned int is_kernel_jvm : 1;
-    unsigned int : 30;
+    unsigned int : 31;
     unsigned int : 32;
     unsigned int : 32;
 } jvm_version_info;