summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-07-14 23:06:44 +0000
committerLennart Poettering <lennart@poettering.net>2006-07-14 23:06:44 +0000
commitb8f9ae00f341c936eb27dd51d307f99682a09685 (patch)
tree69bcdae94f713ec58f64ec19b4be1a09197a0816
parentfc544a63de7496ab6ea23cce65599c086d730256 (diff)
remove checking for SIGPIPE blocking from client code. Because we use
send(,,MSG_NOSIGNAL) for most socket writes now the reason for SIGPIPE blocking is no longer give. We keep this check for the server side however, because pipes create SIGPIPE too but cannot be used with MSG_NOSIGNAL. Some modules use pipes for internal and external communication. git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1086 fefdeb5f-60dc-0310-8127-8f9354f1896f
-rw-r--r--src/pulse/context.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/pulse/context.c b/src/pulse/context.c
index 648024c3..5724765b 100644
--- a/src/pulse/context.c
+++ b/src/pulse/context.c
@@ -132,10 +132,6 @@ pa_context *pa_context_new(pa_mainloop_api *mainloop, const char *name) {
memset(&c->spawn_api, 0, sizeof(c->spawn_api));
c->do_autospawn = 0;
-#ifdef SIGPIPE
- pa_check_signal_is_blocked(SIGPIPE);
-#endif
-
c->conf = pa_client_conf_new();
pa_client_conf_load(c->conf, NULL);
#ifdef HAVE_X11