summaryrefslogtreecommitdiffstats
path: root/sys/kern/sys_process.c
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2014-09-08 01:47:05 +0000
committerguenther <guenther@openbsd.org>2014-09-08 01:47:05 +0000
commitcf6677a65b386628719094fda053786604840618 (patch)
tree88469f20f89a186bf78b27a6374674fe7f450aa0 /sys/kern/sys_process.c
parentobvious cases of missing .An; (diff)
downloadwireguard-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/sys_process.c')
-rw-r--r--sys/kern/sys_process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/sys_process.c b/sys/kern/sys_process.c
index 4bd359710e3..c4af4b7a47e 100644
--- a/sys/kern/sys_process.c
+++ b/sys/kern/sys_process.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sys_process.c,v 1.64 2014/07/13 15:00:40 tedu Exp $ */
+/* $OpenBSD: sys_process.c,v 1.65 2014/09/08 01:47:06 guenther Exp $ */
/* $NetBSD: sys_process.c,v 1.55 1996/05/15 06:17:47 tls Exp $ */
/*-
@@ -528,7 +528,7 @@ sys_ptrace(struct proc *p, void *v, register_t *retval)
case PT_ATTACH:
/*
- * As done in procfs:
+ * As was done in procfs:
* Go ahead and set the trace flag.
* Save the old parent (it's reset in
* _DETACH, and also in kern_exit.c:wait4()