Changeset 5573942 in mainline for kernel/generic/include/synch/waitq.h
- Timestamp:
- 2007-02-04T11:46:18Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 15819e37
- Parents:
- cf5ddf6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.