aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/workqueue.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/workqueue.h')
-rw-r--r--include/linux/workqueue.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h
index 9466e860d8c2..ec218cec1f9b 100644
--- a/include/linux/workqueue.h
+++ b/include/linux/workqueue.h
@@ -211,6 +211,9 @@ __create_workqueue_key(const char *name, int singlethread,
211#define create_freezeable_workqueue(name) __create_workqueue((name), 1, 1, 0) 211#define create_freezeable_workqueue(name) __create_workqueue((name), 1, 1, 0)
212#define create_singlethread_workqueue(name) __create_workqueue((name), 1, 0, 0) 212#define create_singlethread_workqueue(name) __create_workqueue((name), 1, 0, 0)
213 213
214extern void set_workqueue_prio(struct workqueue_struct *wq, int policy,
215 int rt_priority, int nice);
216
214extern void destroy_workqueue(struct workqueue_struct *wq); 217extern void destroy_workqueue(struct workqueue_struct *wq);
215 218
216extern int queue_work(struct workqueue_struct *wq, struct work_struct *work); 219extern int queue_work(struct workqueue_struct *wq, struct work_struct *work);