master
h 22 lines 489 Bytes
Raw
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2
3 #ifndef XTENSA_TARGET_PTRACE_H
4 #define XTENSA_TARGET_PTRACE_H
5
6 /* See arch/xtensa/include/uapi/asm/ptrace.h. */
7 struct target_user_pt_regs {
8 uint32_t pc;
9 uint32_t ps;
10 uint32_t lbeg;
11 uint32_t lend;
12 uint32_t lcount;
13 uint32_t sar;
14 uint32_t windowstart;
15 uint32_t windowbase;
16 uint32_t threadptr;
17 uint32_t syscall;
18 uint32_t reserved[6 + 48];
19 uint32_t a[64];
20 };
21
22 #endif /* XTENSA_TARGET_PTRACE_H */