Lines Matching refs:tasklet_struct
191 struct tasklet_struct { struct
192 TAILQ_ENTRY(tasklet_struct) entry;
201 struct tasklet_struct _name = { .func = (_func), .data = (_data) } argument
205 extern void tasklet_schedule(struct tasklet_struct *);
206 extern void tasklet_kill(struct tasklet_struct *);
207 extern void tasklet_init(struct tasklet_struct *, tasklet_func_t *,
209 extern void tasklet_enable(struct tasklet_struct *);
210 extern void tasklet_disable(struct tasklet_struct *);
211 extern int tasklet_trylock(struct tasklet_struct *);
212 extern void tasklet_unlock(struct tasklet_struct *);
213 extern void tasklet_unlock_wait(struct tasklet_struct *ts);