M7350/kernel/arch/cris/include/asm/ptrace.h

15 lines
354 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
#ifndef _CRIS_PTRACE_H
#define _CRIS_PTRACE_H
2024-09-09 08:57:42 +00:00
#include <uapi/asm/ptrace.h>
2024-09-09 08:52:07 +00:00
/* Arbitrarily choose the same ptrace numbers as used by the Sparc code. */
#define PTRACE_GETREGS 12
#define PTRACE_SETREGS 13
#define profile_pc(regs) instruction_pointer(regs)
2024-09-09 08:57:42 +00:00
#define current_user_stack_pointer() rdusp()
2024-09-09 08:52:07 +00:00
#endif /* _CRIS_PTRACE_H */