- Abort on CPU time comsumption, so we can get core

This commit is contained in:
Lubomir Rintel 2008-03-27 18:30:27 +00:00
parent b56d17ac9f
commit b0bdd6602b
2 changed files with 21 additions and 1 deletions

View File

@ -0,0 +1,15 @@
Abort instead of cleanly exiting, so we can obtain a core dump and find out
what was wrong. (#438594)
diff -urp pulseaudio-0.9.8.orig/src/daemon/cpulimit.c pulseaudio-0.9.8/src/daemon/cpulimit.c
--- pulseaudio-0.9.8.orig/src/daemon/cpulimit.c 2007-11-01 02:42:37.000000000 +0100
+++ pulseaudio-0.9.8/src/daemon/cpulimit.c 2008-03-27 19:26:27.000000000 +0100
@@ -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;

View File

@ -3,7 +3,7 @@
Name: pulseaudio
Summary: Improved Linux sound server
Version: 0.9.8
Release: 12%{?dist}
Release: 13%{?dist}
License: GPLv2+
Group: System Environment/Daemons
Source0: http://0pointer.de/lennart/projects/pulseaudio/pulseaudio-%{version}.tar.gz
@ -29,6 +29,7 @@ Patch5: pulseaudio-0.9.8-droproot.patch
Patch6: pulseaudio-0.9.8-multilib.patch
Patch7: pulseaudio-0.9.8-ltdl-assert.patch
Patch8: pulseaudio-0.9.8-disable-realtime.patch
Patch9: pulseaudio-0.9.8-cputime-abort.patch
%description
PulseAudio is a sound server for Linux and other Unix like operating
@ -172,6 +173,7 @@ This package contains command line utilities for the PulseAudio sound server.
%patch6 -p1 -b .multilib
%patch7 -p0 -b .ltdl-assert
%patch8 -p1 -b .realtime
%patch9 -p1 -b .cputime-abort
%build
%configure --disable-ltdl-install --disable-static --disable-rpath --with-system-user=pulse --with-system-group=pulse --with-realtime-group=pulse-rt --with-access-group=pulse-access
@ -397,6 +399,9 @@ fi
%{_mandir}/man1/pax11publish.1.gz
%changelog
* Thu Mar 27 2008 Lubomir Kundrak <lkundrak@redhat.com> 0.9.8-13
- Abort on CPU time comsumption, so we can get core
* Thu Mar 13 2008 Lubomir Kundrak <lkundrak@redhat.com> 0.9.8-12
- Own /usr/libexec/pulse (#437228)