Changeset 5573942 in mainline for kernel/generic/include
- Timestamp:
- 2007-02-04T11:46:18Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 15819e37
- Parents:
- cf5ddf6
- Location:
- kernel/generic/include
- Files:
-
- 3 edited
-
ddi/irq.h (modified) (1 diff)
-
proc/thread.h (modified) (1 diff)
-
synch/waitq.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ddi/irq.h
rcf5ddf6 r5573942 84 84 typedef void (* irq_handler_t)(struct irq *irq, void *arg, ...); 85 85 86 87 88 86 /** IPC notification config structure. 89 87 * -
kernel/generic/include/proc/thread.h
rcf5ddf6 r5573942 244 244 extern void thread_update_accounting(void); 245 245 extern bool thread_exists(thread_t *t); 246 extern void thread_interrupt_sleep(thread_t *t);247 246 248 247 /** Fpu context slab cache. */ -
kernel/generic/include/synch/waitq.h
rcf5ddf6 r5573942 64 64 waitq_sleep_timeout((wq), SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE) 65 65 66 struct thread; 67 66 68 extern void waitq_initialize(waitq_t *wq); 67 69 extern int waitq_sleep_timeout(waitq_t *wq, uint32_t usec, int flags); … … 71 73 extern void waitq_wakeup(waitq_t *wq, bool all); 72 74 extern void _waitq_wakeup_unsafe(waitq_t *wq, bool all); 75 extern void waitq_interrupt_sleep(struct thread *t); 73 76 74 77 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
