Changes in kernel/generic/include/ipc/ipc.h [79ae36dd:55b77d9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/ipc.h
r79ae36dd r55b77d9 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.