Ignore:
File:
1 edited

Legend:

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

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