diff options
-rw-r--r-- | share/man/man9/dohooks.9 | 4 | ||||
-rw-r--r-- | share/man/man9/dostartuphooks.9 | 9 | ||||
-rw-r--r-- | share/man/man9/hook_establish.9 | 5 | ||||
-rw-r--r-- | share/man/man9/startuphook_establish.9 | 5 |
4 files changed, 13 insertions, 10 deletions
diff --git a/share/man/man9/dohooks.9 b/share/man/man9/dohooks.9 index 5d5aad36b1d..2590caad55e 100644 --- a/share/man/man9/dohooks.9 +++ b/share/man/man9/dohooks.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: dohooks.9,v 1.1 2001/07/27 09:55:07 niklas Exp $ +.\" $OpenBSD: dohooks.9,v 1.2 2001/07/28 00:09:24 mpech Exp $ .\" .\" Copyright (c) 2001 Niklas Hallqvist. .\" All rights reserved. @@ -41,7 +41,7 @@ The function invokes all hooks established using the .Xr hook_establish 9 function. -Hooks are called in the order of the the TAILQ that +Hooks are called in the order of the TAILQ that .Fa head points to, however .Xr hook_establish 9 diff --git a/share/man/man9/dostartuphooks.9 b/share/man/man9/dostartuphooks.9 index 1cd6834ecea..04f5cb0fe73 100644 --- a/share/man/man9/dostartuphooks.9 +++ b/share/man/man9/dostartuphooks.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: dostartuphooks.9,v 1.1 2001/07/27 09:55:07 niklas Exp $ +.\" $OpenBSD: dostartuphooks.9,v 1.2 2001/07/28 00:09:24 mpech Exp $ .\" .\" Copyright (c) 2001 Niklas Hallqvist. .\" All rights reserved. @@ -47,9 +47,10 @@ This function is called from .Fn main with interrupts turned on. It is called immediately before the system configures its root and swap -devices, but fully after all normal autoconfiguration. This can be used -to let device subsystems needing delayed configuration (e.g., due to very long -initialization times) still provide the root device. The +devices, but fully after all normal autoconfiguration. +This can be used to let device subsystems needing delayed configuration (e.g., +due to very long initialization times) still provide the root device. +The I2O system, implemented by the .Xr iop 4 and diff --git a/share/man/man9/hook_establish.9 b/share/man/man9/hook_establish.9 index 0b09fcb3a42..02d933081ba 100644 --- a/share/man/man9/hook_establish.9 +++ b/share/man/man9/hook_establish.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: hook_establish.9,v 1.1 2001/07/27 09:55:07 niklas Exp $ +.\" $OpenBSD: hook_establish.9,v 1.2 2001/07/28 00:09:24 mpech Exp $ .\" .\" Copyright (c) 2001 Niklas Hallqvist. .\" All rights reserved. @@ -50,7 +50,8 @@ If is non-zero, the hook is added to the tail of the list denoted by the TAILQ_HEAD pointer .Fa head , -otherwise to the front. The +otherwise to the front. +The .Xr dohooks 9 function will at its invocation call each hook from the front of this list. diff --git a/share/man/man9/startuphook_establish.9 b/share/man/man9/startuphook_establish.9 index a8b76bb06d9..2c5f8dea25b 100644 --- a/share/man/man9/startuphook_establish.9 +++ b/share/man/man9/startuphook_establish.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: startuphook_establish.9,v 1.1 2001/07/27 09:55:07 niklas Exp $ +.\" $OpenBSD: startuphook_establish.9,v 1.2 2001/07/28 00:09:24 mpech Exp $ .\" .\" Copyright (c) 1995 Niklas Hallqvist. .\" All rights reserved. @@ -78,7 +78,8 @@ Otherwise, it returns .Dv NULL . .Sh EXAMPLES It may be appropriate to use a startup hook to provide potential root or -swap devices that have delayed configuration. The +swap devices that have delayed configuration. +The .Xr iop 4 shows an example of this usage. .Sh SEE ALSO |