aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/workqueue.h
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2010-09-16 04:48:29 -0400
committerTejun Heo <tj@kernel.org>2010-09-19 11:51:05 -0400
commit09383498c5d35262e643bfdbae84826177a3c624 (patch)
treeec75ee767bff28cabbd1d1b82cfc3457147dda33 /include/linux/workqueue.h
parentbaf59022c37d43f202e62d5130e4bac5e825b426 (diff)
workqueue: implement flush[_delayed]_work_sync()
Implement flush[_delayed]_work_sync(). These are flush functions which also make sure no CPU is still executing the target work from earlier queueing instances. These are similar to cancel[_delayed]_work_sync() except that the target work item is flushed instead of cancelled. Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'include/linux/workqueue.h')
-rw-r--r--include/linux/workqueue.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h
index bb9b683ea6fa..e33ff4a91703 100644
--- a/include/linux/workqueue.h
+++ b/include/linux/workqueue.h
@@ -355,9 +355,11 @@ extern int keventd_up(void);
355int execute_in_process_context(work_func_t fn, struct execute_work *); 355int execute_in_process_context(work_func_t fn, struct execute_work *);
356 356
357extern bool flush_work(struct work_struct *work); 357extern bool flush_work(struct work_struct *work);
358extern bool flush_work_sync(struct work_struct *work);
358extern bool cancel_work_sync(struct work_struct *work); 359extern bool cancel_work_sync(struct work_struct *work);
359 360
360extern bool flush_delayed_work(struct delayed_work *dwork); 361extern bool flush_delayed_work(struct delayed_work *dwork);
362extern bool flush_delayed_work_sync(struct delayed_work *work);
361extern bool cancel_delayed_work_sync(struct delayed_work *dwork); 363extern bool cancel_delayed_work_sync(struct delayed_work *dwork);
362 364
363extern void workqueue_set_max_active(struct workqueue_struct *wq, 365extern void workqueue_set_max_active(struct workqueue_struct *wq,