Searched refs:waitqueue (Results 1 – 1 of 1) sorted by relevance
261 #define ENA_WAIT_EVENT_INIT(waitqueue) \ argument263 cv_init(&((waitqueue).wq), "cv"); \264 mtx_init(&((waitqueue).mtx), "wq", NULL, MTX_DEF); \278 #define ENA_WAIT_EVENT_CLEAR(waitqueue) \ argument279 cv_init(&((waitqueue).wq), (waitqueue).wq.cv_description)280 #define ENA_WAIT_EVENT_WAIT(waitqueue, timeout_us) \ argument282 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 …]