< prev index next >

src/share/vm/utilities/vmError.cpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2003, 2014, 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2003, 2015, 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 1011,1021 **** #endif out.print_raw ("\""); out.print_raw (cmd); out.print_raw_cr("\" ..."); ! os::fork_and_exec(cmd); } // done with OnError OnError = NULL; } --- 1011,1023 ---- #endif out.print_raw ("\""); out.print_raw (cmd); out.print_raw_cr("\" ..."); ! if (os::fork_and_exec(cmd) < 0) { ! out.print_cr("os::fork_and_exec failed: %s", strerror(errno)); ! } } // done with OnError OnError = NULL; }
*** 1096,1106 **** #elif defined(SOLARIS) tty->print ("/usr/bin/sh -c "); #endif tty->print_cr("\"%s\"...", cmd); ! os::fork_and_exec(cmd); } } void VMError::report_java_out_of_memory() { if (OnOutOfMemoryError && OnOutOfMemoryError[0]) { --- 1098,1110 ---- #elif defined(SOLARIS) tty->print ("/usr/bin/sh -c "); #endif tty->print_cr("\"%s\"...", cmd); ! if (os::fork_and_exec(cmd) < 0) { ! tty->print_cr("os::fork_and_exec failed: %s", strerror(errno)); ! } } } void VMError::report_java_out_of_memory() { if (OnOutOfMemoryError && OnOutOfMemoryError[0]) {
< prev index next >