gdbstub: Save target's siginfo

Save target's siginfo into gdbserver_state so it can be used later, for
example, in any stub that requires the target's si_signo and si_code.

This change affects only linux-user mode.

Signed-off-by: Gustavo Romero <gustavo.romero@linaro.org>
Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20240309030901.1726211-4-gustavo.romero@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
Gustavo Romero 2024-03-09 03:08:59 +00:00 committed by Alex Bennée
parent 4d6d8a05a0
commit f84e313e02
6 changed files with 34 additions and 9 deletions

View file

@ -606,7 +606,7 @@ int main(int argc, char **argv)
if (gdbstub) {
gdbserver_start(gdbstub);
gdb_handlesig(cpu, 0);
gdb_handlesig(cpu, 0, NULL, NULL, 0);
}
cpu_loop(env);
/* never exits */