Changeset 2d93f1f9 in mainline for generic/src/synch/waitq.c
- Timestamp:
- 2005-12-06T21:58:18Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a80d406
- Parents:
- 36e7b6c3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/synch/waitq.c
r36e7b6c3 r2d93f1f9 47 47 void waitq_initialize(waitq_t *wq) 48 48 { 49 spinlock_initialize(&wq->lock );49 spinlock_initialize(&wq->lock, "waitq_lock"); 50 50 list_initialize(&wq->head); 51 51 wq->missed_wakeups = 0;
Note:
See TracChangeset
for help on using the changeset viewer.