about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--util.c3
1 files changed, 2 insertions, 1 deletions
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)
e previous revision' href='/akkartik/mu/blame/039location_array.cc?h=main&id=ce9616a77fc4e1c22e913308c8ea55ef05203211'>^
8d82da3c ^


8d82da3c ^






b24eb476 ^

8d82da3c ^
b24eb476 ^
8d82da3c ^






b24eb476 ^
8d82da3c ^


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40