math_emu.h 395 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_X86_MATH_EMU_H
  3. #define _ASM_X86_MATH_EMU_H
  4. #include <asm/ptrace.h>
  5. /* This structure matches the layout of the data saved to the stack
  6. following a device-not-present interrupt, part of it saved
  7. automatically by the 80386/80486.
  8. */
  9. struct math_emu_info {
  10. long ___orig_eip;
  11. struct pt_regs *regs;
  12. };
  13. #endif /* _ASM_X86_MATH_EMU_H */