diff options
| author | Tim J. Robbins <tjr@FreeBSD.org> | 2003-02-14 08:59:49 +0000 |
|---|---|---|
| committer | Tim J. Robbins <tjr@FreeBSD.org> | 2003-02-14 08:59:49 +0000 |
| commit | fb30aed1a5f4015784cd1c1f929461c6455ea46a (patch) | |
| tree | e0e5efec3d91cda6b3622677625cc8150704ae80 | |
| parent | c2604cb56755c1e0c5ae8d41c41d05e17b80df01 (diff) | |
Notes
| -rw-r--r-- | sys/compat/linux/linux_misc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c index 6b2dda96a8f5..57460a8bff44 100644 --- a/sys/compat/linux/linux_misc.c +++ b/sys/compat/linux/linux_misc.c @@ -832,7 +832,9 @@ linux_wait4(struct thread *td, struct linux_wait4_args *args) if ((error = wait4(td, &tmp)) != 0) return error; + PROC_LOCK(td->td_proc); SIGDELSET(td->td_proc->p_siglist, SIGCHLD); + PROC_UNLOCK(td->td_proc); if (args->status) { if ((error = copyin((caddr_t)args->status, &tmpstat, |
