summaryrefslogtreecommitdiffstats
path: root/pulse
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-08-21 23:32:13 +0200
committerLennart Poettering <lennart@poettering.net>2008-09-03 20:25:35 +0200
commit10aac327d94ed32e05154d67f3a6df0529cb37dd (patch)
tree7f631f1e4cd1e251eda7660db421298cb63bd89d /pulse
parent2c3cc4cca7d829c90b44f1bd8b5392e763b9cea1 (diff)
Don't modify the SIGPIPE handler
Since quite a while (2 years or so) PulsAudio doesn't require SIGPIPE anymore to be set to SIG_IGN. Since resetting this was incredibly ugly in the first place it is now time to get rid of this.
Diffstat (limited to 'pulse')
-rw-r--r--pulse/pulse.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/pulse/pulse.c b/pulse/pulse.c
index 81ea443..53a25bd 100644
--- a/pulse/pulse.c
+++ b/pulse/pulse.c
@@ -146,8 +146,6 @@ snd_pulse_t *pulse_new(void)
fcntl(fd[0], F_SETFL, O_NONBLOCK);
fcntl(fd[1], F_SETFL, O_NONBLOCK);
- signal(SIGPIPE, SIG_IGN); /* Yes, ugly as hell */
-
p->mainloop = pa_threaded_mainloop_new();
assert(p->mainloop);