summary refs log tree commit diff stats
path: root/linux-user/sh4/target_ptrace.h
blob: b80218526b110289365e2854dd58c1d89543432b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0-or-later */

#ifndef SH4_TARGET_PTRACE_H
#define SH4_TARGET_PTRACE_H

/* See arch/sh/include/uapi/asm/ptrace_32.h. */
struct target_pt_regs {
    abi_ulong regs[16];
    abi_ulong pc;
    abi_ulong pr;
    abi_ulong sr;
    abi_ulong gbr;
    abi_ulong mach;
    abi_ulong macl;
    abi_long tra;
};

#endif /* SH4_TARGET_PTRACE_H */