ptrace.h 727 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (C) 2006 Atmark Techno, Inc.
  3. *
  4. * This file is subject to the terms and conditions of the GNU General Public
  5. * License. See the file "COPYING" in the main directory of this archive
  6. * for more details.
  7. */
  8. #ifndef _ASM_MICROBLAZE_PTRACE_H
  9. #define _ASM_MICROBLAZE_PTRACE_H
  10. #include <uapi/asm/ptrace.h>
  11. #ifndef __ASSEMBLY__
  12. #define kernel_mode(regs) ((regs)->pt_mode)
  13. #define user_mode(regs) (!kernel_mode(regs))
  14. #define instruction_pointer(regs) ((regs)->pc)
  15. #define profile_pc(regs) instruction_pointer(regs)
  16. #define user_stack_pointer(regs) ((regs)->r1)
  17. static inline long regs_return_value(struct pt_regs *regs)
  18. {
  19. return regs->r3;
  20. }
  21. #endif /* __ASSEMBLY__ */
  22. #endif /* _ASM_MICROBLAZE_PTRACE_H */