diff options
author | Clément Chigot <chigot@adacore.com> | 2023-10-03 09:14:24 +0200 |
---|---|---|
committer | Alistair Francis <alistair.francis@wdc.com> | 2023-10-12 12:33:24 +1000 |
commit | 66bbe3e9b46112ec2fe35a7d6e79d8a9bb39d14a (patch) | |
tree | 637d60dda5f52db0fb2b118fb086b7858e5e27b5 /include/sysemu | |
parent | 0386f39b46a28da87647075f0fc20da4ba1f6478 (diff) | |
download | qemu-66bbe3e9b46112ec2fe35a7d6e79d8a9bb39d14a.zip qemu-66bbe3e9b46112ec2fe35a7d6e79d8a9bb39d14a.tar.gz qemu-66bbe3e9b46112ec2fe35a7d6e79d8a9bb39d14a.tar.bz2 |
softmmu: pass the main loop status to gdb "Wxx" packet
gdb_exit function aims to close gdb sessions and sends the exit code of
the current execution. It's being called by qemu_cleanup once the main
loop is over.
Until now, the exit code sent was always 0. Now that hardware can
shutdown this main loop with custom exit codes, these codes must be
transfered to gdb as well.
Signed-off-by: Clément Chigot <chigot@adacore.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-ID: <20231003071427.188697-3-chigot@adacore.com>
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Diffstat (limited to 'include/sysemu')
-rw-r--r-- | include/sysemu/sysemu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h index 25be2a6..73a3794 100644 --- a/include/sysemu/sysemu.h +++ b/include/sysemu/sysemu.h @@ -101,7 +101,7 @@ bool defaults_enabled(void); void qemu_init(int argc, char **argv); int qemu_main_loop(void); -void qemu_cleanup(void); +void qemu_cleanup(int); extern QemuOptsList qemu_legacy_drive_opts; extern QemuOptsList qemu_common_drive_opts; |