diff options
author | Roland McGrath <roland@gnu.org> | 1994-08-22 17:29:20 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1994-08-22 17:29:20 +0000 |
commit | 37174fe8125e31ae3076e4df9ea63e2b743ace6d (patch) | |
tree | f51abf63aaebdceff0e4d87970d471e30c8aa02f | |
parent | 28b9ff7f43c80b56c0d26b5544ce0cdb889df6b2 (diff) |
Formerly wait.c.~10~
-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; } |