From ebd6dabbd1ad6ca3bf257da2925a88b3f7d676fb Mon Sep 17 00:00:00 2001 From: niklas Date: Tue, 2 Mar 1999 22:19:08 +0000 Subject: RFNOWAIT does not dissociate the child from its parent in any other way than that the parent wait call will never get the status of this child, says Rob --- sys/kern/kern_fork.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'sys/kern/kern_fork.c') diff --git a/sys/kern/kern_fork.c b/sys/kern/kern_fork.c index 3b5260699ce..55cf72ce782 100644 --- a/sys/kern/kern_fork.c +++ b/sys/kern/kern_fork.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_fork.c,v 1.18 1999/02/26 04:59:39 art Exp $ */ +/* $OpenBSD: kern_fork.c,v 1.19 1999/03/02 22:19:08 niklas Exp $ */ /* $NetBSD: kern_fork.c,v 1.29 1996/02/09 18:59:34 christos Exp $ */ /* @@ -280,11 +280,9 @@ again: p2->p_flag |= P_PPWAIT; LIST_INSERT_AFTER(p1, p2, p_pglist); p2->p_pptr = p1; - if (forktype == ISRFORK && (rforkflags & RFNOWAIT)) { + if (forktype == ISRFORK && (rforkflags & RFNOWAIT)) p2->p_flag |= P_NOZOMBIE; - } else { - LIST_INSERT_HEAD(&p1->p_children, p2, p_sibling); - } + LIST_INSERT_HEAD(&p1->p_children, p2, p_sibling); LIST_INIT(&p2->p_children); #ifdef KTRACE -- cgit v1.2.3-59-g8ed1b