1 /*
2 * Copyright (c) 2021 The strace developers.
3 * All rights reserved.
4 *
5 * SPDX-License-Identifier: LGPL-2.1-or-later
6 */
7
8 #ifdef MPERS_IS_m32
9 # include "../sparc/arch_prstatus_regset.h"
10 #elif !defined STRACE_ARCH_PRSTATUS_REGSET_H
11 # define STRACE_ARCH_PRSTATUS_REGSET_H
12
13 typedef struct {
14 unsigned long g[8];
15 unsigned long o[8];
16 unsigned long l[8];
17 unsigned long i[8];
18 unsigned long tstate;
19 unsigned long tpc;
20 unsigned long tnpc;
21 unsigned long y;
22 } struct_prstatus_regset;
23
24 # define HAVE_ARCH_PRSTATUS_REGSET 1
25
26 #endif /* !STRACE_ARCH_PRSTATUS_REGSET_H */