Corrected my incorrect usage of hyphens, en-dashes, and em-dashes.

This commit is contained in:
jeremy 1998-09-03 01:58:56 +00:00
parent 5f0b8ba018
commit d3b609004c
2 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: kprintf.9,v 1.2 1998/09/02 05:05:22 jeremy Exp $
.\" $NetBSD: kprintf.9,v 1.3 1998/09/03 01:58:56 jeremy Exp $
.\"
.\" Copyright (c) 1998 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -126,7 +126,7 @@ and displayed.
The first character of the string is a binary character representation of the
output numeral base in which the bitfield will be printed before it is decoded.
Recognized radix values
.Pq "in C escape\(encharacter format"
.Pq "in C escape-character format"
are
.Li \e10
.Pq octal ,
@ -137,15 +137,15 @@ and
.Pq hexadecimal .
.Pp
The remaining characters in the decoding directive string are interpreted as a
list of bit\(enposition\(emdescription pairs.
A bit\(enposition\(emdescription pair begins with a binary character value
list of bit-position\(endescription pairs.
A bit-position\(endescription pair begins with a binary character value
that represents the position of the bit being described.
A bit position value of one describes the least significant bit.
Whereas a position value of 32
.Pq "octal 40, hexadecimal 20, the ASCII space character"
describes the most significant bit.
.Pp
The remaining characters in a bit\(enposition\(emdescription pair are the
The remaining characters in a bit-position\(endescription pair are the
characters to print should the bit being described be set.
Description strings are delimited by the next bit position value character
encountered

View File

@ -1,4 +1,4 @@
.\" $NetBSD: pool.9,v 1.9 1998/09/03 00:54:23 jeremy Exp $
.\" $NetBSD: pool.9,v 1.10 1998/09/03 01:58:57 jeremy Exp $
.\"
.\" Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -69,13 +69,13 @@
.Fn pool_setlowat "struct pool *pp" "int n"
.Fn POOL_STORAGE_SIZE "size" "nitems"
.Sh DESCRIPTION
These utility routines provide management of pools of fixed\(ensized
These utility routines provide management of pools of fixed-sized
areas of memory.
Resource pools set aside an amount of memory for exclusive use by the resource
pool owner.
This can be used by applications to guarantee the availability of a minimum
amount of memory needed to continue operation independent of the memory
resources currently available from the system\(enwide memory allocator
resources currently available from the system-wide memory allocator
.Pq Xr malloc 9 .
The pool manager can optionally obtain temporary memory by calling the
.Fn palloc
@ -99,7 +99,7 @@ Specifies the memory address aligment of the items returned by
.Fn pool_get .
This argument must be a power of two.
If zero,
the alignment defaults to a architecture\(enspecific natural aligment.
the alignment defaults to a architecture-specific natural aligment.
.It Fa align_offset
The offset within an item to which the
.Fa align
@ -301,12 +301,12 @@ this function does not allocate the necessary memory upfront.
Note that undefined behaviour results when mixing the storage providing
methods supported by the pool resource routines.
.Pp
The pool resource code uses a per\(enpool lock to protect its internal state.
The pool resource code uses a per-pool lock to protect its internal state.
If any pool functions are called in an interrupt context,
the caller must block all interrupts that might cause the
code to be reentered.
.Ss DIAGNOSTICS
Pool usage logs can be enabled by defining the compile\(entime option
Pool usage logs can be enabled by defining the compile-time option
.Dv POOL_DIAGNOSTIC .
.\" .Sh RETURN VALUES
.\" .Sh EXAMPLES