Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
15 lines
310 B
C
15 lines
310 B
C
/* 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 */
|