Changeset 0adfc9d in mainline
- Timestamp:
- 2012-11-20T17:34:33Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 04d66804
- Parents:
- 82719589
- Location:
- kernel/generic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/synch/workqueue.h
r82719589 r0adfc9d 37 37 38 38 #include <adt/list.h> 39 #include <proc/thread.h>40 39 41 40 /* Fwd decl. */ 41 struct thread; 42 42 struct work_item; 43 43 struct work_queue; … … 76 76 77 77 extern void workq_after_thread_ran(void); 78 extern void workq_before_thread_is_ready( thread_t*);78 extern void workq_before_thread_is_ready(struct thread *); 79 79 80 80 #endif /* KERN_WORKQUEUE_H_ */ -
kernel/generic/src/synch/workqueue.c
r82719589 r0adfc9d 427 427 } 428 428 429 /** Adds a function to be invoked in a separate thread; may block ing.429 /** Adds a function to be invoked in a separate thread; may block. 430 430 * 431 431 * While the workq_enqueue() is unlikely to block, it may do so if too
Note:
See TracChangeset
for help on using the changeset viewer.