mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-24 04:54:40 +02:00
Merge
This commit is contained in:
commit
8411cfaf4e
3 changed files with 25 additions and 8 deletions
|
@ -240,9 +240,14 @@ const char* Abstract_VM_Version::internal_vm_info_string() {
|
|||
#define FLOAT_ARCH_STR XSTR(FLOAT_ARCH)
|
||||
#endif
|
||||
|
||||
return VMNAME " (" VM_RELEASE ") for " OS "-" CPU FLOAT_ARCH_STR
|
||||
" JRE (" VERSION_STRING "), built on " __DATE__ " " __TIME__
|
||||
" by " XSTR(HOTSPOT_BUILD_USER) " with " HOTSPOT_BUILD_COMPILER;
|
||||
#define INTERNAL_VERSION_SUFFIX VM_RELEASE ")" \
|
||||
" for " OS "-" CPU FLOAT_ARCH_STR \
|
||||
" JRE (" VERSION_STRING "), built on " __DATE__ " " __TIME__ \
|
||||
" by " XSTR(HOTSPOT_BUILD_USER) " with " HOTSPOT_BUILD_COMPILER
|
||||
|
||||
return strcmp(DEBUG_LEVEL, "release") == 0
|
||||
? VMNAME " (" INTERNAL_VERSION_SUFFIX
|
||||
: VMNAME " (" DEBUG_LEVEL " " INTERNAL_VERSION_SUFFIX;
|
||||
}
|
||||
|
||||
const char *Abstract_VM_Version::vm_build_user() {
|
||||
|
@ -253,6 +258,11 @@ const char *Abstract_VM_Version::jdk_debug_level() {
|
|||
return DEBUG_LEVEL;
|
||||
}
|
||||
|
||||
const char *Abstract_VM_Version::printable_jdk_debug_level() {
|
||||
// Debug level is not printed for "release" builds
|
||||
return strcmp(DEBUG_LEVEL, "release") == 0 ? "" : DEBUG_LEVEL " ";
|
||||
}
|
||||
|
||||
unsigned int Abstract_VM_Version::jvm_version() {
|
||||
return ((Abstract_VM_Version::vm_major_version() & 0xFF) << 24) |
|
||||
((Abstract_VM_Version::vm_minor_version() & 0xFF) << 16) |
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -106,6 +106,7 @@ class Abstract_VM_Version: AllStatic {
|
|||
static const char* internal_vm_info_string();
|
||||
static const char* jre_release_version();
|
||||
static const char* jdk_debug_level();
|
||||
static const char* printable_jdk_debug_level();
|
||||
|
||||
static uint64_t features() {
|
||||
return _features;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue