ptrace.h 271 B

123456789101112131415
  1. #ifndef __SYSDEP_X86_PTRACE_H
  2. #define __SYSDEP_X86_PTRACE_H
  3. #ifdef __i386__
  4. #include "ptrace_32.h"
  5. #else
  6. #include "ptrace_64.h"
  7. #endif
  8. static inline long regs_return_value(struct uml_pt_regs *regs)
  9. {
  10. return UPT_SYSCALL_RET(regs);
  11. }
  12. #endif /* __SYSDEP_X86_PTRACE_H */