taskq
void iwx_add_task(struct iwx_softc *, struct taskq *, struct task *);
void iwx_del_task(struct iwx_softc *, struct taskq *, struct task *);
iwx_add_task(struct iwx_softc *sc, struct taskq *taskq, struct task *task)
if (!task_add(taskq, task))
iwx_del_task(struct iwx_softc *sc, struct taskq *taskq, struct task *task)
if (task_del(taskq, task))
struct taskq *sc_nswq;
void iwm_add_task(struct iwm_softc *, struct taskq *, struct task *);
void iwm_del_task(struct iwm_softc *, struct taskq *, struct task *);
iwm_add_task(struct iwm_softc *sc, struct taskq *taskq, struct task *task)
if (!task_add(taskq, task))
iwm_del_task(struct iwm_softc *sc, struct taskq *taskq, struct task *task)
if (task_del(taskq, task))
struct taskq *sc_nswq;
#define systq (struct taskq*)(0x1)
task_add(struct taskq* tasq, struct task *w)
static struct taskq*
task_del(struct taskq* tasq, struct task *w)