Changeset b14e35f2 in mainline for kernel/generic/include/ipc
- 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
- Location:
- kernel/generic/include/ipc
- Files:
-
- 2 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 -
kernel/generic/include/ipc/irq.h
r4874c2d rb14e35f2 72 72 #include <typedefs.h> 73 73 #include <arch/types.h> 74 #include <adt/list.h> 74 75 75 76 /** IPC notification config structure. … … 84 85 irq_code_t *code; /**< Top-half pseudocode. */ 85 86 count_t counter; /**< Counter. */ 87 link_t link; /**< Link between IRQs that are notifying the 88 same answerbox. The list is protected by 89 the answerbox irq_lock. */ 86 90 }; 87 91
Note:
See TracChangeset
for help on using the changeset viewer.