Changes in kernel/generic/include/ipc/ipc.h [55b77d9:79ae36dd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/ipc.h
r55b77d9 r79ae36dd 166 166 167 167 /** Phones connected to this answerbox. */ 168 li st_t connected_phones;168 link_t connected_phones; 169 169 /** Received calls. */ 170 li st_t calls;171 li st_t dispatched_calls; /* Should be hash table in the future */170 link_t calls; 171 link_t dispatched_calls; /* Should be hash table in the future */ 172 172 173 173 /** Answered calls. */ 174 li st_t answers;174 link_t answers; 175 175 176 176 IRQ_SPINLOCK_DECLARE(irq_lock); 177 177 178 178 /** Notifications from IRQ handlers. */ 179 li st_t irq_notifs;179 link_t irq_notifs; 180 180 /** IRQs with notifications to this answerbox. */ 181 li st_t irq_list;181 link_t irq_head; 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 st_t *);245 extern void ipc_cleanup_call_list(link_t *); 246 246 247 247 extern void ipc_print_task(task_id_t);
Note:
See TracChangeset
for help on using the changeset viewer.