[hackers] [dwm] added Neale Pickett's spawn patch, thanks Neale || Anselm R Garbe

From: <hg_AT_suckless.org>
Date: Thu, 4 Dec 2008 20:15:05 +0000 (UTC)

changeset: 1363:4004d6116035
tag: tip
user: Anselm R Garbe <garbeam_AT_gmail.com>
date: Thu Dec 04 20:15:00 2008 +0000
files: dwm.c
description:
added Neale Pickett's spawn patch, thanks Neale

diff -r f6c3491c41f1 -r 4004d6116035 dwm.c
--- a/dwm.c Sun Nov 16 13:22:24 2008 +0000
+++ b/dwm.c Thu Dec 04 20:15:00 2008 +0000
@@ -182,6 +182,7 @@
 static void setmfact(const Arg *arg);
 static void setup(void);
 static void showhide(Client *c);
+static void sigchld(int signal);
 static void spawn(const Arg *arg);
 static void tag(const Arg *arg);
 static int textnw(const char *text, unsigned int len);
@@ -1391,22 +1392,24 @@
         }
 }
 
+
+void
+sigchld(int signal) {
+ while(0 < waitpid(-1, NULL, WNOHANG));
+}
+
 void
 spawn(const Arg *arg) {
- /* The double-fork construct avoids zombie processes and keeps the code
- * clean from stupid signal handlers. */
+ signal(SIGCHLD, sigchld);
         if(fork() == 0) {
- if(fork() == 0) {
- if(dpy)
- close(ConnectionNumber(dpy));
- setsid();
- execvp(((char **)arg->v)[0], (char **)arg->v);
- fprintf(stderr, "dwm: execvp %s", ((char **)arg->v)[0]);
- perror(" failed");
- }
+ if(dpy)
+ close(ConnectionNumber(dpy));
+ setsid();
+ execvp(((char **)arg->v)[0], (char **)arg->v);
+ fprintf(stderr, "dwm: execvp %s", ((char **)arg->v)[0]);
+ perror(" failed");
                 exit(0);
         }
- wait(0);
 }
 
 void
@@ -1455,14 +1458,8 @@
                 h = wh;
 
         for(i = 0, c = nexttiled(c->next); c; c = nexttiled(c->next), i++) {
- if(i + 1 == n) { /* remainder */
- if(wy + wh - y < bh)
- resize(c, x, y, w - 2 * c->bw, wy + wh - y - 2 * c->bw, False);
- else
- resize(c, x, y, w - 2 * c->bw, wy + wh - y - 2 * c->bw, resizehints);
- }
- else
- resize(c, x, y, w - 2 * c->bw, h - 2 * c->bw, resizehints);
+ resize(c, x, y, w - 2 * c->bw, /* remainder */ ((i + 1 == n)
+ ? wy + wh - y - 2 * c->bw : h - 2 * c->bw), resizehints);
                 if(h != wh)
                         y = c->y + HEIGHT(c);
         }
Received on Thu Dec 04 2008 - 20:15:05 UTC

This archive was generated by hypermail 2.2.0 : Thu Dec 04 2008 - 20:24:15 UTC