diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-04-20 20:00:26 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-04-20 20:00:26 +0000 |
commit | e5d827e1efe97d625b08873c31daf83bd6a619aa (patch) | |
tree | 8791464d6492ffce6acb8df4c85d342baea9816e /share/man | |
parent | 06c62f7d247c4fe2707a0e8cd3da19c88e685364 (diff) |
typos;
ok tedu@
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man9/pmap.9 | 8 | ||||
-rw-r--r-- | share/man/man9/pool.9 | 6 | ||||
-rw-r--r-- | share/man/man9/timeout.9 | 8 |
3 files changed, 11 insertions, 11 deletions
diff --git a/share/man/man9/pmap.9 b/share/man/man9/pmap.9 index a56c4d60082..fd5c4c0c294 100644 --- a/share/man/man9/pmap.9 +++ b/share/man/man9/pmap.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pmap.9,v 1.3 2002/09/10 20:54:21 wcobb Exp $ +.\" $OpenBSD: pmap.9,v 1.4 2003/04/20 20:00:25 jmc Exp $ .\" .\" Copyright (c) 2001, 2002 CubeSoft Communications, Inc. .\" <http://www.csoft.org> @@ -11,7 +11,7 @@ .\" 2. Neither the name of CubeSoft Communications, 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 AUTHOR ``AS IS'' AND ANY EXPRESS OR .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED .\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE @@ -169,7 +169,7 @@ the page being faulted in. If .Fn pmap_enter is called to enter a mapping at a virtual address for which a mapping -already exists, the previous mapping must in invalidated. +already exists, the previous mapping must be invalidated. .Fn pmap_enter is sometimes called to change the protection for a pre-existing mapping, or to change the @@ -331,7 +331,7 @@ The .Fn pmap_destroy function decrements the reference count on physical map .Fa pmap -and retire it from service if the count drops to zero, assuming +and retires it from service if the count drops to zero, assuming it contains no valid mappings. .Sh OPTIONAL FUNCTIONS .nr nS 1 diff --git a/share/man/man9/pool.9 b/share/man/man9/pool.9 index 11c48c3b421..3dc9d3c0c3a 100644 --- a/share/man/man9/pool.9 +++ b/share/man/man9/pool.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pool.9,v 1.22 2003/02/24 02:26:06 deraadt Exp $ +.\" $OpenBSD: pool.9,v 1.23 2003/04/20 20:00:25 jmc Exp $ .\" $NetBSD: pool.9,v 1.18 2001/06/21 11:59:01 wiz Exp $ .\" .\" Copyright (c) 1997, 1998 The NetBSD Foundation, Inc. @@ -147,7 +147,7 @@ and to allocate and release memory using the .Em kmem_map .Po -see +see .Xr uvm 9 .Pc . It is recommended to set this to @@ -305,7 +305,7 @@ at which point the VM system will try to reclaim unused pages. The handle identifying the pool resource instance. .It Fa n The minimum number of items to keep in the pool. -The number pages in the pool will not decrease below the required value to +The number of pages in the pool will not decrease below the required value to accommodate the minimum number of items specified by this function. Unlike .Fn pool_prime , diff --git a/share/man/man9/timeout.9 b/share/man/man9/timeout.9 index d2e66e4feb7..63fd539f18d 100644 --- a/share/man/man9/timeout.9 +++ b/share/man/man9/timeout.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: timeout.9,v 1.19 2002/12/20 06:13:44 art Exp $ +.\" $OpenBSD: timeout.9,v 1.20 2003/04/20 20:00:25 jmc Exp $ .\" .\" Copyright (c) 2000 Artur Grabowski <art@openbsd.org> .\" All rights reserved. @@ -58,7 +58,7 @@ API provides a mechanism to execute a function at a given time. The granularity of the time is limited by the granularity of the .Xr hardclock 9 timer which executes -.Nm hz +.Xr hz 9 times a second. The function will be called at softclock interrupt level. .Pp @@ -89,7 +89,7 @@ argument given in the argument. Once initialized, the .Fa to -structure can be used in repeatedly in +structure can be used repeatedly in .Fn timeout_add and .Fn timeout_del @@ -142,7 +142,7 @@ macro can be used to check if a timeout has been initialized. The .Fn timeout_triggered macro can be used to check if a timeout is running or has been run. -The +The .Fn timeout_add and .Fn timeout_del |