| 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
| 2 | |
| 3 | #ifndef MIPS64_TARGET_PTRACE_H |
| 4 | #define MIPS64_TARGET_PTRACE_H |
| 5 | |
| 6 | struct target_pt_regs { |
| 7 | target_ulong regs[32]; |
| 8 | target_ulong lo; |
| 9 | target_ulong hi; |
| 10 | target_ulong cp0_epc; |
| 11 | target_ulong cp0_badvaddr; |
| 12 | target_ulong cp0_status; |
| 13 | target_ulong cp0_cause; |
| 14 | }; |
| 15 | |
| 16 | #endif /* MIPS64_TARGET_PTRACE_H */ |