Changeset b14e35f2 in mainline for kernel/generic/include/ipc/ipc.h


Ignore:
Timestamp:
2006-10-17T21:20:00Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fb8335c
Parents:
4874c2d
Message:

Implement efficient IPC notification cleanup.

File:
1 edited

Legend:

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

    r4874c2d rb14e35f2  
    175175        waitq_t wq;
    176176
    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 */
     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 */
    182182
    183183        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. */
    185186};
    186187
Note: See TracChangeset for help on using the changeset viewer.