Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4131 → Rev 4132

/trunk/kernel/generic/src/interrupt/interrupt.c
45,7 → 45,10
#include <console/cmd.h>
#include <panic.h>
#include <print.h>
 
#ifdef CONFIG_SYMTAB
#include <symtab.h>
#endif
 
static struct {
const char *name;
130,9 → 133,13
#endif
for (i = 0; i < IVT_ITEMS; i++) {
#ifdef CONFIG_SYMTAB
symbol = get_symtab_entry((unative_t) exc_table[i].f);
if (!symbol)
symbol = "not found";
#else
symbol = "n/a";
#endif
 
#ifdef __32_BITS__
printf("%-3u %-20s %10p %s\n", i + IVT_FIRST, exc_table[i].name,