Abort instead of cleanly exiting, so we can obtain a core dump and find out

what was wrong. (rhbz #438594, Patch from Lubomir Kundrak)



git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@2128 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2008-03-27 18:39:59 +00:00
parent 7262e2fc35
commit c5f78bfde9

View file

@ -151,7 +151,7 @@ static void signal_handler(int sig) {
} else if (phase == PHASE_SOFT) {
write_err("Hard CPU time limit exhausted, terminating forcibly.\n");
_exit(1); /* Forced exit */
abort(); /* Forced exit */
}
errno = saved_errno;