Changes in kernel/generic/include/synch/workqueue.h [0adfc9d:89ea2dc] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/synch/workqueue.h
r0adfc9d r89ea2dc 61 61 extern void workq_global_worker_init(void); 62 62 extern void workq_global_stop(void); 63 extern intworkq_global_enqueue_noblock(work_t *, work_func_t);64 extern intworkq_global_enqueue(work_t *, work_func_t);63 extern bool workq_global_enqueue_noblock(work_t *, work_func_t); 64 extern bool workq_global_enqueue(work_t *, work_func_t); 65 65 66 66 extern struct work_queue * workq_create(const char *); 67 67 extern void workq_destroy(struct work_queue *); 68 extern intworkq_init(struct work_queue *, const char *);68 extern bool workq_init(struct work_queue *, const char *); 69 69 extern void workq_stop(struct work_queue *); 70 extern intworkq_enqueue_noblock(struct work_queue *, work_t *, work_func_t);71 extern intworkq_enqueue(struct work_queue *, work_t *, work_func_t);70 extern bool workq_enqueue_noblock(struct work_queue *, work_t *, work_func_t); 71 extern bool workq_enqueue(struct work_queue *, work_t *, work_func_t); 72 72 73 73 extern void workq_print_info(struct work_queue *);
Note:
See TracChangeset
for help on using the changeset viewer.