Lines Matching refs:tasklet_struct
136 struct tasklet_struct { struct
137 TAILQ_ENTRY(tasklet_struct) entry;
146 struct tasklet_struct _name = { .func = (_func), .data = (_data) } argument
150 extern void tasklet_schedule(struct tasklet_struct *);
151 extern void tasklet_kill(struct tasklet_struct *);
152 extern void tasklet_init(struct tasklet_struct *, tasklet_func_t *,
154 extern void tasklet_enable(struct tasklet_struct *);
155 extern void tasklet_disable(struct tasklet_struct *);
156 extern void tasklet_disable_nosync(struct tasklet_struct *);
157 extern int tasklet_trylock(struct tasklet_struct *);
158 extern void tasklet_unlock(struct tasklet_struct *);
159 extern void tasklet_unlock_wait(struct tasklet_struct *ts);