ptrace-generic.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
  3. * Licensed under the GPL
  4. */
  5. #ifndef __UM_PTRACE_GENERIC_H
  6. #define __UM_PTRACE_GENERIC_H
  7. #ifndef __ASSEMBLY__
  8. #include <asm/ptrace-abi.h>
  9. #include <asm/user.h>
  10. #include "sysdep/ptrace.h"
  11. struct pt_regs {
  12. struct uml_pt_regs regs;
  13. };
  14. #define arch_has_single_step() (1)
  15. #define EMPTY_REGS { .regs = EMPTY_UML_PT_REGS }
  16. #define PT_REGS_IP(r) UPT_IP(&(r)->regs)
  17. #define PT_REGS_SP(r) UPT_SP(&(r)->regs)
  18. #define PT_REGS_SET_SYSCALL_RETURN(r, res) \
  19. UPT_SET_SYSCALL_RETURN(&(r)->regs, res)
  20. #define PT_REGS_RESTART_SYSCALL(r) UPT_RESTART_SYSCALL(&(r)->regs)
  21. #define PT_REGS_SYSCALL_NR(r) UPT_SYSCALL_NR(&(r)->regs)
  22. #define PT_REGS_SC(r) UPT_SC(&(r)->regs)
  23. #define instruction_pointer(regs) PT_REGS_IP(regs)
  24. struct task_struct;
  25. extern long subarch_ptrace(struct task_struct *child, long request,
  26. unsigned long addr, unsigned long data);
  27. extern unsigned long getreg(struct task_struct *child, int regno);
  28. extern int putreg(struct task_struct *child, int regno, unsigned long value);
  29. extern int arch_copy_tls(struct task_struct *new);
  30. extern void clear_flushed_tls(struct task_struct *task);
  31. #endif
  32. #endif