Changes in kernel/generic/include/interrupt.h [3a2f8aa:12bf33a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/interrupt.h
r3a2f8aa r12bf33a 42 42 #include <arch.h> 43 43 #include <ddi/irq.h> 44 #include <stacktrace.h>45 44 46 45 typedef void (* iroutine)(int n, istate_t *istate); 47 46 48 extern void fault_if_from_uspace(istate_t *istate, char *fmt, ...); 47 #define fault_if_from_uspace(istate, fmt, ...) \ 48 { \ 49 if (istate_from_uspace(istate)) { \ 50 task_t *task = TASK; \ 51 printf("Task %s (%" PRIu64 ") killed due to an exception at %p: ", task->name, task->taskid, istate_get_pc(istate)); \ 52 printf(fmt "\n", ##__VA_ARGS__); \ 53 task_kill(task->taskid); \ 54 thread_exit(); \ 55 } \ 56 } 57 49 58 extern iroutine exc_register(int n, const char *name, iroutine f); 50 59 extern void exc_dispatch(int n, istate_t *t); 51 60 void exc_init(void); 52 53 extern void irq_initialize_arch(irq_t *irq);54 61 55 62 #endif
Note:
See TracChangeset
for help on using the changeset viewer.