mirror of
https://gitee.com/openharmony/kernel_linux
synced 2025-05-24 15:46:39 +00:00
12 lines
210 B
C
12 lines
210 B
C
#ifndef _ASM_SCORE_EXTABLE_H
|
|
#define _ASM_SCORE_EXTABLE_H
|
|
|
|
struct exception_table_entry {
|
|
unsigned long insn;
|
|
unsigned long fixup;
|
|
};
|
|
|
|
struct pt_regs;
|
|
extern int fixup_exception(struct pt_regs *regs);
|
|
#endif
|