ptrace_32.h 623 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
  3. * Licensed under the GPL
  4. */
  5. #ifndef __SYSDEP_I386_PTRACE_H
  6. #define __SYSDEP_I386_PTRACE_H
  7. #define MAX_FP_NR HOST_FPX_SIZE
  8. static inline void update_debugregs(int seq) {}
  9. void set_using_sysemu(int value);
  10. int get_using_sysemu(void);
  11. extern int sysemu_supported;
  12. #define UPT_SYSCALL_ARG1(r) UPT_BX(r)
  13. #define UPT_SYSCALL_ARG2(r) UPT_CX(r)
  14. #define UPT_SYSCALL_ARG3(r) UPT_DX(r)
  15. #define UPT_SYSCALL_ARG4(r) UPT_SI(r)
  16. #define UPT_SYSCALL_ARG5(r) UPT_DI(r)
  17. #define UPT_SYSCALL_ARG6(r) UPT_BP(r)
  18. extern void arch_init_registers(int pid);
  19. #endif