Mon May 4 13:37:57 2009 UTC ()
Add missing word.


(wiz)
diff -r1.23 -r1.24 src/share/man/man9/callout.9

cvs diff -r1.23 -r1.24 src/share/man/man9/callout.9 (expand / switch to unified diff)

--- src/share/man/man9/callout.9 2009/05/04 11:44:28 1.23
+++ src/share/man/man9/callout.9 2009/05/04 13:37:57 1.24
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1.\" $NetBSD: callout.9,v 1.23 2009/05/04 11:44:28 ad Exp $ 1.\" $NetBSD: callout.9,v 1.24 2009/05/04 13:37:57 wiz Exp $
2.\" 2.\"
3.\" Copyright (c) 2000, 2003, 2009 The NetBSD Foundation, Inc. 3.\" Copyright (c) 2000, 2003, 2009 The NetBSD Foundation, Inc.
4.\" All rights reserved. 4.\" All rights reserved.
5.\" 5.\"
6.\" This code is derived from software contributed to The NetBSD Foundation 6.\" This code is derived from software contributed to The NetBSD Foundation
7.\" by Jason R. Thorpe. 7.\" by Jason R. Thorpe.
8.\" 8.\"
9.\" Redistribution and use in source and binary forms, with or without 9.\" Redistribution and use in source and binary forms, with or without
10.\" modification, are permitted provided that the following conditions 10.\" modification, are permitted provided that the following conditions
11.\" are met: 11.\" are met:
12.\" 1. Redistributions of source code must retain the above copyright 12.\" 1. Redistributions of source code must retain the above copyright
13.\" notice, this list of conditions and the following disclaimer. 13.\" notice, this list of conditions and the following disclaimer.
14.\" 2. Redistributions in binary form must reproduce the above copyright 14.\" 2. Redistributions in binary form must reproduce the above copyright
@@ -149,27 +149,27 @@ and @@ -149,27 +149,27 @@ and
149.Fa arg 149.Fa arg
150respectively. 150respectively.
151The callout handle must already be initialized. 151The callout handle must already be initialized.
152If a callout will always be used with the same function and argument, 152If a callout will always be used with the same function and argument,
153then 153then
154.Fn callout_setfunc 154.Fn callout_setfunc
155used in conjunction with 155used in conjunction with
156.Fn callout_schedule 156.Fn callout_schedule
157is slightly more efficient than using 157is slightly more efficient than using
158.Fn callout_reset . 158.Fn callout_reset .
159.Pp 159.Pp
160The 160The
161.Fn callout_stop 161.Fn callout_stop
162function requests that the timer associated the callout handle 162function requests that the timer associated with the callout handle
163.Fa c 163.Fa c
164be stopped. 164be stopped.
165The 165The
166.Em PENDING 166.Em PENDING
167and 167and
168.Em EXPIRED 168.Em EXPIRED
169status for the callout handle is cleared. 169status for the callout handle is cleared.
170It is safe to call 170It is safe to call
171.Fn callout_stop 171.Fn callout_stop
172on a callout handle that is not pending, so long as it is initialized. 172on a callout handle that is not pending, so long as it is initialized.
173.Fn callout_stop 173.Fn callout_stop
174will return a non-zero value if the callout was 174will return a non-zero value if the callout was
175.Em EXPIRED . 175.Em EXPIRED .