Home
last modified time | relevance | path

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

/freebsd-13.1/sys/contrib/ena-com/
H A Dena_plat.h218 #define ENA_WAIT_EVENT_INIT(waitqueue) \ argument
220 cv_init(&((waitqueue).wq), "cv"); \
235 #define ENA_WAIT_EVENT_CLEAR(waitqueue) \ argument
236 cv_init(&((waitqueue).wq), (waitqueue).wq.cv_description)
239 mtx_lock(&((waitqueue).mtx)); \
240 cv_timedwait(&((waitqueue).wq), &((waitqueue).mtx), \
242 mtx_unlock(&((waitqueue).mtx)); \
244 #define ENA_WAIT_EVENT_SIGNAL(waitqueue) \ argument
246 mtx_lock(&((waitqueue).mtx)); \
247 cv_broadcast(&((waitqueue).wq)); \
[all …]