diff options
| author | Alex Bennée | 2021-01-08 23:42:44 +0100 |
|---|---|---|
| committer | Alex Bennée | 2021-01-18 11:05:06 +0100 |
| commit | 5ef0317f58c0c88ad1146deab248b638148bd1b1 (patch) | |
| tree | 025dc77dbdfbde65e3a423aa28e3641bdc5e8bde /softmmu | |
| parent | gdbstub: drop CPUEnv from gdb_exit() (diff) | |
| download | qemu-5ef0317f58c0c88ad1146deab248b638148bd1b1.tar.gz qemu-5ef0317f58c0c88ad1146deab248b638148bd1b1.tar.xz qemu-5ef0317f58c0c88ad1146deab248b638148bd1b1.zip | |
gdbstub: drop gdbserver_cleanup in favour of gdb_exit
Despite it's name it didn't actually clean-up so let us document
gdb_exit() better and use that.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210108224256.2321-9-alex.bennee@linaro.org>
Diffstat (limited to 'softmmu')
| -rw-r--r-- | softmmu/runstate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/softmmu/runstate.c b/softmmu/runstate.c index 636aab0add..6177693a30 100644 --- a/softmmu/runstate.c +++ b/softmmu/runstate.c @@ -775,7 +775,7 @@ void qemu_init_subsystems(void) void qemu_cleanup(void) { - gdbserver_cleanup(); + gdb_exit(0); /* * cleaning up the migration object cancels any existing migration |
