diff options
author | 2014-09-08 01:47:05 +0000 | |
---|---|---|
committer | 2014-09-08 01:47:05 +0000 | |
commit | cf6677a65b386628719094fda053786604840618 (patch) | |
tree | 88469f20f89a186bf78b27a6374674fe7f450aa0 /sys/kern/kern_fork.c | |
parent | obvious cases of missing .An; (diff) | |
download | wireguard-openbsd-cf6677a65b386628719094fda053786604840618.tar.xz wireguard-openbsd-cf6677a65b386628719094fda053786604840618.zip |
Delete procfs; it's always had races and is now unused: no one noticed for
months that I broke it before the 5.5 release.
confirmed as not being required by ports by sthen@, ajacoutot@, dcoppa@
Diffstat (limited to 'sys/kern/kern_fork.c')
-rw-r--r-- | sys/kern/kern_fork.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_fork.c b/sys/kern/kern_fork.c index 3efa176192b..d2adc0bb900 100644 --- a/sys/kern/kern_fork.c +++ b/sys/kern/kern_fork.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_fork.c,v 1.173 2014/07/13 15:46:21 uebayasi Exp $ */ +/* $OpenBSD: kern_fork.c,v 1.174 2014/09/08 01:47:06 guenther Exp $ */ /* $NetBSD: kern_fork.c,v 1.29 1996/02/09 18:59:34 christos Exp $ */ /* @@ -183,7 +183,7 @@ process_new(struct proc *p, struct process *parent, int flags) KASSERT(p->p_ucred->cr_ref >= 3); /* fork thr, new thr, new process */ pr->ps_limit->p_refcnt++; - /* bump references to the text vnode (for procfs) */ + /* bump references to the text vnode (for sysctl) */ pr->ps_textvp = parent->ps_textvp; if (pr->ps_textvp) vref(pr->ps_textvp); |