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

#ifndef AARCH64_TARGET_PTRACE_H
#define AARCH64_TARGET_PTRACE_H

/* See arch/arm64/include/uapi/asm/ptrace.h. */
struct target_user_pt_regs {
    uint64_t regs[31];
    uint64_t sp;
    uint64_t pc;
    uint64_t pstate;
};

#endif /* AARCH64_TARGET_PTRACE_H */