diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-08-28 14:56:57 +1000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-08-30 07:04:03 +1000 |
| commit | db58f1667e72b3fa4c0a9e45f0b6b683e836295b (patch) | |
| tree | b373edc46d92494a22a19911220d47699b6ae09e /linux-user/arm/target_syscall.h | |
| parent | ff22166d3f68786e5f129d2fb34a38cfdc0631b3 (diff) | |
| download | focaccia-qemu-db58f1667e72b3fa4c0a9e45f0b6b683e836295b.tar.gz focaccia-qemu-db58f1667e72b3fa4c0a9e45f0b6b683e836295b.zip | |
linux-user/arm: Create target_ptrace.h
Move the target_pt_regs structure from target_syscall.h. Replace the array with proper structure fields. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'linux-user/arm/target_syscall.h')
| -rw-r--r-- | linux-user/arm/target_syscall.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/linux-user/arm/target_syscall.h b/linux-user/arm/target_syscall.h index 412ad434cf..8c4ddba717 100644 --- a/linux-user/arm/target_syscall.h +++ b/linux-user/arm/target_syscall.h @@ -1,14 +1,6 @@ #ifndef ARM_TARGET_SYSCALL_H #define ARM_TARGET_SYSCALL_H -/* this struct defines the way the registers are stored on the - stack during a system call. */ - -/* uregs[0..15] are r0 to r15; uregs[16] is CPSR; uregs[17] is ORIG_r0 */ -struct target_pt_regs { - abi_long uregs[18]; -}; - #define ARM_SYSCALL_BASE 0x900000 #define ARM_THUMB_SYSCALL 0 |