Changeset 132ab5d1 in mainline for kernel/generic/include/synch/workqueue.h
- Timestamp:
- 2018-01-30T03:20:45Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a6cc679
- Parents:
- 8bfb163 (diff), 6a5d05b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
kernel/generic/include/synch/workqueue.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/synch/workqueue.h
r8bfb163 r132ab5d1 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.
