blob: ee773e4cf0577c83c8fa40d9140bca59bafa2af1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* fault_32.c - visible as they are called from assembler */
asmlinkage int lookup_fault(unsigned long pc, unsigned long ret_pc,
unsigned long address);
asmlinkage void do_sparc_fault(struct pt_regs *regs, int text_fault, int write,
unsigned long address);
void window_overflow_fault(void);
void window_underflow_fault(unsigned long sp);
void window_ret_fault(struct pt_regs *regs);
/* srmmu.c */
extern char *srmmu_name;
extern void (*poke_srmmu)(void);
|