aboutsummaryrefslogtreecommitdiff
path: root/include/exec
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2022-04-29 16:21:43 -0700
committerRichard Henderson <richard.henderson@linaro.org>2022-06-28 04:35:52 +0530
commit64c8c6a99221877f0e92f973c66e0e66a10ab2ff (patch)
tree71aa75614aebd2bdcb4f3bd082e2701b1666aa16 /include/exec
parent1875dab0eea908b2ceaf74d1204f1e72c69d3a73 (diff)
downloadqemu-64c8c6a99221877f0e92f973c66e0e66a10ab2ff.zip
qemu-64c8c6a99221877f0e92f973c66e0e66a10ab2ff.tar.gz
qemu-64c8c6a99221877f0e92f973c66e0e66a10ab2ff.tar.bz2
gdbstub: Adjust gdb_syscall_complete_cb declaration
Change 'ret' to uint64_t. This resolves a FIXME in the m68k and nios2 semihosting that we've lost data. Change 'err' to int. There is nothing target-specific about the width of the errno value. Reviewed-by: Luc Michel <lmichel@kalray.eu> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/exec')
-rw-r--r--include/exec/gdbstub.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/exec/gdbstub.h b/include/exec/gdbstub.h
index b588c30..f667014 100644
--- a/include/exec/gdbstub.h
+++ b/include/exec/gdbstub.h
@@ -74,8 +74,7 @@ struct gdb_timeval {
#ifdef NEED_CPU_H
#include "cpu.h"
-typedef void (*gdb_syscall_complete_cb)(CPUState *cpu,
- target_ulong ret, target_ulong err);
+typedef void (*gdb_syscall_complete_cb)(CPUState *cpu, uint64_t ret, int err);
/**
* gdb_do_syscall: