Lines Matching defs:cv
81 * localcount_drain(lc, cv, interlock)
85 * and waits on cv. The cv and interlock passed here must be the
98 localcount_drain(struct localcount *lc, kcondvar_t *cv, kmutex_t *interlock)
113 * so that it is safe to wait on the cv for them.
129 cv_wait(cv, interlock);
228 * localcount_release(lc, cv, interlock)
232 * localcount_drain by acquiring interlock, waking cv, and
233 * releasing interlock. The cv and interlock passed here must be
240 localcount_release(struct localcount *lc, kcondvar_t *cv, kmutex_t *interlock)
263 cv_broadcast(cv);