remove leftover pre-UVM manpages

This commit is contained in:
drochner 2003-02-10 13:08:00 +00:00
parent c361778eb9
commit 25d3c2e03b
3 changed files with 9 additions and 85 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: obsolete.mi,v 1.57 2002/11/23 11:24:03 blymn Exp $
# $NetBSD: obsolete.mi,v 1.58 2003/02/10 13:08:01 drochner Exp $
./usr/share/info/g++FAQ.info
./usr/share/info/tar.info
./usr/share/man/cat1/amq.0
@ -115,7 +115,10 @@
./usr/share/man/cat8/vmstat.0
./usr/share/man/cat8/xntpd.0
./usr/share/man/cat8/xntpdc.0
./usr/share/man/cat9/access.0
./usr/share/man/cat9/boot.0
./usr/share/man/cat9/kernacc.0
./usr/share/man/cat9/useracc.0
./usr/share/man/man1/amq.1
./usr/share/man/man1/g711conv.1
./usr/share/man/man1/i386
@ -229,4 +232,7 @@
./usr/share/man/man8/vmstat.8
./usr/share/man/man8/xntpd.8
./usr/share/man/man8/xntpdc.8
./usr/share/man/man9/access.9
./usr/share/man/man9/boot.9
./usr/share/man/man9/kernacc.9
./usr/share/man/man9/useracc.9

View File

@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.137 2003/02/04 16:22:47 thorpej Exp $
# $NetBSD: Makefile,v 1.138 2003/02/10 13:08:00 drochner Exp $
# Makefile for section 9 (kernel function and variable) manual pages.
MAN= access.9 altq.9 arc4random.9 arp.9 audio.9 autoconf.9 \
MAN= altq.9 arc4random.9 arp.9 audio.9 autoconf.9 \
bitmask_snprintf.9 bcmp.9 bcopy.9 bzero.9 \
bufq.9 bus_dma.9 bus_space.9 \
callout.9 cardbus.9 chooseproc.9 cnmagic.9 config.9 cons.9 copy.9 \
@ -44,7 +44,6 @@ MLINKS+=dmover.9 dmover_backend_register.9 \
dmover.9 dmover_done.9
MLINKS+=arp.9 arp_ifinit.9 arp.9 arpresolve.9 arp.9 arpintr.9
MLINKS+=access.9 kernacc.9 access.9 useracc.9
MLINKS+=autoconf.9 config_search.9 \
autoconf.9 config_found_sm.9 \
autoconf.9 config_found.9 \

View File

@ -1,81 +0,0 @@
.\" $NetBSD: access.9,v 1.10 2002/02/07 14:30:22 wiz Exp $
.\"
.\" Copyright (c) 1996 The NetBSD Foundation, Inc.
.\" All rights reserved.
.\"
.\" This code is derived from software contributed to The NetBSD Foundation
.\" by Paul Kranenburg.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
.\" must display the following acknowledgement:
.\" This product includes software developed by the NetBSD
.\" Foundation, Inc. and its contributors.
.\" 4. Neither the name of The NetBSD Foundation nor the names of its
.\" contributors may be used to endorse or promote products derived
.\" from this software without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd June 16, 1996
.Dt ACCESS 9
.Os
.Sh NAME
.Nm access ,
.Nm kernacc ,
.Nm useracc
.Nd check memory regions for accessibility
.Sh SYNOPSIS
.Ft int
.Fn kernacc "caddr_t addr" "size_t len" "int rw"
.Ft int
.Fn useracc "caddr_t addr" "size_t len" "int rw"
.Sh DESCRIPTION
The
.Fn kernacc
and
.Fn useracc
functions check whether operations of the type specified in
.Fa rw
are permitted in the range of virtual addresses given by
.Fa addr
and
.Fa len .
The possible values of
.Fa rw
are
.Dv B_READ
and
.Dv B_WRITE .
.Fn kernacc
checks addresses in the kernel address space, while
.Fn useracc
considers
.Fa addr
to represent a user space address.
The process context to use for this operation is taken from the global variable
.Va curproc .
.Sh RETURN VALUES
Both functions return 1 if the type of access specified by
.Fa rw
is permitted.
Otherwise 0 is returned.
.Sh BUGS
The process pointer should be passed in as an argument.