Home
last modified time | relevance | path

Searched refs:cv_event (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-condvar.c73 init_waitqueue_head(&cvp->cv_event); in __cv_init()
86 ASSERT(!waitqueue_active(&cvp->cv_event)); in cv_destroy_wakeup()
109 ASSERT3S(waitqueue_active(&cvp->cv_event), ==, 0); in __cv_destroy()
131 prepare_to_wait_exclusive(&cvp->cv_event, &wait, state); in cv_wait_common()
155 finish_wait(&cvp->cv_event, &wait); in cv_wait_common()
238 prepare_to_wait_exclusive(&cvp->cv_event, &wait, state); in __cv_timedwait_common()
262 finish_wait(&cvp->cv_event, &wait); in __cv_timedwait_common()
345 prepare_to_wait_exclusive(&cvp->cv_event, &wait, state); in __cv_timedwait_hires()
370 finish_wait(&cvp->cv_event, &wait); in __cv_timedwait_hires()
442 wake_up(&cvp->cv_event); in __cv_signal()
[all …]
/freebsd/sys/contrib/openzfs/include/os/linux/spl/sys/
H A Dcondvar.h69 wait_queue_head_t cv_event; member