diff options
| author | Juli Mallett <jmallett@FreeBSD.org> | 2002-09-30 20:20:22 +0000 |
|---|---|---|
| committer | Juli Mallett <jmallett@FreeBSD.org> | 2002-09-30 20:20:22 +0000 |
| commit | 1226f694e66c1af1593fa0fc5f30e72932266b3b (patch) | |
| tree | 44cc85d6d7a465b4410e0fa06f9f5a1b21bc40b6 /sys/compat/linux/linux_misc.c | |
| parent | 655a5ce411fb58451d9b37574837807c4824e6e9 (diff) | |
Notes
Diffstat (limited to 'sys/compat/linux/linux_misc.c')
| -rw-r--r-- | sys/compat/linux/linux_misc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c index 16c8677e0f44..d344548de97b 100644 --- a/sys/compat/linux/linux_misc.c +++ b/sys/compat/linux/linux_misc.c @@ -36,6 +36,7 @@ #include <sys/imgact_aout.h> #include <sys/jail.h> #include <sys/kernel.h> +#include <sys/ksiginfo.h> #include <sys/lock.h> #include <sys/mac.h> #include <sys/malloc.h> @@ -832,7 +833,7 @@ linux_wait4(struct thread *td, struct linux_wait4_args *args) if ((error = wait4(td, &tmp)) != 0) return error; - SIGDELSET(td->td_proc->p_siglist, SIGCHLD); + signal_delete(td->td_proc, NULL, SIGCHLD); if (args->status) { if ((error = copyin((caddr_t)args->status, &tmpstat, |
