Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1223 → Rev 1224

/kernel/trunk/generic/src/interrupt/interrupt.c
96,8 → 96,8
symbol = get_symtab_entry((__native)exc_table[i].f);
if (!symbol)
symbol = "not found";
printf("%d %s %p(%s)\n", i + IVT_FIRST, exc_table[i].name,
exc_table[i].f,symbol);
printf("%d %s %.*p(%s)\n", i + IVT_FIRST, exc_table[i].name,
sizeof(__address) * 2, exc_table[i].f,symbol);
if (!((i+1) % 20)) {
printf("Press any key to continue.");
spinlock_unlock(&exctbl_lock);