Changeset b14e35f2 in mainline for kernel/generic/include/ipc/ipc.h
- Timestamp:
- 2006-10-17T21:20:00Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fb8335c
- Parents:
- 4874c2d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/ipc.h
r4874c2d rb14e35f2 175 175 waitq_t wq; 176 176 177 link_t connected_phones; 178 link_t calls; 179 link_t dispatched_calls; 180 181 link_t answers; 177 link_t connected_phones; /**< Phones connected to this answerbox */ 178 link_t calls; /**< Received calls */ 179 link_t dispatched_calls; /* Should be hash table in the future */ 180 181 link_t answers; /**< Answered calls */ 182 182 183 183 SPINLOCK_DECLARE(irq_lock); 184 link_t irq_notifs; /**< Notifications from IRQ handlers */ 184 link_t irq_notifs; /**< Notifications from IRQ handlers */ 185 link_t irq_head; /**< IRQs with notifications to this answerbox. */ 185 186 }; 186 187
Note:
See TracChangeset
for help on using the changeset viewer.