Home | History | Annotate | Line # | Download | only in man9
condvar.9 revision 1.1
 $NetBSD: condvar.9,v 1.1 2006/11/13 16:22:11 ad Exp $

Copyright (c) 2006 The NetBSD Foundation, Inc.
All rights reserved.

This code is derived from software contributed to The NetBSD Foundation
by Andrew Doran.

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. All advertising materials mentioning features or use of this software
must display the following acknowledgement:
This product includes software developed by the NetBSD
Foundation, Inc. and its contributors.
4. Neither the name of The NetBSD Foundation nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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.

.Dd November 13, 2006 .Dt CONDVAR 9 .Os .Sh NAME .Nm cv , .Nm condvar , .Nm cv_init , .Nm cv_destroy , .Nm cv_wait , .Nm cv_wait_sig , .Nm cv_timedwait , .Nm cv_timedwait_sig , .Nm cv_signal , .Nm cv_broadcast .Nd condition variables .Sh SYNOPSIS n sys/condvar.h .Ft void .Fn cv_init "kcondvar_t *cv" "const char *wmesg" .Ft void .Fn cv_destroy "kcondvar_t *cv" .Ft void .Fn cv_wait "kcondvar_t *cv" "kmutex_t *mtx" .Ft int .Fn cv_wait_sig "kcondvar_t *cv" "kmutex_t *mtx" .Ft int .Fn cv_timedwait "kcondvar_t *cv" "kmutex_t *mtx" "int ticks" .Ft int .Fn cv_timedwait_sig "kcondvar_t *cv" "kmutex_t *mtx" "int ticks" .Ft void .Fn cv_signal "kcondvar_t *cv" .Ft void .Fn cv_broadcast "kcondvar_t *cv" .Sh DESCRIPTION Condition variables (CVs) are used in the kernel to synchronize access to resources that are limited (for example, memory) and to wait for pending I/O operations to complete.

p The .Vt kcondvar_t type provides storage for the CV object. This should be treated as an opaque object and not examined directly by consumers. .Sh FUNCTIONS l -tag -width abcd t Fn cv_init "cv" "wmesg"

p Initialize a CV for use. No other operations can be performed on the CV until it has been initialized.

p The .Fa wmesg argument specifies a string of no more than 8 characters that describes the resource or condition associated with the CV. The kernel does not use this argument directly but makes it available for utilities such as .Xr ps 1 to display. t Fn cv_destroy "cv"

p Release resources used by a CV. The CV must not be in use when it is destroyed, and must not be used afterwards. t Fn cv_wait "cv" "mtx"

p Cause the current LWP to wait non-interruptably for access to a resource, or for an I/O operation to complete. The LWP will resume execution when awoken by another thread using .Fn cv_signal or .Fn cv_broadcast .

p .Fa mtx specifies a kernel mutex to be used as an interlock, and must be held by the calling LWP on entry to .Fn cv_wait . It will be released once the LWP has prepared to sleep, and will be reacquired before .Fn cv_wait returns.

p A small window exists between testing for availability of a resource and waiting for the resource with .Fn cv_wait , in which the resource may become available again. The interlock is used to guarentee that the resource will not be signalled as available until the calling LWP has begun to wait for it.

p Non-interruptable waits have the potential to deadlock the system, and so must be kept short (typically, under one second). t Fn cv_wait_sig "cv" "mtx"

p As per .Fn cv_wait , but causes the current LWP to wait interruptably. If the LWP recieves a signal, or is interrupted by another condition such as its containing process exiting, the wait is ended early and an error code returned.

p If .Fn cv_wait_sig returns as a result of a signal, the return value is ERESTART if the signal has the SA_RESTART property. If awoken normally, the value is zero, and EINTR under all other conditions. t Fn cv_timedwait "cv" "mtx" "ticks"

p As per .Fn cv_wait , but will return early if a timeout specified by the .Fa ticks argument expires.

p .Fa ticks is an architecture and system dependent value related to the number of clock interrupts per second. See .Xr hz 9 for details. The .Xr mstohz 9 macro can be used to convert a timeout expressed in milliseconds to one suitable for .Fn cv_timedwait .

p If the timeout expires before the LWP is awoken, the return value is EWOULDBLOCK. If awoken normally, the return value is zero. t Fn cv_timedwait_sig "cv" "mtx" "ticks"

p As per .Fn cv_wait_sig , but also accepts a timeout value and will return EWOULDBLOCK if the timeout expires. t Fn cv_signal "cv"

p Awaken one LWP (potentially among many) that is waiting on the specified condition variable.

p (Note that .Fn cv_signal is erroneously named in that it does not send a signal in the traditional sense to LWPs waiting on a CV.) t Fn cv_broadcast "cv"

p Awaken all LWPs waiting on the specified condition variable. .Sh EXAMPLES d -literal Consuming a resource: /* * Lock the resource. Its mutex will also serve as the * interlock. */ mutex_enter(&res->mutex); /* * Wait for the resource to become available, and take * ownership of it. */ while (res->state == BUSY) cv_wait(&res->condvar, &res->mutex); res->state = BUSY; /* * It's now available, so consume it. */ consume(res); mutex_exit(&res->mutex); Releasing a resource for the next consumer to use: mutex_enter(&res->mutex); res->state = IDLE; cv_signal(&res->condvar); mutex_exit(&res->mutex); .Ed .Sh CODE REFERENCES This section describes places within the .Nx source tree where actual code implementing or using the name lookup cache can be found. All pathnames are relative to

a /usr/src .

p The core of the CV implementation is in

a sys/kern/kern_condvar.c .

p The header file

a sys/sys/condvar.h describes the public interface, and interfaces that machine-dependent code must provide to support RW locks. .Sh SEE ALSO .Xr condvar 9 , .Xr errno 9 , .Xr mstohz 9 , .Xr mutex 9 , .Xr sigaction 2 , .Xr rwlock 9 .

p Jim Mauro and Richard McDougall, .Em Solaris Internals: Core Kernel Architecture , Prentice Hall, 2001. ISBN 0-13-022496-0 .Sh HISTORY The CV primatives first appeared in .Nx 5.0 . They are modelled after similar primatives implemented in Sun Solaris, and have been extended for NetBSD.