blob: f3fb6b25d14272409ac3dd16baf7deed00657497 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __ASM_TRAPS_H__
#define __ASM_TRAPS_H__
#include <asm/processor.h>
#ifndef __ASSEMBLY__
void do_trap(struct cpu_user_regs *cpu_regs);
void handle_trap(void);
#endif /* __ASSEMBLY__ */
#endif /* __ASM_TRAPS_H__ */
|