Searched refs:ald_mtx (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.2-release/sys/kern/
H A Dkern_alq.c94 * The ald_mtx protects the ald_queues list and the ald_active list.
96 static struct mtx ald_mtx; variable in typeref:struct:mtx
104 #define ALD_LOCK() mtx_lock(&ald_mtx)
105 #define ALD_UNLOCK() mtx_unlock(&ald_mtx)
185 mtx_init(&ald_mtx, "ALDmtx", NULL, MTX_DEF|MTX_QUIET);
206 mtx_sleep(&ald_active, &ald_mtx, PWAIT, "aldslp", 0);
249 * anything until we mtx_sleep because we hold the ald_mtx.
254 mtx_sleep(ald_proc, &ald_mtx, PWAIT, "aldslp", 0);
944 mtx_destroy(&ald_mtx);

Completed in 48 milliseconds