Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v4.11-rc2 11 lines 210 B view raw
1#ifndef _ASM_SCORE_EXTABLE_H 2#define _ASM_SCORE_EXTABLE_H 3 4struct exception_table_entry { 5 unsigned long insn; 6 unsigned long fixup; 7}; 8 9struct pt_regs; 10extern int fixup_exception(struct pt_regs *regs); 11#endif