diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2010-07-02 18:14:41 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2010-07-02 18:14:41 +0000 |
commit | 92b1f39e02f7680f0b65f786e5b756684f3dc4d0 (patch) | |
tree | d69565ece46f692683981474c741387a787a6179 /sys | |
parent | aa26dd9565f8b66549e0daed88ead59b300550b3 (diff) |
Since fill_eproc() is no longer called from coredump(), it can be dropped
from small kernels
"yes" deraadt@
Diffstat (limited to 'sys')
-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. */ |