Changeset 4874c2d in mainline for kernel/generic/include/ipc/irq.h


Ignore:
Timestamp:
2006-10-17T20:32:35Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b14e35f2
Parents:
8513ad7
Message:

Do not copy notification config out of the IRQ structure.
Add the notify member, that toggles notifications on and off instead.
This is good for preventing other tasks from registering the notification
while the notification config is stored outside the IRQ structure.
It should also help to implement the cleanup code.

File:
1 edited

Legend:

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

    r8513ad7 r4874c2d  
    7979 */
    8080struct ipc_notif_cfg {
     81        bool notify;                    /**< When false, notifications are not sent. */
    8182        answerbox_t *answerbox;         /**< Answerbox for notifications. */
    8283        unative_t method;               /**< Method to be used for the notification. */
Note: See TracChangeset for help on using the changeset viewer.