diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-08-28 21:13:03 +1000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-08-30 07:04:04 +1000 |
| commit | 71c2c79815fafe6d509ca1a76bc67d6041aaa37b (patch) | |
| tree | a9c95900f5415ee0f7505320983f1bf41c0f0422 /linux-user/s390x/signal.c | |
| parent | 8ad5f12426dd6218db4753722ab240a16a235259 (diff) | |
| download | focaccia-qemu-71c2c79815fafe6d509ca1a76bc67d6041aaa37b.tar.gz focaccia-qemu-71c2c79815fafe6d509ca1a76bc67d6041aaa37b.zip | |
linux-user/s390x: Create target_ptrace.h
Move target_psw_t to target_ptrace.h. Note that abi_ulong already has an attribute for 8-byte alignment, so there's no need to carry another on target_psw_t. Remove the target_pt_regs; add target_s390x_reg to target_ptrace.h, which matches what is actually used. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'linux-user/s390x/signal.c')
| -rw-r--r-- | linux-user/s390x/signal.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/s390x/signal.c b/linux-user/s390x/signal.c index df49c24708..96d1c8d11c 100644 --- a/linux-user/s390x/signal.c +++ b/linux-user/s390x/signal.c @@ -22,6 +22,7 @@ #include "signal-common.h" #include "linux-user/trace.h" #include "vdso-asmoffset.h" +#include "target_ptrace.h" #define __NUM_GPRS 16 #define __NUM_FPRS 16 |