diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-03-02 18:58:02 -0800 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2023-03-07 20:44:09 +0000 |
commit | 2f70f2d7917357621fbc4fadeb1bb6f99bd805e0 (patch) | |
tree | 554bc44103d0e18f76f111b18d1ee94823719a92 /include | |
parent | 131f387d741ee2dfe953f8829e5634e49e6dfb31 (diff) | |
download | qemu-2f70f2d7917357621fbc4fadeb1bb6f99bd805e0.zip qemu-2f70f2d7917357621fbc4fadeb1bb6f99bd805e0.tar.gz qemu-2f70f2d7917357621fbc4fadeb1bb6f99bd805e0.tar.bz2 |
gdbstub: Remove gdb_do_syscallv
This function is unused, except to implement gdb_do_syscall.
Fold the implementations together.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20230303025805.625589-27-richard.henderson@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/gdbstub/syscalls.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/gdbstub/syscalls.h b/include/gdbstub/syscalls.h index 5851a2c..243eaf8 100644 --- a/include/gdbstub/syscalls.h +++ b/include/gdbstub/syscalls.h @@ -92,17 +92,6 @@ typedef void (*gdb_syscall_complete_cb)(CPUState *cpu, uint64_t ret, int err); void gdb_do_syscall(gdb_syscall_complete_cb cb, const char *fmt, ...); /** - * gdb_do_syscallv: - * @cb: function to call when the system call has completed - * @fmt: gdb syscall format string - * @va: arguments to interpolate into @fmt - * - * As gdb_do_syscall, but taking a va_list rather than a variable - * argument list. - */ -void gdb_do_syscallv(gdb_syscall_complete_cb cb, const char *fmt, va_list va); - -/** * use_gdb_syscalls() - report if GDB should be used for syscalls * * This is mostly driven by the semihosting mode the user configures |