math_emu.h 425 B

123456789101112131415161718
  1. #ifndef _ASM_X86_MATH_EMU_H
  2. #define _ASM_X86_MATH_EMU_H
  3. #include <asm/ptrace.h>
  4. #include <asm/vm86.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. union {
  12. struct pt_regs *regs;
  13. struct kernel_vm86_regs *vm86;
  14. };
  15. };
  16. #endif /* _ASM_X86_MATH_EMU_H */