summary refs log tree commit diff stats
path: root/include/gdbstub/syscalls.h
diff options
context:
space:
mode:
authorClément Chigot <chigot@adacore.com>2023-10-03 09:14:27 +0200
committerAlistair Francis <alistair.francis@wdc.com>2023-10-12 12:36:37 +1000
commite216256ae9fc3d1988e3f1af3f644b4dafb79838 (patch)
tree638a815b75d36fd4c7fd421db36d45235c82fd1a /include/gdbstub/syscalls.h
parent354c96069c4b6af176c03b046087e971ac621177 (diff)
downloadfocaccia-qemu-e216256ae9fc3d1988e3f1af3f644b4dafb79838.tar.gz
focaccia-qemu-e216256ae9fc3d1988e3f1af3f644b4dafb79838.zip
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 'include/gdbstub/syscalls.h')
-rw-r--r--include/gdbstub/syscalls.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/gdbstub/syscalls.h b/include/gdbstub/syscalls.h
index 243eaf8ce4..54ff7245a1 100644
--- a/include/gdbstub/syscalls.h
+++ b/include/gdbstub/syscalls.h
@@ -110,4 +110,13 @@ int use_gdb_syscalls(void);
  */
 void gdb_exit(int code);
 
+/**
+ * gdb_qemu_exit: ask qemu to exit
+ * @code: exit code reported
+ *
+ * This requests qemu to exit. This function is allowed to return as
+ * the exit request might be processed asynchronously by qemu backend.
+ */
+void gdb_qemu_exit(int code);
+
 #endif /* _SYSCALLS_H_ */