Home
last modified time | relevance | path

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

/freebsd/sys/contrib/ena-com/
H A Dena_plat.h261 #define ENA_WAIT_EVENT_INIT(waitqueue) \ argument
263 cv_init(&((waitqueue).wq), "cv"); \
264 mtx_init(&((waitqueue).mtx), "wq", NULL, MTX_DEF); \
278 #define ENA_WAIT_EVENT_CLEAR(waitqueue) \ argument
279 cv_init(&((waitqueue).wq), (waitqueue).wq.cv_description)
280 #define ENA_WAIT_EVENT_WAIT(waitqueue, timeout_us) \ argument
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
[all …]