Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3787 → Rev 3788

/trunk/kernel/generic/src/interrupt/interrupt.c
105,8 → 105,8
/** Default 'null' exception handler */
static void exc_undef(int n, istate_t *istate)
{
fault_if_from_uspace(istate, "Unhandled exception %d.", n);
panic("Unhandled exception %d.", n);
fault_if_from_uspace(istate, "Unhandled exception %d", n);
panic("Unhandled exception %d", n);
}
 
#ifdef CONFIG_KCONSOLE