added Neale Pickett's spawn patch, thanks Neale

This commit is contained in:
Anselm R Garbe 2008-12-04 20:15:00 +00:00
parent 5f74dc5e78
commit 2b047e460b
1 changed files with 16 additions and 19 deletions

35
dwm.c
View File

@ -182,6 +182,7 @@ static void setlayout(const Arg *arg);
static void setmfact(const Arg *arg); static void setmfact(const Arg *arg);
static void setup(void); static void setup(void);
static void showhide(Client *c); static void showhide(Client *c);
static void sigchld(int signal);
static void spawn(const Arg *arg); static void spawn(const Arg *arg);
static void tag(const Arg *arg); static void tag(const Arg *arg);
static int textnw(const char *text, unsigned int len); static int textnw(const char *text, unsigned int len);
@ -1391,22 +1392,24 @@ showhide(Client *c) {
} }
} }
void
sigchld(int signal) {
while(0 < waitpid(-1, NULL, WNOHANG));
}
void void
spawn(const Arg *arg) { spawn(const Arg *arg) {
/* The double-fork construct avoids zombie processes and keeps the code signal(SIGCHLD, sigchld);
* clean from stupid signal handlers. */
if(fork() == 0) { if(fork() == 0) {
if(fork() == 0) { if(dpy)
if(dpy) close(ConnectionNumber(dpy));
close(ConnectionNumber(dpy)); setsid();
setsid(); execvp(((char **)arg->v)[0], (char **)arg->v);
execvp(((char **)arg->v)[0], (char **)arg->v); fprintf(stderr, "dwm: execvp %s", ((char **)arg->v)[0]);
fprintf(stderr, "dwm: execvp %s", ((char **)arg->v)[0]); perror(" failed");
perror(" failed");
}
exit(0); exit(0);
} }
wait(0);
} }
void void
@ -1455,14 +1458,8 @@ tile(void) {
h = wh; h = wh;
for(i = 0, c = nexttiled(c->next); c; c = nexttiled(c->next), i++) { for(i = 0, c = nexttiled(c->next); c; c = nexttiled(c->next), i++) {
if(i + 1 == n) { /* remainder */ resize(c, x, y, w - 2 * c->bw, /* remainder */ ((i + 1 == n)
if(wy + wh - y < bh) ? wy + wh - y - 2 * c->bw : h - 2 * c->bw), resizehints);
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);
if(h != wh) if(h != wh)
y = c->y + HEIGHT(c); y = c->y + HEIGHT(c);
} }