diff options
author | Clément Chigot <chigot@adacore.com> | 2023-10-03 09:14:27 +0200 |
---|---|---|
committer | Alistair Francis <alistair.francis@wdc.com> | 2023-10-12 12:36:37 +1000 |
commit | e216256ae9fc3d1988e3f1af3f644b4dafb79838 (patch) | |
tree | 638a815b75d36fd4c7fd421db36d45235c82fd1a /gdbstub/user.c | |
parent | 354c96069c4b6af176c03b046087e971ac621177 (diff) |
gdbstub: replace exit calls with proper shutdown for softmmu
This replaces the exit calls by shutdown requests, ensuring a proper
cleanup of Qemu. Features like net/vhost-vdpa.c are expecting
qemu_cleanup to be called to remove their last residuals.
Signed-off-by: Clément Chigot <chigot@adacore.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-ID: <20231003071427.188697-6-chigot@adacore.com>
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Diffstat (limited to 'gdbstub/user.c')
-rw-r--r-- | gdbstub/user.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdbstub/user.c b/gdbstub/user.c index 7ab6e5d975..dbe1d9b887 100644 --- a/gdbstub/user.c +++ b/gdbstub/user.c @@ -113,6 +113,12 @@ void gdb_exit(int code) gdb_put_packet(buf); gdbserver_state.allow_stop_reply = false; } + +} + +void gdb_qemu_exit(int code) +{ + exit(code); } int gdb_handlesig(CPUState *cpu, int sig) |