mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
7003401: Implement VM error-reporting functionality on erroneous termination
Add support for distribution-specific error reporting Reviewed-by: coleenp, phh, jcoomes, ohair
This commit is contained in:
parent
2fcd065a0d
commit
9acb43fa6d
23 changed files with 518 additions and 165 deletions
|
@ -245,6 +245,10 @@ const char* Abstract_VM_Version::internal_vm_info_string() {
|
|||
" by " XSTR(HOTSPOT_BUILD_USER) " with " HOTSPOT_BUILD_COMPILER;
|
||||
}
|
||||
|
||||
const char *Abstract_VM_Version::vm_build_user() {
|
||||
return HOTSPOT_BUILD_USER;
|
||||
}
|
||||
|
||||
unsigned int Abstract_VM_Version::jvm_version() {
|
||||
return ((Abstract_VM_Version::vm_major_version() & 0xFF) << 24) |
|
||||
((Abstract_VM_Version::vm_minor_version() & 0xFF) << 16) |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue