| 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
| 2 | |
| 3 | #ifndef AARCH64_TARGET_PTRACE_H |
| 4 | #define AARCH64_TARGET_PTRACE_H |
| 5 | |
| 6 | /* See arch/arm64/include/uapi/asm/ptrace.h. */ |
| 7 | struct target_user_pt_regs { |
| 8 | uint64_t regs[31]; |
| 9 | uint64_t sp; |
| 10 | uint64_t pc; |
| 11 | uint64_t pstate; |
| 12 | }; |
| 13 | |
| 14 | #endif /* AARCH64_TARGET_PTRACE_H */ |