Ignore:
File:
1 edited

Legend:

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

    ra5c86478 r12bf33a  
    4242#include <arch.h>
    4343#include <ddi/irq.h>
    44 #include <stacktrace.h>
    4544
    4645typedef void (* iroutine)(int n, istate_t *istate);
     
    5049        if (istate_from_uspace(istate)) { \
    5150                task_t *task = TASK; \
    52                 printf("Task %s (%" PRIu64 ") killed due to an exception at " \
    53                     "program counter %p.\n", task->name, task->taskid, istate_get_pc(istate)); \
    54                 stack_trace_istate(istate); \
    55                 printf("Kill message: " fmt "\n", ##__VA_ARGS__); \
     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__); \
    5653                task_kill(task->taskid); \
    5754                thread_exit(); \
Note: See TracChangeset for help on using the changeset viewer.