mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-24 04:54:40 +02:00
8085822: JEP 223: New Version-String Scheme (initial integration)
Co-authored-by: Alejandro E Murillo <alejandro.murillo@oracle.com> Reviewed-by: erikj, dcubed, dholmes, alanb
This commit is contained in:
parent
63dc40184a
commit
bd5a1079fe
37 changed files with 577 additions and 790 deletions
|
@ -45,7 +45,7 @@ class Abstract_VM_Version: AllStatic {
|
|||
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;
|
||||
|
@ -70,7 +70,7 @@ class Abstract_VM_Version: AllStatic {
|
|||
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue