extable.h 202 B

1234567891011121314
  1. #ifndef _ASM_EXTABLE_H
  2. #define _ASM_EXTABLE_H
  3. struct exception_table_entry
  4. {
  5. unsigned long insn;
  6. unsigned long nextinsn;
  7. };
  8. struct pt_regs;
  9. extern int fixup_exception(struct pt_regs *regs);
  10. #endif