NetBSD/share/man/man9/RUN_ONCE.9

109 lines
3.2 KiB
Groff
Raw Normal View History

.\" $NetBSD: RUN_ONCE.9,v 1.5 2006/01/17 00:14:16 wiz Exp $
2005-11-24 11:14:13 +03:00
.\"
.\" Copyright (c)2005 YAMAMOTO Takashi,
.\" 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.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``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 OR CONTRIBUTORS 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.
.\"
.\" ------------------------------------------------------------
2006-01-17 00:46:30 +03:00
.Dd January 17, 2006
2005-11-24 11:14:13 +03:00
.Dt RUN_ONCE 9
.Os
.\" ------------------------------------------------------------
.Sh NAME
.Nm RUN_ONCE
.Nd Run a function exactly once
.\" ------------------------------------------------------------
.Sh SYNOPSIS
.In sys/once.h
.\" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
.Vt ONCE_DECL(control);
.\" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2006-01-17 00:46:30 +03:00
.Ft int
2005-11-24 11:14:13 +03:00
.Fn RUN_ONCE \
2006-01-17 00:46:30 +03:00
"once_t *control" "int (*init_func)(void)"
2005-11-24 11:14:13 +03:00
.\" ------------------------------------------------------------
.Sh DESCRIPTION
.Fn RUN_ONCE
provides a functionality similar to
.Fn pthread_once 3 .
2006-01-17 02:58:43 +03:00
It ensures that, for a given
.Fa control ,
2005-11-24 11:14:13 +03:00
.Fn init_func
2006-01-17 02:58:43 +03:00
is executed (successfully) exactly once.
It is considered as a successful execution if and only if
2006-01-17 00:46:30 +03:00
.Fn init_func
2006-01-17 02:58:43 +03:00
returned 0.
As long as there was no successful execution,
.Fn RUN_ONCE
will try again each time it is called.
2006-01-17 00:46:30 +03:00
.Pp
.Fn RUN_ONCE
can sleep if it's called concurrently.
.\" ------------------------------------------------------------
.Sh RETURN VALUES
On failure,
.Fn RUN_ONCE
returns what
.Fn init_func
returned.
Otherwise, it returns 0.
2005-11-24 11:14:13 +03:00
.\" ------------------------------------------------------------
.Sh EXAMPLES
The following example shows how
.Fn RUN_ONCE
is used.
Regardless of how many times
2005-11-24 11:14:13 +03:00
.Fn some_func
is executed,
.Fn init_func
will be executed exactly once.
.Bd -literal
2006-01-17 00:46:30 +03:00
static int
2005-11-24 11:14:13 +03:00
init_func(void)
{
/*
* do some initialization.
*/
2006-01-17 00:46:30 +03:00
return 0; /* success */
2005-11-24 11:14:13 +03:00
}
int
some_func(void)
{
static DECL_ONCE(control);
RUN_ONCE(\*[Am]control, init_func);
2005-11-24 11:14:13 +03:00
/*
* we are sure that init_func has already been completed here.
*/
}
.Ed
.\" ------------------------------------------------------------
.Sh SEE ALSO
.Xr pthread_once 3 ,
2005-11-24 11:14:13 +03:00
.Xr intro 9 ,
.Xr ltsleep 9