| 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
| 2 | |
| 3 | #ifndef OPENRISC_TARGET_PTRACE_H |
| 4 | #define OPENRISC_TARGET_PTRACE_H |
| 5 | |
| 6 | /* See arch/openrisc/include/uapi/asm/ptrace.h. */ |
| 7 | struct target_user_regs_struct { |
| 8 | abi_ulong gpr[32]; |
| 9 | abi_ulong pc; |
| 10 | abi_ulong sr; |
| 11 | }; |
| 12 | |
| 13 | #endif /* OPENRISC_TARGET_PTRACE_H */ |