Changeset e71a61d in mainline for kernel/generic/include/synch/waitq.h
- Timestamp:
- 2007-01-22T14:45:07Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 51baa8a
- Parents:
- 726e1043
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/synch/waitq.h
r726e1043 re71a61d 46 46 47 47 /** Wait queue structure. */ 48 struct waitq{48 typedef struct { 49 49 50 50 /** Lock protecting wait queue structure. … … 56 56 int missed_wakeups; /**< Number of waitq_wakeup() calls that didn't find a thread to wake up. */ 57 57 link_t head; /**< List of sleeping threads for wich there was no missed_wakeup. */ 58 } ;58 } waitq_t; 59 59 60 60 #define waitq_sleep(wq) \
Note:
See TracChangeset
for help on using the changeset viewer.