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