]> err.no Git - linux-2.6/blobdiff - include/linux/workqueue.h
[PATCH] Pass struct dev pointer to dma_cache_sync()
[linux-2.6] / include / linux / workqueue.h
index 4a3ea83c6d16fc5e9bd60c7ec72bf30967f96d53..f0cb1df7b4753ae0cf047fd54a6c68082db8c85f 100644 (file)
@@ -147,9 +147,11 @@ struct execute_work {
 
 
 extern struct workqueue_struct *__create_workqueue(const char *name,
-                                                   int singlethread);
-#define create_workqueue(name) __create_workqueue((name), 0)
-#define create_singlethread_workqueue(name) __create_workqueue((name), 1)
+                                                   int singlethread,
+                                                   int freezeable);
+#define create_workqueue(name) __create_workqueue((name), 0, 0)
+#define create_freezeable_workqueue(name) __create_workqueue((name), 0, 1)
+#define create_singlethread_workqueue(name) __create_workqueue((name), 1, 0)
 
 extern void destroy_workqueue(struct workqueue_struct *wq);