Changeset 80bcaed in mainline for kernel/generic/include/synch/waitq.h
- Timestamp:
- 2007-02-03T13:22:24Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f619ec11
- Parents:
- fa8e7d2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/synch/waitq.h
rfa8e7d2 r80bcaed 53 53 SPINLOCK_DECLARE(lock); 54 54 55 int missed_wakeups; /**< Number of waitq_wakeup() calls that didn't find a thread to wake up. */ 56 link_t head; /**< List of sleeping threads for wich there was no missed_wakeup. */ 55 /** 56 * Number of waitq_wakeup() calls that didn't find a thread to wake up. 57 */ 58 int missed_wakeups; 59 /** List of sleeping threads for wich there was no missed_wakeup. */ 60 link_t head; 57 61 } waitq_t; 58 62
Note:
See TracChangeset
for help on using the changeset viewer.