| 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
| 2 | |
| 3 | #ifndef S390X_TARGET_PTRACE_H |
| 4 | #define S390X_TARGET_PTRACE_H |
| 5 | |
| 6 | typedef struct { |
| 7 | abi_ulong mask; |
| 8 | abi_ulong addr; |
| 9 | } target_psw_t; |
| 10 | |
| 11 | struct target_s390_regs { |
| 12 | target_psw_t psw; |
| 13 | abi_ulong gprs[16]; |
| 14 | abi_uint acrs[16]; |
| 15 | abi_ulong orig_gpr2; |
| 16 | }; |
| 17 | |
| 18 | #endif /* S390X_TARGET_PTRACE_H */ |