< prev index next >

hotspot/src/share/vm/runtime/vm_version.hpp

Print this page

        

@@ -43,11 +43,11 @@
   static bool         _supports_atomic_getadd8;
   static unsigned int _logical_processors_per_package;
   static unsigned int _L1_data_cache_line_size;
   static int          _vm_major_version;
   static int          _vm_minor_version;
-  static int          _vm_micro_version;
+  static int          _vm_security_version;
   static int          _vm_build_number;
   static bool         _initialized;
   static unsigned int _parallel_worker_threads;
   static bool         _parallel_worker_threads_initialized;
   static int          _reserve_for_allocation_prefetch;

@@ -68,11 +68,11 @@
   static const char* vm_platform_string();
   static const char* vm_build_user();
 
   static int vm_major_version()               { assert(_initialized, "not initialized"); return _vm_major_version; }
   static int vm_minor_version()               { assert(_initialized, "not initialized"); return _vm_minor_version; }
-  static int vm_micro_version()               { assert(_initialized, "not initialized"); return _vm_micro_version; }
+  static int vm_security_version()            { assert(_initialized, "not initialized"); return _vm_security_version; }
   static int vm_build_number()                { assert(_initialized, "not initialized"); return _vm_build_number; }
 
   // Gets the jvm_version_info.jvm_version defined in jvm.h
   static unsigned int jvm_version();
 
< prev index next >