From: arg@mmvi Date: Wed, 20 Sep 2006 07:49:32 +0000 (+0200) Subject: reviewed util.c X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=423093256363aa3d8034bff5c2be38adb7e9cf25 reviewed util.c --- 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)