Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _ASM_EXTABLE_H
0003 #define _ASM_EXTABLE_H
0004 
0005 struct exception_table_entry
0006 {
0007     unsigned long insn;
0008     unsigned long nextinsn;
0009 };
0010 
0011 struct pt_regs;
0012 extern int fixup_exception(struct pt_regs *regs);
0013 
0014 #endif