[pulseaudio-commits] r1086 - /trunk/src/pulse/context.c

svnmailer-noreply at 0pointer.de svnmailer-noreply at 0pointer.de
Fri Jul 14 16:06:44 PDT 2006


Author: lennart
Date: Sat Jul 15 01:06:44 2006
New Revision: 1086

URL: http://0pointer.de/cgi-bin/viewcvs.cgi?rev=1086&root=pulseaudio&view=rev
Log:
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.


Modified:
    trunk/src/pulse/context.c

Modified: trunk/src/pulse/context.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/pulse/context.c?rev=1086&root=pulseaudio&r1=1085&r2=1086&view=diff
==============================================================================
--- trunk/src/pulse/context.c (original)
+++ trunk/src/pulse/context.c Sat Jul 15 01:06:44 2006
@@ -132,10 +132,6 @@
     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




More information about the pulseaudio-commits mailing list