| 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
| 2 | |
| 3 | #ifndef ARM_TARGET_PTRACE_H |
| 4 | #define ARM_TARGET_PTRACE_H |
| 5 | |
| 6 | /* |
| 7 | * See arch/arm/include/uapi/asm/ptrace.h. |
| 8 | * Instead of an array and ARM_xx defines, use proper fields. |
| 9 | */ |
| 10 | struct target_pt_regs { |
| 11 | abi_ulong regs[16]; |
| 12 | abi_ulong cpsr; |
| 13 | abi_ulong orig_r0; |
| 14 | }; |
| 15 | |
| 16 | #endif /* ARM_TARGET_PTRACE_H */ |