Changes in kernel/generic/include/synch/workqueue.h [89ea2dc:0adfc9d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/synch/workqueue.h
r89ea2dc r0adfc9d 61 61 extern void workq_global_worker_init(void); 62 62 extern void workq_global_stop(void); 63 extern boolworkq_global_enqueue_noblock(work_t *, work_func_t);64 extern boolworkq_global_enqueue(work_t *, work_func_t);63 extern int workq_global_enqueue_noblock(work_t *, work_func_t); 64 extern int 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 boolworkq_init(struct work_queue *, const char *);68 extern int workq_init(struct work_queue *, const char *); 69 69 extern void workq_stop(struct work_queue *); 70 extern boolworkq_enqueue_noblock(struct work_queue *, work_t *, work_func_t);71 extern boolworkq_enqueue(struct work_queue *, work_t *, work_func_t);70 extern int workq_enqueue_noblock(struct work_queue *, work_t *, work_func_t); 71 extern int 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.