浏览代码

reviewed util.c

arg@mmvi 19 年之前
父节点
当前提交
4230932563
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      util.c

+ 2 - 1
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)