comparison src/os/solaris/vm/os_solaris.cpp @ 8066:b5e3ec9c69fa

8007779: os::die() on solaris should generate core file Reviewed-by: dholmes, rbackman
author sla
date Mon, 18 Feb 2013 12:49:53 +0100
parents 22ba8c8ce6a6
children 5cd2fac2ae70
comparison
equal deleted inserted replaced
8065:f82bcc429e8c 8066:b5e3ec9c69fa
1863 ::exit(1); 1863 ::exit(1);
1864 } 1864 }
1865 1865
1866 // Die immediately, no exit hook, no abort hook, no cleanup. 1866 // Die immediately, no exit hook, no abort hook, no cleanup.
1867 void os::die() { 1867 void os::die() {
1868 _exit(-1); 1868 ::abort(); // dump core (for debugging)
1869 } 1869 }
1870 1870
1871 // unused 1871 // unused
1872 void os::set_error_file(const char *logfile) {} 1872 void os::set_error_file(const char *logfile) {}
1873 1873