diff options
| author | 2010-07-02 18:14:40 +0000 | |
|---|---|---|
| committer | 2010-07-02 18:14:40 +0000 | |
| commit | a1bf154b97428ba8873a6a31d27b1cc607fa6700 (patch) | |
| tree | 37d7f47c5cf4af0e78c270840652f7e61223c771 /sys/kern/kern_sysctl.c | |
| parent | One transition was wrong: Suspending without a card, and then resuming with (diff) | |
| download | wireguard-openbsd-a1bf154b97428ba8873a6a31d27b1cc607fa6700.tar.xz wireguard-openbsd-a1bf154b97428ba8873a6a31d27b1cc607fa6700.zip | |
Since fill_eproc() is no longer called from coredump(), it can be dropped
from small kernels
"yes" deraadt@
Diffstat (limited to 'sys/kern/kern_sysctl.c')
| -rw-r--r-- | sys/kern/kern_sysctl.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/kern/kern_sysctl.c b/sys/kern/kern_sysctl.c index 52161fbe068..41bf6d4f76f 100644 --- a/sys/kern/kern_sysctl.c +++ b/sys/kern/kern_sysctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_sysctl.c,v 1.187 2010/06/30 19:57:05 deraadt Exp $ */ +/* $OpenBSD: kern_sysctl.c,v 1.188 2010/07/02 18:14:40 guenther Exp $ */ /* $NetBSD: kern_sysctl.c,v 1.17 1996/05/20 17:49:05 mrg Exp $ */ /*- @@ -1482,8 +1482,6 @@ err: return (error); } -#endif /* SMALL_KERNEL */ - /* * Fill in an eproc structure for the specified process. */ @@ -1541,8 +1539,6 @@ fill_eproc(struct proc *p, struct eproc *ep) ep->e_limit = p->p_p->ps_limit; } -#ifndef SMALL_KERNEL - /* * Fill in a kproc2 structure for the specified process. */ |
