X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/ca65478c8968434c78aacf4a102ccbbe4a66ad9e..dddd58a8cdc9ffd9f207c45316e9f9a28b4bf519:/util.c?ds=sidebyside 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)