mirror of https://github.com/xemu-project/xemu.git
linux-user/s390x: Use force_sig_fault
Use the new function instead of setting up a target_siginfo_t and calling queue_signal. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220107213243.212806-22-richard.henderson@linaro.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
parent
8521cc21ad
commit
8f0bebebd2
linux-user/s390x
|
@ -58,7 +58,6 @@ void cpu_loop(CPUS390XState *env)
|
|||
{
|
||||
CPUState *cs = env_cpu(env);
|
||||
int trapnr, n, sig;
|
||||
target_siginfo_t info;
|
||||
target_ulong addr;
|
||||
abi_long ret;
|
||||
|
||||
|
@ -158,11 +157,7 @@ void cpu_loop(CPUS390XState *env)
|
|||
*/
|
||||
env->psw.addr += env->int_pgm_ilen;
|
||||
do_signal:
|
||||
info.si_signo = sig;
|
||||
info.si_errno = 0;
|
||||
info.si_code = n;
|
||||
info._sifields._sigfault._addr = addr;
|
||||
queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info);
|
||||
force_sig_fault(sig, n, addr);
|
||||
break;
|
||||
|
||||
case EXCP_ATOMIC:
|
||||
|
|
Loading…
Reference in New Issue