From: Richard Henderson Date: Sat, 3 Jun 2023 20:37:39 +0000 (-0700) Subject: linux-user: Remove #if 0 block in syscall_defs.h X-Git-Tag: v8.1.0-rc0~8^2~45 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cb80ce5e65f2384c5c356484aa09df1176210223;p=thirdparty%2Fqemu.git linux-user: Remove #if 0 block in syscall_defs.h These definitions are in sparc/signal.c. Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Richard Henderson --- diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index e80d54780bc..a4e4df8d3ef 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -547,30 +547,6 @@ typedef union target_sigval { int sival_int; abi_ulong sival_ptr; } target_sigval_t; -#if 0 -#if defined (TARGET_SPARC) -typedef struct { - struct { - abi_ulong psr; - abi_ulong pc; - abi_ulong npc; - abi_ulong y; - abi_ulong u_regs[16]; /* globals and ins */ - } si_regs; - int si_mask; -} __siginfo_t; - -typedef struct { - unsigned long si_float_regs [32]; - unsigned long si_fsr; - unsigned long si_fpqdepth; - struct { - unsigned long *insn_addr; - unsigned long insn; - } si_fpqueue [16]; -} __siginfo_fpu_t; -#endif -#endif #define TARGET_SI_MAX_SIZE 128