Home | History | Annotate | Download | only in linux

Lines Matching full:work_struct

14 struct work_struct {
24 struct work_struct work;
35 struct work_struct n = __WORK_INITIALIZER(n, f, d)
64 extern int FASTCALL(queue_work(struct workqueue_struct *wq, struct work_struct *work));
65 extern int FASTCALL(queue_delayed_work(struct workqueue_struct *wq, struct work_struct *work, unsigned long delay));
67 struct work_struct *work, unsigned long delay);
70 extern int FASTCALL(schedule_work(struct work_struct *work));
71 extern int FASTCALL(schedule_delayed_work(struct work_struct *work, unsigned long delay));
73 extern int schedule_delayed_work_on(int cpu, struct work_struct *work, unsigned long delay);
80 void cancel_rearming_delayed_work(struct work_struct *work);
82 struct work_struct *);
91 static inline int cancel_delayed_work(struct work_struct *work)