Home | History | Annotate | Line # | Download | only in kern
kern_condvar.c revision 1.1.2.1
      1  1.1.2.1  ad /*	$NetBSD: kern_condvar.c,v 1.1.2.1 2006/10/20 19:40:17 ad Exp $	*/
      2  1.1.2.1  ad 
      3  1.1.2.1  ad /*-
      4  1.1.2.1  ad  * Copyright (c) 2006 The NetBSD Foundation, Inc.
      5  1.1.2.1  ad  * All rights reserved.
      6  1.1.2.1  ad  *
      7  1.1.2.1  ad  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1.2.1  ad  * by Andrew Doran.
      9  1.1.2.1  ad  *
     10  1.1.2.1  ad  * Redistribution and use in source and binary forms, with or without
     11  1.1.2.1  ad  * modification, are permitted provided that the following conditions
     12  1.1.2.1  ad  * are met:
     13  1.1.2.1  ad  * 1. Redistributions of source code must retain the above copyright
     14  1.1.2.1  ad  *    notice, this list of conditions and the following disclaimer.
     15  1.1.2.1  ad  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1.2.1  ad  *    notice, this list of conditions and the following disclaimer in the
     17  1.1.2.1  ad  *    documentation and/or other materials provided with the distribution.
     18  1.1.2.1  ad  * 3. All advertising materials mentioning features or use of this software
     19  1.1.2.1  ad  *    must display the following acknowledgement:
     20  1.1.2.1  ad  *	This product includes software developed by the NetBSD
     21  1.1.2.1  ad  *	Foundation, Inc. and its contributors.
     22  1.1.2.1  ad  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.1.2.1  ad  *    contributors may be used to endorse or promote products derived
     24  1.1.2.1  ad  *    from this software without specific prior written permission.
     25  1.1.2.1  ad  *
     26  1.1.2.1  ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.1.2.1  ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.1.2.1  ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.1.2.1  ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.1.2.1  ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.1.2.1  ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.1.2.1  ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.1.2.1  ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.1.2.1  ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.1.2.1  ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.1.2.1  ad  * POSSIBILITY OF SUCH DAMAGE.
     37  1.1.2.1  ad  */
     38  1.1.2.1  ad 
     39  1.1.2.1  ad /*
     40  1.1.2.1  ad  * Kernel condition variables implementation, modeled after those found in
     41  1.1.2.1  ad  * Solaris, a description of which can be found in:
     42  1.1.2.1  ad  *
     43  1.1.2.1  ad  *	Solaris Internals: Core Kernel Architecture, Jim Mauro and
     44  1.1.2.1  ad  *	    Richard McDougall.
     45  1.1.2.1  ad  */
     46  1.1.2.1  ad 
     47  1.1.2.1  ad #include <sys/cdefs.h>
     48  1.1.2.1  ad __KERNEL_RCSID(0, "$NetBSD: kern_condvar.c,v 1.1.2.1 2006/10/20 19:40:17 ad Exp $");
     49  1.1.2.1  ad 
     50  1.1.2.1  ad #include <sys/param.h>
     51  1.1.2.1  ad #include <sys/proc.h>
     52  1.1.2.1  ad #include <sys/sched.h>
     53  1.1.2.1  ad #include <sys/systm.h>
     54  1.1.2.1  ad #include <sys/condvar.h>
     55  1.1.2.1  ad #include <sys/sleepq.h>
     56  1.1.2.1  ad 
     57  1.1.2.1  ad /*
     58  1.1.2.1  ad  * cv_init:
     59  1.1.2.1  ad  *
     60  1.1.2.1  ad  *	Initialize a condition variable for use.
     61  1.1.2.1  ad  */
     62  1.1.2.1  ad void
     63  1.1.2.1  ad cv_init(kcondvar_t *cv, kcondvar_type_t type, const char *wmesg)
     64  1.1.2.1  ad {
     65  1.1.2.1  ad 
     66  1.1.2.1  ad 	KASSERT(type == CV_DEFAULT);
     67  1.1.2.1  ad 	cv->cv_wmesg = wmesg;
     68  1.1.2.1  ad 	cv->cv_ptr = NULL;
     69  1.1.2.1  ad }
     70  1.1.2.1  ad 
     71  1.1.2.1  ad /*
     72  1.1.2.1  ad  * cv_destroy:
     73  1.1.2.1  ad  *
     74  1.1.2.1  ad  *	Tear down a condition variable.
     75  1.1.2.1  ad  */
     76  1.1.2.1  ad void
     77  1.1.2.1  ad cv_destroy(kcondvar_t *cv)
     78  1.1.2.1  ad {
     79  1.1.2.1  ad 
     80  1.1.2.1  ad 	KASSERT(cv->cv_waiters == 0);
     81  1.1.2.1  ad }
     82  1.1.2.1  ad 
     83  1.1.2.1  ad /*
     84  1.1.2.1  ad  * cv_wait:
     85  1.1.2.1  ad  *
     86  1.1.2.1  ad  *	Wait non-interruptably on a condition variable until awoken.
     87  1.1.2.1  ad  */
     88  1.1.2.1  ad void
     89  1.1.2.1  ad cv_wait(kcondvar_t *cv, kmutex_t *mtx)
     90  1.1.2.1  ad {
     91  1.1.2.1  ad 	struct lwp *l = curlwp;
     92  1.1.2.1  ad 	sleepq_t *sq;
     93  1.1.2.1  ad 
     94  1.1.2.1  ad 	LOCK_ASSERT(mutex_owned(mtx));
     95  1.1.2.1  ad 
     96  1.1.2.1  ad 	if (sleepq_dontsleep(l)) {
     97  1.1.2.1  ad 		(void)sleepq_abort(mtx, 0);
     98  1.1.2.1  ad 		return;
     99  1.1.2.1  ad 	}
    100  1.1.2.1  ad 
    101  1.1.2.1  ad 	sq = sleeptab_lookup(cv);
    102  1.1.2.1  ad 	cv->cv_waiters++;
    103  1.1.2.1  ad 
    104  1.1.2.1  ad 	sleepq_enter(sq, sched_kpri(l), cv, cv->cv_wmesg, 0, 0);
    105  1.1.2.1  ad 
    106  1.1.2.1  ad 	mutex_exit_linked(mtx, l->l_mutex);
    107  1.1.2.1  ad 
    108  1.1.2.1  ad 	(void)sleepq_block(sq, 0);
    109  1.1.2.1  ad 
    110  1.1.2.1  ad 	mutex_enter(mtx);
    111  1.1.2.1  ad }
    112  1.1.2.1  ad 
    113  1.1.2.1  ad /*
    114  1.1.2.1  ad  * cv_wait_sig:
    115  1.1.2.1  ad  *
    116  1.1.2.1  ad  *	Wait on a condition variable until a awoken or a signal is received.
    117  1.1.2.1  ad  *	Will also return early if the process is exiting.  Returns zero if
    118  1.1.2.1  ad  *	awoken normallly, ERESTART if a signal was received and the system
    119  1.1.2.1  ad  *	call is restartable, or EINTR otherwise.
    120  1.1.2.1  ad  */
    121  1.1.2.1  ad int
    122  1.1.2.1  ad cv_wait_sig(kcondvar_t *cv, kmutex_t *mtx)
    123  1.1.2.1  ad {
    124  1.1.2.1  ad 	struct lwp *l = curlwp;
    125  1.1.2.1  ad 	sleepq_t *sq;
    126  1.1.2.1  ad 	int error;
    127  1.1.2.1  ad 
    128  1.1.2.1  ad 	LOCK_ASSERT(mutex_owned(mtx));
    129  1.1.2.1  ad 
    130  1.1.2.1  ad 	if (sleepq_dontsleep(l))
    131  1.1.2.1  ad 		return sleepq_abort(mtx, 0);
    132  1.1.2.1  ad 
    133  1.1.2.1  ad 	sq = sleeptab_lookup(cv);
    134  1.1.2.1  ad 	cv->cv_waiters++;
    135  1.1.2.1  ad 
    136  1.1.2.1  ad 	sleepq_enter(sq, sched_kpri(l), cv, cv->cv_wmesg, 0, 1);
    137  1.1.2.1  ad 
    138  1.1.2.1  ad 	mutex_exit_linked(mtx, l->l_mutex);
    139  1.1.2.1  ad 
    140  1.1.2.1  ad 	error = sleepq_block(sq, 0);
    141  1.1.2.1  ad 
    142  1.1.2.1  ad 	mutex_enter(mtx);
    143  1.1.2.1  ad 
    144  1.1.2.1  ad 	return error;
    145  1.1.2.1  ad }
    146  1.1.2.1  ad 
    147  1.1.2.1  ad /*
    148  1.1.2.1  ad  * cv_timedwait:
    149  1.1.2.1  ad  *
    150  1.1.2.1  ad  *	Wait on a condition variable until awoken or the specified timeout
    151  1.1.2.1  ad  *	expires.  Returns zero if awoken normally or EWOULDBLOCK if the
    152  1.1.2.1  ad  *	timeout expired.
    153  1.1.2.1  ad  */
    154  1.1.2.1  ad int
    155  1.1.2.1  ad cv_timedwait(kcondvar_t *cv, kmutex_t *mtx, int timo)
    156  1.1.2.1  ad {
    157  1.1.2.1  ad 	struct lwp *l = curlwp;
    158  1.1.2.1  ad 	sleepq_t *sq;
    159  1.1.2.1  ad 	int error;
    160  1.1.2.1  ad 
    161  1.1.2.1  ad 	LOCK_ASSERT(mutex_owned(mtx));
    162  1.1.2.1  ad 
    163  1.1.2.1  ad 	if (sleepq_dontsleep(l))
    164  1.1.2.1  ad 		return sleepq_abort(mtx, 0);
    165  1.1.2.1  ad 
    166  1.1.2.1  ad 	sq = sleeptab_lookup(cv);
    167  1.1.2.1  ad 	cv->cv_waiters++;
    168  1.1.2.1  ad 
    169  1.1.2.1  ad 	sleepq_enter(sq, sched_kpri(l), cv, cv->cv_wmesg, timo, 0);
    170  1.1.2.1  ad 
    171  1.1.2.1  ad 	mutex_exit_linked(mtx, l->l_mutex);
    172  1.1.2.1  ad 
    173  1.1.2.1  ad 	error = sleepq_block(sq, timo);
    174  1.1.2.1  ad 
    175  1.1.2.1  ad 	mutex_enter(mtx);
    176  1.1.2.1  ad 
    177  1.1.2.1  ad 	return error;
    178  1.1.2.1  ad }
    179  1.1.2.1  ad 
    180  1.1.2.1  ad /*
    181  1.1.2.1  ad  * cv_timedwait_sig:
    182  1.1.2.1  ad  *
    183  1.1.2.1  ad  *	Wait on a condition variable until a timeout expires, awoken or a
    184  1.1.2.1  ad  *	signal is received.  Will also return early if the process is
    185  1.1.2.1  ad  *	exiting.  Returns zero if awoken normallly, EWOULDBLOCK if the
    186  1.1.2.1  ad  *	timeout expires, ERESTART if a signal was received and the system
    187  1.1.2.1  ad  *	call is restartable, or EINTR otherwise.
    188  1.1.2.1  ad  */
    189  1.1.2.1  ad int
    190  1.1.2.1  ad cv_timedwait_sig(kcondvar_t *cv, kmutex_t *mtx, int timo)
    191  1.1.2.1  ad {
    192  1.1.2.1  ad 	struct lwp *l = curlwp;
    193  1.1.2.1  ad 	sleepq_t *sq;
    194  1.1.2.1  ad 	int error;
    195  1.1.2.1  ad 
    196  1.1.2.1  ad 	LOCK_ASSERT(mutex_owned(mtx));
    197  1.1.2.1  ad 
    198  1.1.2.1  ad 	if (sleepq_dontsleep(l))
    199  1.1.2.1  ad 		return sleepq_abort(mtx, 0);
    200  1.1.2.1  ad 
    201  1.1.2.1  ad 	sq = sleeptab_lookup(cv);
    202  1.1.2.1  ad 	cv->cv_waiters++;
    203  1.1.2.1  ad 
    204  1.1.2.1  ad 	sleepq_enter(sq, sched_kpri(l), cv, cv->cv_wmesg, timo, 1);
    205  1.1.2.1  ad 
    206  1.1.2.1  ad 	mutex_exit_linked(mtx, l->l_mutex);
    207  1.1.2.1  ad 
    208  1.1.2.1  ad 	error = sleepq_block(sq, timo);
    209  1.1.2.1  ad 
    210  1.1.2.1  ad 	mutex_enter(mtx);
    211  1.1.2.1  ad 
    212  1.1.2.1  ad 	return error;
    213  1.1.2.1  ad }
    214  1.1.2.1  ad 
    215  1.1.2.1  ad /*
    216  1.1.2.1  ad  * cv_signal:
    217  1.1.2.1  ad  *
    218  1.1.2.1  ad  *	Wake the highest priority LWP waiting on a condition variable.
    219  1.1.2.1  ad  */
    220  1.1.2.1  ad void
    221  1.1.2.1  ad cv_signal(kcondvar_t *cv)
    222  1.1.2.1  ad {
    223  1.1.2.1  ad 	sleepq_t *sq;
    224  1.1.2.1  ad 
    225  1.1.2.1  ad 	sq = sleeptab_lookup(cv);
    226  1.1.2.1  ad 	if (cv->cv_waiters != 0) {
    227  1.1.2.1  ad 		cv->cv_waiters--;
    228  1.1.2.1  ad 		sleepq_wakeone(sq, cv);
    229  1.1.2.1  ad 	} else
    230  1.1.2.1  ad 		sleepq_unlock(sq);
    231  1.1.2.1  ad }
    232  1.1.2.1  ad 
    233  1.1.2.1  ad /*
    234  1.1.2.1  ad  * cv_broadcast:
    235  1.1.2.1  ad  *
    236  1.1.2.1  ad  *	Wake all LWPs waiting on a condition variable.
    237  1.1.2.1  ad  */
    238  1.1.2.1  ad void
    239  1.1.2.1  ad cv_broadcast(kcondvar_t *cv)
    240  1.1.2.1  ad {
    241  1.1.2.1  ad 	sleepq_t *sq;
    242  1.1.2.1  ad 
    243  1.1.2.1  ad 	sq = sleeptab_lookup(cv);
    244  1.1.2.1  ad 	if (cv->cv_waiters != 0) {
    245  1.1.2.1  ad 		sleepq_wakeall(sq, cv, cv->cv_waiters);
    246  1.1.2.1  ad 		cv->cv_waiters = 0;
    247  1.1.2.1  ad 	} else
    248  1.1.2.1  ad 		sleepq_unlock(sq);
    249  1.1.2.1  ad }
    250