Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 592 → Rev 593

/kernel/trunk/arch/mips32/src/exception.c
103,7 → 103,7
tlb_invalid(pstate);
}
 
static void cpunsbl_exception(int n, void *data)
static void cpuns_exception(int n, void *data)
{
if (cp0_cause_coperr(cp0_cause_read()) == fpu_cop_id)
scheduler_fpu_lazy_request();
179,6 → 179,6
exc_register(EXC_TLBS, "tlbinvl", tlbinv_exception);
exc_register(EXC_Int, "interrupt", interrupt_exception);
#ifdef CONFIG_FPU_LAZY
exc_register(EXC_CpU, "cpunus", cpun_exception);
exc_register(EXC_CpU, "cpunus", cpuns_exception);
#endif
}