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:
Keith McGuigan 2011-02-08 17:20:45 -05:00
parent 2fcd065a0d
commit 9acb43fa6d
23 changed files with 518 additions and 165 deletions

View file

@ -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) |