Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 862 → Rev 863

/kernel/trunk/arch/sparc64/src/mm/tlb.c
36,6 → 36,7
#include <typedefs.h>
#include <config.h>
#include <arch/trap/trap.h>
#include <panic.h>
 
/** Initialize ITLB and DTLB.
*
97,6 → 98,24
immu_enable();
}
 
/** ITLB miss handler. */
void fast_instruction_access_mmu_miss(void)
{
panic("%s\n", __FUNCTION__);
}
 
/** DTLB miss handler. */
void fast_data_access_mmu_miss(void)
{
panic("%s\n", __FUNCTION__);
}
 
/** DTLB protection fault handler. */
void fast_data_access_protection(void)
{
panic("%s\n", __FUNCTION__);
}
 
/** Print contents of both TLBs. */
void tlb_print(void)
{