Changeset 7ac426e in mainline for kernel/generic/include/interrupt.h


Ignore:
Timestamp:
2008-06-03T14:57:21Z (17 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cd8ad52
Parents:
aac10f86
Message:

reflect changes in sources

File:
1 edited

Legend:

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

    raac10f86 r7ac426e  
    4141#include <proc/thread.h>
    4242#include <arch.h>
    43 #include <console/klog.h>
    4443#include <ddi/irq.h>
    4544
     
    5049        if (istate_from_uspace(istate)) { \
    5150                task_t *task = TASK; \
    52                 klog_printf("Task %llu killed 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__); \
    5453                task_kill(task->taskid); \
    5554                thread_exit(); \
Note: See TracChangeset for help on using the changeset viewer.