diff options
Diffstat (limited to 'proc/wait.c')
-rw-r--r-- | proc/wait.c | 3 |
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; } |