Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/sys/condvar.h,v rcsdiff: /ftp/cvs/cvsroot/src/sys/sys/condvar.h,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- src/sys/sys/condvar.h 2007/07/09 21:11:32 1.5 +++ src/sys/sys/condvar.h 2007/08/01 23:21:14 1.6 @@ -1,4 +1,4 @@ -/* $NetBSD: condvar.h,v 1.5 2007/07/09 21:11:32 ad Exp $ */ +/* $NetBSD: condvar.h,v 1.6 2007/08/01 23:21:14 ad Exp $ */ /*- * Copyright (c) 2006, 2007 The NetBSD Foundation, Inc. @@ -66,6 +66,8 @@ int cv_timedwait_sig(kcondvar_t *, kmute void cv_signal(kcondvar_t *); void cv_broadcast(kcondvar_t *); +void cv_wakeup(kcondvar_t *); + bool cv_has_waiters(kcondvar_t *); /* The "lightning bolt", awoken once per second by the clock interrupt. */