diff options
author | Anil Madhavapeddy <avsm@cvs.openbsd.org> | 2000-12-22 00:13:35 +0000 |
---|---|---|
committer | Anil Madhavapeddy <avsm@cvs.openbsd.org> | 2000-12-22 00:13:35 +0000 |
commit | a9bfe56ebf2b5ce7eeec800b2d2c5c9bb978319e (patch) | |
tree | 98cecf9b103f07b0490cf72bf41b6cd5ba157beb /share/man | |
parent | b2df43c4793df4e8ba793b23ffc3fc7180bebf4f (diff) |
more typo fixes; aaron@ ok
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man9/audio.9 | 6 | ||||
-rw-r--r-- | share/man/man9/copy.9 | 4 | ||||
-rw-r--r-- | share/man/man9/disk.9 | 10 | ||||
-rw-r--r-- | share/man/man9/disklabel.9 | 8 | ||||
-rw-r--r-- | share/man/man9/inittodr.9 | 4 | ||||
-rw-r--r-- | share/man/man9/pool.9 | 4 | ||||
-rw-r--r-- | share/man/man9/random.9 | 8 | ||||
-rw-r--r-- | share/man/man9/uvm.9 | 8 | ||||
-rw-r--r-- | share/man/man9/vm_deallocate.9 | 4 | ||||
-rw-r--r-- | share/man/man9/vm_map_inherit.9 | 4 |
10 files changed, 30 insertions, 30 deletions
diff --git a/share/man/man9/audio.9 b/share/man/man9/audio.9 index 3d3f9f6f235..59d3eb26163 100644 --- a/share/man/man9/audio.9 +++ b/share/man/man9/audio.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: audio.9,v 1.5 2000/12/03 15:06:08 espie Exp $ +.\" $OpenBSD: audio.9,v 1.6 2000/12/22 00:13:34 avsm Exp $ .\" $NetBSD: audio.9,v 1.14 2000/02/11 22:56:15 kleink Exp $ .\" .\" Copyright (c) 1999, 2000 The NetBSD Foundation, Inc. @@ -377,7 +377,7 @@ AUDIO_PROP_xxx. .It Dv int trigger_output(void *hdl, void *start, void *end, .Dv "int blksize, void (*intr)(void*), void *intrarg," .br -.Dv "stuct audio_params *param)" +.Dv "struct audio_params *param)" .br optional, is called to start the transfer of data from the circular buffer delimited by @@ -401,7 +401,7 @@ Return 0 on success, otherwise an error code. .It Dv int trigger_input(void *hdl, void *start, void *end, .Dv "int blksize, void (*intr)(void*), void *intrarg," .br -.Dv "stuct audio_params *param)" +.Dv "struct audio_params *param)" .br optional, is called to start the transfer of data from the audio hardware, parameterized as in diff --git a/share/man/man9/copy.9 b/share/man/man9/copy.9 index 3e0c6b2255f..53aa1e0585d 100644 --- a/share/man/man9/copy.9 +++ b/share/man/man9/copy.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: copy.9,v 1.6 2000/10/12 18:05:58 aaron Exp $ +.\" $OpenBSD: copy.9,v 1.7 2000/12/22 00:13:34 avsm Exp $ .\" $NetBSD: copy.9,v 1.2 1996/01/09 03:23:04 thorpej Exp $ .\" .\" Copyright (c) 1996 Jason R. Thorpe. @@ -117,7 +117,7 @@ In addition, the .Fn copyinstr , and .Fn copyoutstr -funtions return ENAMETOOLONG if the string is longer than +functions return ENAMETOOLONG if the string is longer than .Fa len bytes. .Sh SEE ALSO diff --git a/share/man/man9/disk.9 b/share/man/man9/disk.9 index c85b2c1050d..6d5e2e47006 100644 --- a/share/man/man9/disk.9 +++ b/share/man/man9/disk.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: disk.9,v 1.14 2000/11/10 20:02:20 todd Exp $ +.\" $OpenBSD: disk.9,v 1.15 2000/12/22 00:13:34 avsm Exp $ .\" $NetBSD: disk.9,v 1.2 1996/04/08 20:41:25 jtc Exp $ .\" .\" Copyright (c) 1995, 1996 Jason R. Thorpe. @@ -122,10 +122,10 @@ before autoconfiguration. .It Fn disk_attach Attach a disk; allocate storage for the disklabel, set the .Dq attached time -timestamp, insert the disk into the disklist, and intrement the +timestamp, insert the disk into the disklist, and increment the system disk count. .It Fn disk_detach -Detatch a disk; free storage for the disklabel, remove the disk +Detach a disk; free storage for the disklabel, remove the disk from the disklist, and decrement the system disk count. If the count drops below zero, panic. .It Fn disk_busy @@ -178,7 +178,7 @@ Each device in the system uses a structure which contains autoconfiguration and state information for that device. In the case of disks, the softc should also contain one instance -of the disk stucture, e.g.: +of the disk structure, e.g.: .Bd -literal struct foo_softc { struct device *sc_dev; /* generic device information */ @@ -234,7 +234,7 @@ switch. This switch currently includes a pointer to the disk's .Dq strategy routine. -This switch needs to have global scope and sould be initialized as follows: +This switch needs to have global scope and should be initialized as follows: .Bd -literal void foostrategy __P((struct buf *)); struct dkdriver foodkdriver = { foostrategy }; diff --git a/share/man/man9/disklabel.9 b/share/man/man9/disklabel.9 index d09dc85f0cc..77fb7f8e85e 100644 --- a/share/man/man9/disklabel.9 +++ b/share/man/man9/disklabel.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: disklabel.9,v 1.5 2000/10/12 18:05:58 aaron Exp $ +.\" $OpenBSD: disklabel.9,v 1.6 2000/12/22 00:13:34 avsm Exp $ .\" $NetBSD: disklabel.9,v 1.7 1999/03/06 22:09:29 mycroft Exp $ .\" .\" Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -115,11 +115,11 @@ using the buffer pointed at by .Fa osdep .Pc , to store the disk label onto the medium in a format complying with -architectural contraints. +architectural constraints. .Fn writedisklabel returns 0 on success and .Dv EINVAL -if the disk label specifies invalid or unconvertable values. +if the disk label specifies invalid or unconvertible values. Otherwise, any error condition reported by the device strategy routine in the buffer's .Dq Va b_error @@ -142,7 +142,7 @@ Failure to pass on .Dq basic sanity , results in a .Dv EINVAL -return value, while a vetoed update of the partition layout is signaled by a +return value, while a vetoed update of the partition layout is signalled by a .Dv EBUSY return value. Otherwise, 0 is returned. diff --git a/share/man/man9/inittodr.9 b/share/man/man9/inittodr.9 index 66b8c44d146..48855ecad4b 100644 --- a/share/man/man9/inittodr.9 +++ b/share/man/man9/inittodr.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: inittodr.9,v 1.7 2000/10/12 18:06:00 aaron Exp $ +.\" $OpenBSD: inittodr.9,v 1.8 2000/12/22 00:13:34 avsm Exp $ .\" $NetBSD: inittodr.9,v 1.2 1996/03/27 21:16:06 jtc Exp $ .\" .\" Copyright (c) 1994 Christopher G. Demetriou @@ -61,7 +61,7 @@ is used as the current time. .It If the battery-backed clock appears invalid, and .Fa base -appears non-sensical or was not provided (was given as zero), +appears nonsensical or was not provided (was given as zero), a arbitrary base (typically some time in the late 1970s) will be used. .El diff --git a/share/man/man9/pool.9 b/share/man/man9/pool.9 index bce6b7e8e8b..cf3060b4b47 100644 --- a/share/man/man9/pool.9 +++ b/share/man/man9/pool.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pool.9,v 1.4 2000/10/12 18:06:01 aaron Exp $ +.\" $OpenBSD: pool.9,v 1.5 2000/12/22 00:13:34 avsm Exp $ .\" $NetBSD: pool.9,v 1.13 1999/04/03 14:50:21 msaitoh Exp $ .\" .\" Copyright (c) 1997, 1998 The NetBSD Foundation, Inc. @@ -100,7 +100,7 @@ The arguments are: .It Fa size Specifies the size of the memory items managed by the pool. .It Fa align -Specifies the memory address aligment of the items returned by +Specifies the memory address alignment of the items returned by .Fn pool_get . This argument must be a power of two. If zero, diff --git a/share/man/man9/random.9 b/share/man/man9/random.9 index 2cd669cdc35..f8125bff4ad 100644 --- a/share/man/man9/random.9 +++ b/share/man/man9/random.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: random.9,v 1.9 2000/10/12 18:06:02 aaron Exp $ +.\" $OpenBSD: random.9,v 1.10 2000/12/22 00:13:34 avsm Exp $ .\" .\" Copyright (c) 1996,2000 Michael Shalayeff .\" All rights reserved. @@ -64,13 +64,13 @@ .Nm add_disk_randomness , .Nm add_audio_randomness routines are used to -supply data for the random data source device for futher processing. -The processing involves calculating inter-event time delta and measurirg +supply data for the random data source device for further processing. +The processing involves calculating inter-event time delta and measuring entropy contained in the resulting delta-T, supplied in argument data is just mixed into the pool and does not increase entropy counter. .br .Nm add_true_randomness -does not involve usuall timing calculations +does not involve usual timing calculations and causes supplied data argument added to the entropy pool increasing the entropy counter by 32 bits. .br diff --git a/share/man/man9/uvm.9 b/share/man/man9/uvm.9 index 2d46d6f0bdc..c0180a8536f 100644 --- a/share/man/man9/uvm.9 +++ b/share/man/man9/uvm.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: uvm.9,v 1.4 2000/11/10 20:02:20 todd Exp $ +.\" $OpenBSD: uvm.9,v 1.5 2000/12/22 00:13:34 avsm Exp $ .\" $NetBSD: uvm.9,v 1.14 2000/06/29 06:08:44 mrg Exp $ .\" .\" Copyright (c) 1998 Matthew R. Green @@ -351,7 +351,7 @@ is the main entry point for faults. It takes .Fa orig_map as the map the fault originated in, a .Fa vaddr -offset into the map the fault occured, +offset into the map the fault occurred, .Fa fault_type describing the type of fault, and .Fa access_type @@ -611,7 +611,7 @@ and .Fn uvm_km_free_wakeup free .Fa size -bytes of memory in the kernal map, starting at address +bytes of memory in the kernel map, starting at address .Fa addr . .Fn uvm_km_free_wakeup calls @@ -920,7 +920,7 @@ UVM appeared in Charles D. Cranor <chuck@ccrc.wustl.edu> designed and implemented UVM. .Pp Matthew Green <mrg@eterna.com.au> wrote the swap-space management code -and handled the logistical issues involed with merging UVM into the +and handled the logistical issues involved with merging UVM into the .Nx source tree. .Pp diff --git a/share/man/man9/vm_deallocate.9 b/share/man/man9/vm_deallocate.9 index 381300349df..53ecac330b3 100644 --- a/share/man/man9/vm_deallocate.9 +++ b/share/man/man9/vm_deallocate.9 @@ -1,5 +1,5 @@ .\" -.\" $OpenBSD: vm_deallocate.9,v 1.2 2000/10/12 18:06:04 aaron Exp $ +.\" $OpenBSD: vm_deallocate.9,v 1.3 2000/12/22 00:13:34 avsm Exp $ .\" .\" Mach Operating System .\" Copyright (c) 1991,1990 Carnegie Mellon University @@ -72,7 +72,7 @@ bytes may be deallocated. Use .B cnt.vm_page_size find out the current virtual page size. -This call may be used to deallocte memory that was passed to a task +This call may be used to deallocate memory that was passed to a task in a message (via out of line data). In that case, the rounding should cause no trouble, since the region of memory was allocated as a set of pages. diff --git a/share/man/man9/vm_map_inherit.9 b/share/man/man9/vm_map_inherit.9 index 22a4ce8b3b4..eb697e3d84c 100644 --- a/share/man/man9/vm_map_inherit.9 +++ b/share/man/man9/vm_map_inherit.9 @@ -1,5 +1,5 @@ .\" -.\" $OpenBSD: vm_map_inherit.9,v 1.3 2000/10/12 18:06:04 aaron Exp $ +.\" $OpenBSD: vm_map_inherit.9,v 1.4 2000/12/22 00:13:34 avsm Exp $ .\" .\" Mach Operating System .\" Copyright (c) 1991,1990 Carnegie Mellon University @@ -29,7 +29,7 @@ .CM 4 .SH NAME .nf -vm_map_inherit \- specifies inheritence of address space +vm_map_inherit \- specifies inheritance of address space .SH SYNOPSIS .nf .ft B |