Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3430 → Rev 3431

/branches/tracing/kernel/arch/ppc32/src/interrupt.c
96,6 → 96,8
start_decrementer();
}
 
#ifdef CONFIG_UDEBUG
 
static void exception_program_trap(istate_t *istate)
{
if (istate_from_uspace(istate))
114,6 → 116,8
}
}
 
#endif
 
/* Initialize basic tables for exception dispatching */
void interrupt_init(void)
{
121,7 → 125,9
exc_register(VECTOR_INSTRUCTION_STORAGE, "instruction_storage", pht_refill);
exc_register(VECTOR_EXTERNAL, "external", exception_external);
exc_register(VECTOR_DECREMENTER, "timer", exception_decrementer);
#ifdef CONFIG_UDEBUG
exc_register(VECTOR_PROGRAM, "program", exception_program);
#endif
}
 
/** @}