diff options
| author | Alex Bennée | 2021-01-08 23:42:43 +0100 |
|---|---|---|
| committer | Alex Bennée | 2021-01-18 11:05:06 +0100 |
| commit | ad9dcb207b054fa62c7118f6fe4d052e8b26c728 (patch) | |
| tree | c999defc2dbe16f56dab89824f75efd82d3d8e73 /include | |
| parent | gdbstub: add support to Xfer:auxv:read: packet (diff) | |
| download | qemu-ad9dcb207b054fa62c7118f6fe4d052e8b26c728.tar.gz qemu-ad9dcb207b054fa62c7118f6fe4d052e8b26c728.tar.xz qemu-ad9dcb207b054fa62c7118f6fe4d052e8b26c728.zip | |
gdbstub: drop CPUEnv from gdb_exit()
gdb_exit() has never needed anything from env and I doubt we are going
to start now.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210108224256.2321-8-alex.bennee@linaro.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/exec/gdbstub.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/exec/gdbstub.h b/include/exec/gdbstub.h index 94d8f83e92..492db0f512 100644 --- a/include/exec/gdbstub.h +++ b/include/exec/gdbstub.h @@ -46,7 +46,7 @@ void gdb_do_syscall(gdb_syscall_complete_cb cb, const char *fmt, ...); void gdb_do_syscallv(gdb_syscall_complete_cb cb, const char *fmt, va_list va); int use_gdb_syscalls(void); void gdb_set_stop_cpu(CPUState *cpu); -void gdb_exit(CPUArchState *, int); +void gdb_exit(int); #ifdef CONFIG_USER_ONLY /** * gdb_handlesig: yield control to gdb |
