CVSROOT: /cvs Module name: src Changes by: guent...@cvs.openbsd.org 2013/05/07 13:26:25
Modified files: sys/kern : kern_exit.c Log message: Merge from FreeBSD, r191313 --------------------------- On the exit of the child process which parent either set SA_NOCLDWAIT or ignored SIGCHLD, unconditionally wake up the parent instead of doing this only when the child is a last child. This brings us in line with other U**xes that support SA_NOCLDWAIT. If the parent called waitpid(childpid), then exit of the child should wake up the parent immediately instead of forcing it to wait for all children to exit. --------------------------- ok tedu@, millert@