Changeset 7ac426e in mainline for kernel/generic/include/interrupt.h
- Timestamp:
- 2008-06-03T14:57:21Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cd8ad52
- Parents:
- aac10f86
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/interrupt.h
raac10f86 r7ac426e 41 41 #include <proc/thread.h> 42 42 #include <arch.h> 43 #include <console/klog.h>44 43 #include <ddi/irq.h> 45 44 … … 50 49 if (istate_from_uspace(istate)) { \ 51 50 task_t *task = TASK; \ 52 klog_printf("Task %llukilled due to an exception at %p.", task->taskid, istate_get_pc(istate)); \53 klog_printf(" " cmd, ##__VA_ARGS__); \51 printf("Task %" PRIu64 " killed due to an exception at %p.", task->taskid, istate_get_pc(istate)); \ 52 printf(" " cmd, ##__VA_ARGS__); \ 54 53 task_kill(task->taskid); \ 55 54 thread_exit(); \
Note:
See TracChangeset
for help on using the changeset viewer.