timeout.9 revision 1.10
$OpenBSD: timeout.9,v 1.10 2000/06/28 04:07:45 aaron Exp $

Copyright (c) 2000 Artur Grabowski <art@openbsd.org>
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

.Dd June 23, 1996 .Dt TIMEOUT 9 .Os .Sh NAME .Nm timeout_set , .Nm timeout_add , .Nm timeout_del , .Nm timeout_pending , .Nm timeout_initialized .Nd execute a function after a specified period of time .Sh SYNOPSIS .Fd #include <sys/types.h> .Fd #include <sys/timeout.h> .Fn "timeout_set" "struct timeout *to" "void (*fn)(void *)" "void *arg" .Fn "timeout_add" "struct timeout *to" "int ticks" .Fn "timeout_del" "struct timeout *to" .Fn "timeout_pending" "struct timeout *to" .Fn "timeout_initialized" "struct timeout *to" .Sh DESCRIPTION The .Nm timeout API provides a mechanism to execute a function at a given time. The granularity of the time is limited by the granularity of the .Nm hardclock timer which executes .Nm hz times a second. The function will be called at softclock interrupt level.

p It is the responsibility of the caller to provide these functions with pre-allocated timeout structures. All functions in this API may be used in interrupt context below .Fn splclock .

p This API replaces the historic functions .Fn timeout and .Fn untimeout .

p The function .Fn timeout_set prepares the timeout structure .Fa to to be used in future calls to .Fn timeout_add and .Fn timeout_del . The timeout will be prepared to call the function specified by the .Fa fn argument with a .Fa void * argument given in the .Fa arg argument. Once initialized, the .Fa to structure can be used in repeatedly in .Fn timeout_add and .Fn timeout_del and does not need to be reinitialized unless you wish to change the function called and/or the argument to it.

p The function .Fn timeout_add schedules the execution of the .Fa to timeout in at least .Fa ticks Ns No /hz seconds. Negative values of .Fa ticks are illegal. If the value is .Sq 0 it will, in the current implementation, be treated as .Sq 1 , but in the future it might cause an immediate timeout. The timeout in the .Fa to argument must be already initialized by .Fn timeout_set and may not be used in calls to .Fn timeout_set until it has timed out or been removed with .Fn timeout_del . If the timeout in the .Fa to argument is already scheduled, the old execution time will be replaced by the new one.

p The function .Fn timeout_del will cancel the timeout in the argument .Fa to . If the timeout has already executed or has never been added the call will have no effect.

p The .Fn timeout_pending macro can be used to check if a timeout is scheduled to run.

p The .Fn timeout_initialized macro can be used to check if a timeout has been initialized.

p The old .Fn timeout and .Fn untimeout interface is implemented as wrappers around the new API, but it's obsolete and will be removed in the future. .Sh CODE REFERENCES These functions are implemented in the file

a sys/kern/kern_timeout.c . .Sh SEE ALSO .Xr hz 9 , .Xr sleep 9 , .Xr splclock 9 .Sh BUGS The .Fn timeout_add function executes in linear time depending on the number of pending timeouts. It will also block all interrupts while inserting the timeout to the timeout queue. Thus it is not recommended to use a large number of timeouts in the system.