]> git.armaanb.net Git - dwm.git/commitdiff
applied Jukka's sigchld patch
authorAnselm R Garbe <anselm@garbe.us>
Sun, 16 Aug 2009 07:18:25 +0000 (08:18 +0100)
committerAnselm R Garbe <anselm@garbe.us>
Sun, 16 Aug 2009 07:18:25 +0000 (08:18 +0100)
LICENSE
dwm.c

diff --git a/LICENSE b/LICENSE
index a84241a391a08e478334e72f1ad614c306264567..86b2c942264f22577902d8ae16ea0d99b85f6b79 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -2,7 +2,7 @@ MIT/X Consortium License
 
 © 2006-2009 Anselm R Garbe <garbeam at gmail dot com>
 © 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
-© 2006-2007 Jukka Salmi <jukka at salmi dot ch>
+© 2006-2009 Jukka Salmi <jukka at salmi dot ch>
 © 2007-2009 Premysl Hruby <dfenze at gmail dot com>
 © 2007-2009 Szabolcs Nagy <nszabolcs at gmail dot com>
 © 2007-2009 Christof Musik <christof at sendfax dot de>
diff --git a/dwm.c b/dwm.c
index 1b30cae1b02dc1f5d58366267e4979092b7fb23b..e2f306c1e64fbf20bfee3a6a7dd3da5667b2d815 100644 (file)
--- a/dwm.c
+++ b/dwm.c
@@ -1429,7 +1429,6 @@ setup(void) {
        XSetWindowAttributes wa;
 
        /* clean up any zombies immediately */
-       signal(SIGCHLD, sigchld);
        sigchld(0);
 
        /* init screen */
@@ -1501,8 +1500,9 @@ showhide(Client *c) {
 
 void
 sigchld(int unused) {
+       if(signal(SIGCHLD, sigchld) == SIG_ERR)
+               die("Can't install SIGCHLD handler");
        while(0 < waitpid(-1, NULL, WNOHANG));
-       signal(SIGCHLD, sigchld);
 }
 
 void