Changes in kernel/generic/include/interrupt.h [12bf33a:3a2f8aa] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/interrupt.h
r12bf33a r3a2f8aa 42 42 #include <arch.h> 43 43 #include <ddi/irq.h> 44 #include <stacktrace.h> 44 45 45 46 typedef void (* iroutine)(int n, istate_t *istate); 46 47 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 48 extern void fault_if_from_uspace(istate_t *istate, char *fmt, ...); 58 49 extern iroutine exc_register(int n, const char *name, iroutine f); 59 50 extern void exc_dispatch(int n, istate_t *t); 60 51 void exc_init(void); 52 53 extern void irq_initialize_arch(irq_t *irq); 61 54 62 55 #endif
Note:
See TracChangeset
for help on using the changeset viewer.