Home
last modified time | relevance | path

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

/freebsd-14.2/sys/contrib/ena-com/
H A Dena_plat.h261 #define ENA_WAIT_EVENT_INIT(waitqueue) \ argument
263 cv_init(&((waitqueue).wq), "cv"); \
278 #define ENA_WAIT_EVENT_CLEAR(waitqueue) \ argument
279 cv_init(&((waitqueue).wq), (waitqueue).wq.cv_description)
282 mtx_lock(&((waitqueue).mtx)); \
283 cv_timedwait(&((waitqueue).wq), &((waitqueue).mtx), \
285 mtx_unlock(&((waitqueue).mtx)); \
287 #define ENA_WAIT_EVENT_SIGNAL(waitqueue) \ argument
289 mtx_lock(&((waitqueue).mtx)); \
290 cv_broadcast(&((waitqueue).wq)); \
[all …]