Ignore:
File:
1 edited

Legend:

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

    rda1bafb rd99c1d2  
    4444#include <stacktrace.h>
    4545
    46 typedef void (* iroutine)(int, istate_t *);
     46typedef void (* iroutine)(int n, istate_t *istate);
    4747
    48 extern void fault_if_from_uspace(istate_t *, const char *, ...);
    49 extern iroutine exc_register(int, const char *, iroutine);
    50 extern void exc_dispatch(int, istate_t *);
    51 extern void exc_init(void);
     48extern void fault_if_from_uspace(istate_t *istate, const char *fmt, ...);
     49extern iroutine exc_register(int n, const char *name, iroutine f);
     50extern void exc_dispatch(int n, istate_t *t);
     51void exc_init(void);
    5252
    53 extern void irq_initialize_arch(irq_t *);
     53extern void irq_initialize_arch(irq_t *irq);
    5454
    5555#endif
Note: See TracChangeset for help on using the changeset viewer.