Changeset 2b017ba in mainline for kernel/generic/src/ddi/irq.c


Ignore:
Timestamp:
2006-10-16T20:51:55Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5f9b4d9a
Parents:
e3890b3f
Message:

Replace the old IRQ dispatcher and IPC notifier with new implementation.
Note that all architectures except for sparc64 are now broken
and don't even compile.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ddi/irq.c

    re3890b3f r2b017ba  
    7272#include <typedefs.h>
    7373#include <synch/spinlock.h>
    74 #include <atomic.h>
    7574#include <arch.h>
    7675
     
    147146        irq->handler = NULL;
    148147        irq->arg = NULL;
    149         irq->notif_answerbox = NULL;
    150         irq->code = NULL;
    151         irq->method = 0;
    152         atomic_set(&irq->counter, 0);
     148        irq->notif_cfg.answerbox = NULL;
     149        irq->notif_cfg.code = NULL;
     150        irq->notif_cfg.method = 0;
     151        irq->notif_cfg.counter = 0;
    153152}
    154153
Note: See TracChangeset for help on using the changeset viewer.