master
h 15 lines 370 Bytes
Raw
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2
3 #ifndef LOONGARCH64_TARGET_PTRACE_H
4 #define LOONGARCH64_TARGET_PTRACE_H
5
6 /* See arch/loongarch/include/uapi/asm/ptrace.h. */
7 struct target_user_pt_regs {
8 abi_ulong regs[32];
9 abi_ulong orig_a0;
10 abi_ulong csr_era;
11 abi_ulong csr_badv;
12 abi_ulong reserved[10];
13 };
14
15 #endif /* LOONGARCH64_TARGET_PTRACE_H */