ptrace-generic.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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_RESTART_SYSCALL(r) UPT_RESTART_SYSCALL(&(r)->regs)
  19. #define PT_REGS_SYSCALL_NR(r) UPT_SYSCALL_NR(&(r)->regs)
  20. #define instruction_pointer(regs) PT_REGS_IP(regs)
  21. struct task_struct;
  22. extern long subarch_ptrace(struct task_struct *child, long request,
  23. unsigned long addr, unsigned long data);
  24. extern unsigned long getreg(struct task_struct *child, int regno);
  25. extern int putreg(struct task_struct *child, int regno, unsigned long value);
  26. extern int arch_copy_tls(struct task_struct *new);
  27. extern void clear_flushed_tls(struct task_struct *task);
  28. #endif
  29. #endif