More e.g. cleanup. Igor Sobrado, PR 19692.

This commit is contained in:
wiz 2003-04-07 07:04:49 +00:00
parent 07d13217f3
commit 334bfb30b4
8 changed files with 22 additions and 22 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: packages.7,v 1.76 2003/01/18 12:23:58 jmmv Exp $
.\" $NetBSD: packages.7,v 1.77 2003/04/07 07:04:49 wiz Exp $
.\"
.\" from: NetBSD: bsd.pkg.mk,v 1.89 1998/06/01 21:30:10 hubertf Exp
.\"
@ -333,7 +333,7 @@ If this variable is set, the distfile will not be mirrored by ftp.netbsd.org.
Don't verify build of dependencies.
.It CHECK_SHLIBS
Do not run 'check-shlibs' even if PKG_DEVELOPER is set. This prevents
errors on emul/compat packages (e.g. Linux binaries, ...).
errors on emul/compat packages (e.g., Linux binaries, ...).
.It MAKEFILE
Name of the Makefile in ${WRKSRC}, used in the default build and
install targets. Default:
@ -731,7 +731,7 @@ if no binary package is available anywhere. The arguments given to
.Xr pkg_add 1
can be set via
.Dq BIN_INSTALL_FLAGS ,
e.g. to do verbose operation, etc.
e.g., to do verbose operation, etc.
.It reinstall
Install the results of a build, ignoring
.Dq already installed

View File

@ -1,4 +1,4 @@
.\" $NetBSD: ioctl.9,v 1.17 2002/10/14 13:43:24 wiz Exp $
.\" $NetBSD: ioctl.9,v 1.18 2003/04/07 07:08:46 wiz Exp $
.\"
.\" Copyright (c) 1999 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -57,7 +57,7 @@ where the different variables and functions are:
.It Cm FOOIOCTL
the name which will later be given in the
.Xr ioctl 2
system call as second argument, e.g.
system call as second argument, e.g.,
.Dl ioctl(s, FOOIOCTL, ...) .
.It Fn fun
a macro which can be one of
@ -237,7 +237,7 @@ This is a unsigned 8 bit number.
.It Ar pt
This specifies the type of the passed parameter.
This one gets internally transformed to the size of the parameter, so
if you e.g. want to pass a structure, then you have to specify that
for example, if you want to pass a structure, then you have to specify that
structure and not a pointer to it or sizeof(struct foo)
.El
.Pp
@ -267,7 +267,7 @@ driver_ioctl(..., u_long cmd, caddr_t data)
}
.Ed
.Sh NOTES
Note that if you e.g. try to read information from e.g. a ethernet
Note that if you for example try to read information from a ethernet
driver where the name of the card is included in the third argument
(e.g., ioctl(s, READFROMETH, struct ifreq *)), then you have to use
the _IOWR() form not the _IOR(), as passing the name of the card to the

View File

@ -1,4 +1,4 @@
.\" $NetBSD: ltsleep.9,v 1.2 2002/10/14 13:43:26 wiz Exp $
.\" $NetBSD: ltsleep.9,v 1.3 2003/04/07 07:08:46 wiz Exp $
.\"
.\" Copyright (c) 1996, 2002 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -62,7 +62,7 @@ can not continue for any of the following reasons:
The current process needs to await the results of a pending I/O operation.
.It
The current process needs resources
.Pq e.g. memory
.Pq e.g., memory
which are temporarily unavailable.
.It
The current process wants access to data-structures which are locked by

View File

@ -1,4 +1,4 @@
.\" $NetBSD: pmap.9,v 1.20 2003/02/14 15:20:21 grant Exp $
.\" $NetBSD: pmap.9,v 1.21 2003/04/07 07:08:47 wiz Exp $
.\"
.\" Copyright (c) 2000, 2001, 2002 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -133,7 +133,7 @@ required by
.Xr uvm 9 .
.Pp
In order to cope with hardware architectures that make the
invalidation of virtual address mappings expensive (e.g.
invalidation of virtual address mappings expensive (e.g.,
TLB invalidations, TLB shootdown operations for multiple
processors), the
.Nm
@ -678,7 +678,7 @@ allow the
.Nm
module to release resources used to map the process's address space.
The implementation may choose to remove physical mappings in order
to free e.g. page tables back to the system.
to free for example page tables back to the system.
Note, however, that wired mappings must
.Em not
be removed when
@ -868,7 +868,7 @@ This function is a bootstrap memory allocator, which may be provided
as an alternative to the bootstrap memory allocator used within
.Xr uvm 9
itself.
It is particularly useful on systems which provide e.g. a direct-mapped
It is particularly useful on systems which provide for example a direct-mapped
memory segment.
This function works by stealing pages from the (to be) managed memory
pool, which has already been provided to

View File

@ -1,4 +1,4 @@
.\" $NetBSD: userret.9,v 1.3 2002/11/11 06:06:27 gmcgarry Exp $
.\" $NetBSD: userret.9,v 1.4 2003/04/07 07:08:47 wiz Exp $
.\"
.\" Copyright (c) 2002 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -68,7 +68,7 @@ Detect a change in the signal disposition of the current process and invoke
to post the signal to the process.
This may occur when the outcome of the trap or syscall posted a signal
to the process
.Pq e.g. invalid instruction trap .
.Pq e.g., invalid instruction trap .
.It
Check the
.Va want_resched

View File

@ -1,4 +1,4 @@
.\" $NetBSD: uvm.9,v 1.39 2003/04/06 20:54:16 wiz Exp $
.\" $NetBSD: uvm.9,v 1.40 2003/04/07 07:08:47 wiz Exp $
.\"
.\" Copyright (c) 1998 Matthew R. Green
.\" All rights reserved.
@ -249,7 +249,7 @@ The
.Dv UVM_MAPFLAG
macro arguments can be combined with an or operator.
There are several special purpose macros for checking protection
combinations, e.g. the
combinations, e.g., the
.Dv UVM_PROT_WX
macro.
There are also some additional macros to extract bits from the flags.

View File

@ -1,4 +1,4 @@
.\" $NetBSD: vnode.9,v 1.16 2003/04/06 07:07:41 gmcgarry Exp $
.\" $NetBSD: vnode.9,v 1.17 2003/04/07 07:08:48 wiz Exp $
.\"
.\" Copyright (c) 2001 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -522,7 +522,7 @@ Increment
.Em v_usecount
of the vnode
.Em vp .
Any kernel thread system which uses a vnode (e.g. during the operation
Any kernel thread system which uses a vnode (e.g., during the operation
of some algorithm or to store in a data structure) should call
.Fn vref .
.It Fn VREF "vp"
@ -793,7 +793,7 @@ the lock before they exit.
The locking protocol is used in some places to attempt to make a
series of operations atomic (e.g., access check then operation).
This does not work for non-local file systems that do not support locking
(e.g. NFS).
(e.g., NFS).
The
.Nm
interface would benefit from a simpler locking protocol.

View File

@ -1,4 +1,4 @@
.\" $NetBSD: rpc.statd.8,v 1.5 2002/12/21 12:47:21 wiz Exp $
.\" $NetBSD: rpc.statd.8,v 1.6 2003/04/07 07:05:21 wiz Exp $
.\"
.\" Copyright (c) 1995 A.R.Gordon, andrew.gordon@net-tel.co.uk
.\" All rights reserved.
@ -98,7 +98,7 @@ appeared in
.Tn SunOS 4 .
.Sh BUGS
There is no means for the daemon to tell when a monitored host has
disappeared permanently (e.g. catastrophic hardware failure), as opposed
disappeared permanently (e.g., catastrophic hardware failure), as opposed
to transient failure of the host or an intermediate router. At present,
it will retry notification attempts at frequent intervals for 10 minutes,
then hourly, and finally gives up after 24 hours.