diff options
author | 2015-09-12 15:02:28 +0000 | |
---|---|---|
committer | 2015-09-12 15:02:28 +0000 | |
commit | 85691bd38f6ad385f4754fbcfb46f5b3cb2a3e46 (patch) | |
tree | af0514d3d03d27dccb90585cd1541882cb168968 | |
parent | Wrap shm_open() to go direct and mark shm_{mkstemp,unlink}() as weak (diff) | |
download | wireguard-openbsd-85691bd38f6ad385f4754fbcfb46f5b3cb2a3e46.tar.xz wireguard-openbsd-85691bd38f6ad385f4754fbcfb46f5b3cb2a3e46.zip |
ktrcsw(9) has been removed, so remove its man page too.
ok guenther@ miod@ sthen@
-rw-r--r-- | share/man/man9/Makefile | 4 | ||||
-rw-r--r-- | share/man/man9/ktrace.9 | 18 |
2 files changed, 4 insertions, 18 deletions
diff --git a/share/man/man9/Makefile b/share/man/man9/Makefile index f97e153e884..c26722a9701 100644 --- a/share/man/man9/Makefile +++ b/share/man/man9/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.243 2015/09/11 19:27:05 mpi Exp $ +# $OpenBSD: Makefile,v 1.244 2015/09/12 15:02:28 lteo Exp $ # $NetBSD: Makefile,v 1.4 1996/01/09 03:23:01 thorpej Exp $ # Makefile for section 9 (kernel function and variable) manual pages. @@ -234,7 +234,7 @@ MLINKS+=km_alloc.9 km_free.9 MLINKS+=knote.9 KNOTE.9 MLINKS+=kthread.9 kthread_create.9 kthread.9 kthread_exit.9 \ kthread.9 kthread_create_deferred.9 -MLINKS+=ktrace.9 ktrcsw.9 ktrace.9 ktremul.9 ktrace.9 ktrgenio.9 \ +MLINKS+=ktrace.9 ktremul.9 ktrace.9 ktrgenio.9 \ ktrace.9 ktrnamei.9 ktrace.9 ktrpsig.9 ktrace.9 ktrsyscall.9 \ ktrace.9 ktrsysret.9 ktrace.9 KTRPOINT.9 MLINKS+=lock.9 lockinit.9 lock.9 lockmgr.9 lock.9 lockstatus.9 diff --git a/share/man/man9/ktrace.9 b/share/man/man9/ktrace.9 index 4abed5f307c..76e840fcd86 100644 --- a/share/man/man9/ktrace.9 +++ b/share/man/man9/ktrace.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ktrace.9,v 1.9 2015/02/15 22:26:45 bentley Exp $ +.\" $OpenBSD: ktrace.9,v 1.10 2015/09/12 15:02:28 lteo Exp $ .\" .\" Copyright (c) 2003 Michael Shalayeff .\" @@ -23,11 +23,10 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd $Mdocdate: February 15 2015 $ +.Dd $Mdocdate: September 12 2015 $ .Dt KTRACE 9 .Os .Sh NAME -.Nm ktrcsw , .Nm ktremul , .Nm ktrgenio , .Nm ktrnamei , @@ -42,8 +41,6 @@ .In sys/ktrace.h .Fn KTRPOINT "struct proc *p" "int type" .Ft void -.Fn ktrcsw "struct proc *p" "int out" "int user" -.Ft void .Fn ktremul "struct proc *p" "char *emul" .Ft void .Fn ktrgenio "struct proc *p" "int fd" "enum uio_rw rw" "struct iovec *iov" "int len" "int error" @@ -74,17 +71,6 @@ Possible values for the argument are a mask of the KTRFAC_ values described in .Xr ktrace 2 . .Pp -.Fn ktrcsw -is called during the context switching. -The -.Fa user -argument is a boolean value specifying whether the process has -been put into a waiting state (true) or placed onto a running queue (false). -Furthermore the -.Fa user -argument indicates whether a voluntary (false) or an involuntary (true) -switching has happened. -.Pp .Fn ktremul should be called every time emulation for the execution environment is changed and thus the name of which is given in the |