summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-08-22 17:29:20 +0000
committerRoland McGrath <roland@gnu.org>1994-08-22 17:29:20 +0000
commit37174fe8125e31ae3076e4df9ea63e2b743ace6d (patch)
treef51abf63aaebdceff0e4d87970d471e30c8aa02f
parent28b9ff7f43c80b56c0d26b5544ce0cdb889df6b2 (diff)
Formerly wait.c.~10~
-rw-r--r--proc/wait.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/proc/wait.c b/proc/wait.c
index 90f67b9c..4157f665 100644
--- a/proc/wait.c
+++ b/proc/wait.c
@@ -297,7 +297,8 @@ kern_return_t
S_proc_mod_stopchild (struct proc *p,
int value)
{
- p->p_nostopcld = !! value;
+ /* VALUE is nonzero if we should send SIGCHLD. */
+ p->p_nostopcld = ! value;
return 0;
}