X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=util.c;h=c31d7f95968a9095133886636a9290920e5a32c1;hp=1147133c0d842e104493995fef8992695e4825f0;hb=423093256363aa3d8034bff5c2be38adb7e9cf25;hpb=f17e898bd133f1bd8c530116b4b5bacb7ced5da9 diff --git a/util.c b/util.c index 1147133..c31d7f9 100644 --- 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)