Explorar el Código

reviewed util.c

arg@mmvi hace 19 años
padre
commit
4230932563
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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)