Changeset bd08239 in mainline for kernel/generic/include/ipc/ipc.h
- Timestamp:
- 2011-06-18T15:35:25Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 44e2c1a
- Parents:
- 313775b (diff), adfdbd5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/ipc.h
r313775b rbd08239 166 166 167 167 /** Phones connected to this answerbox. */ 168 li nk_t connected_phones;168 list_t connected_phones; 169 169 /** Received calls. */ 170 li nk_t calls;171 li nk_t dispatched_calls; /* Should be hash table in the future */170 list_t calls; 171 list_t dispatched_calls; /* Should be hash table in the future */ 172 172 173 173 /** Answered calls. */ 174 li nk_t answers;174 list_t answers; 175 175 176 176 IRQ_SPINLOCK_DECLARE(irq_lock); 177 177 178 178 /** Notifications from IRQ handlers. */ 179 li nk_t irq_notifs;179 list_t irq_notifs; 180 180 /** IRQs with notifications to this answerbox. */ 181 li nk_t irq_head;181 list_t irq_list; 182 182 } answerbox_t; 183 183 … … 243 243 extern void ipc_backsend_err(phone_t *, call_t *, sysarg_t); 244 244 extern void ipc_answerbox_slam_phones(answerbox_t *, bool); 245 extern void ipc_cleanup_call_list(li nk_t *);245 extern void ipc_cleanup_call_list(list_t *); 246 246 247 247 extern void ipc_print_task(task_id_t);
Note:
See TracChangeset
for help on using the changeset viewer.