Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/ipc/ipc.h

    r55b77d9 r79ae36dd  
    166166       
    167167        /** Phones connected to this answerbox. */
    168         list_t connected_phones;
     168        link_t connected_phones;
    169169        /** Received calls. */
    170         list_t calls;
    171         list_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 */
    172172       
    173173        /** Answered calls. */
    174         list_t answers;
     174        link_t answers;
    175175       
    176176        IRQ_SPINLOCK_DECLARE(irq_lock);
    177177       
    178178        /** Notifications from IRQ handlers. */
    179         list_t irq_notifs;
     179        link_t irq_notifs;
    180180        /** IRQs with notifications to this answerbox. */
    181         list_t irq_list;
     181        link_t irq_head;
    182182} answerbox_t;
    183183
     
    243243extern void ipc_backsend_err(phone_t *, call_t *, sysarg_t);
    244244extern void ipc_answerbox_slam_phones(answerbox_t *, bool);
    245 extern void ipc_cleanup_call_list(list_t *);
     245extern void ipc_cleanup_call_list(link_t *);
    246246
    247247extern void ipc_print_task(task_id_t);
Note: See TracChangeset for help on using the changeset viewer.