diff -r a7c0f60a1294 -r 294e48b4f704 hotspot/src/os_cpu/linux_x86/vm/os_linux_x86.cpp --- a/hotspot/src/os_cpu/linux_x86/vm/os_linux_x86.cpp Mon Sep 28 15:05:02 2015 +0200 +++ b/hotspot/src/os_cpu/linux_x86/vm/os_linux_x86.cpp Tue Sep 29 11:02:08 2015 +0200 @@ -542,8 +542,7 @@ sigaddset(&newset, sig); sigprocmask(SIG_UNBLOCK, &newset, NULL); - VMError err(t, sig, pc, info, ucVoid); - err.report_and_die(); + VMError::report_and_die(t, sig, pc, info, ucVoid); ShouldNotReachHere(); return true; // Mute compiler @@ -689,7 +688,7 @@ if (rslt == ENOMEM) { vm_exit_out_of_memory(0, OOM_MMAP_ERROR, "pthread_getattr_np"); } else { - fatal(err_msg("pthread_getattr_np failed with errno = %d", rslt)); + fatal("pthread_getattr_np failed with errno = %d", rslt); } }