projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f17e898
)
reviewed util.c
author
arg@mmvi
<unknown>
Wed, 20 Sep 2006 07:49:32 +0000
(09:49 +0200)
committer
arg@mmvi
<unknown>
Wed, 20 Sep 2006 07:49:32 +0000
(09:49 +0200)
util.c
patch
|
blob
|
history
diff --git
a/util.c
b/util.c
index 1147133c0d842e104493995fef8992695e4825f0..c31d7f95968a9095133886636a9290920e5a32c1 100644
(file)
--- a/
util.c
+++ b/
util.c
@@
-47,7
+47,8
@@
spawn(Arg *arg) {
if(!arg->cmd)
return;
- /* the double-fork construct avoids zombie processes */
+ /* The double-fork construct avoids zombie processes and keeps the code
+ * clean from stupid signal handlers. */
if(fork() == 0) {
if(fork() == 0) {
if(dpy)