diff -r a7c0f60a1294 -r 294e48b4f704 hotspot/src/os/linux/vm/os_linux.cpp --- a/hotspot/src/os/linux/vm/os_linux.cpp Mon Sep 28 15:05:02 2015 +0200 +++ b/hotspot/src/os/linux/vm/os_linux.cpp Tue Sep 29 11:02:08 2015 +0200 @@ -2680,7 +2680,7 @@ if (err != 0) { // the caller wants all commit errors to exit with the specified mesg: warn_fail_commit_memory(addr, size, exec, err); - vm_exit_out_of_memory(size, OOM_MMAP_ERROR, mesg); + vm_exit_out_of_memory(size, OOM_MMAP_ERROR, "%s", mesg); } } @@ -2716,7 +2716,7 @@ if (err != 0) { // the caller wants all commit errors to exit with the specified mesg: warn_fail_commit_memory(addr, size, alignment_hint, exec, err); - vm_exit_out_of_memory(size, OOM_MMAP_ERROR, mesg); + vm_exit_out_of_memory(size, OOM_MMAP_ERROR, "%s", mesg); } } @@ -4278,8 +4278,8 @@ // libjsig also interposes the sigaction() call below and saves the // old sigaction on it own. } else { - fatal(err_msg("Encountered unexpected pre-existing sigaction handler " - "%#lx for signal %d.", (long)oldhand, sig)); + fatal("Encountered unexpected pre-existing sigaction handler " + "%#lx for signal %d.", (long)oldhand, sig); } } @@ -4611,8 +4611,8 @@ Linux::set_page_size(sysconf(_SC_PAGESIZE)); if (Linux::page_size() == -1) { - fatal(err_msg("os_linux.cpp: os::init: sysconf failed (%s)", - strerror(errno))); + fatal("os_linux.cpp: os::init: sysconf failed (%s)", + strerror(errno)); } init_page_sizes((size_t) Linux::page_size()); @@ -4628,7 +4628,7 @@ int status; pthread_condattr_t* _condattr = os::Linux::condAttr(); if ((status = pthread_condattr_init(_condattr)) != 0) { - fatal(err_msg("pthread_condattr_init: %s", strerror(status))); + fatal("pthread_condattr_init: %s", strerror(status)); } // Only set the clock if CLOCK_MONOTONIC is available if (os::supports_monotonic_clock()) { @@ -4637,7 +4637,7 @@ warning("Unable to use monotonic clock with relative timed-waits" \ " - changes to the time-of-day clock may have adverse affects"); } else { - fatal(err_msg("pthread_condattr_setclock: %s", strerror(status))); + fatal("pthread_condattr_setclock: %s", strerror(status)); } } }