8007779: os::die() on solaris should generate core file

Reviewed-by: dholmes, rbackman
This commit is contained in:
Staffan Larsen 2013-02-18 12:49:53 +01:00
parent 5265514689
commit 1439d121c2

View File

@ -1865,7 +1865,7 @@ void os::abort(bool dump_core) {
// Die immediately, no exit hook, no abort hook, no cleanup.
void os::die() {
_exit(-1);
::abort(); // dump core (for debugging)
}
// unused