aboutsummaryrefslogtreecommitdiff
path: root/linux-user/s390x/target_ptrace.h
blob: a5ceb75a747a47d202cd9f8c963b7270bb07c1c7 (plain)
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 S390X_TARGET_PTRACE_H
#define S390X_TARGET_PTRACE_H

typedef struct {
    abi_ulong mask;
    abi_ulong addr;
} target_psw_t;

struct target_s390_regs {
    target_psw_t psw;
    abi_ulong gprs[16];
    abi_uint acrs[16];
    abi_ulong orig_gpr2;
};

#endif /* S390X_TARGET_PTRACE_H */