Changeset 9cefba4 in mainline for include/synch/waitq.h
- Timestamp:
- 2005-10-16T19:18:19Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ba1b2194
- Parents:
- 0bed5d0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
include/synch/waitq.h
r0bed5d0 r9cefba4 41 41 struct waitq { 42 42 spinlock_t lock; 43 int missed_wakeups; 44 link_t head; 43 int missed_wakeups; /**< Number of waitq_wakeup() calls that didn't find a thread to wake up. */ 44 link_t head; /**< List of sleeping threads for wich there was no missed_wakeup. */ 45 45 }; 46 46
Note:
See TracChangeset
for help on using the changeset viewer.