mirror of
https://github.com/mii443/qemu.git
synced 2025-12-03 11:08:25 +00:00
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>
This commit is contained in:
@@ -115,7 +115,7 @@ static int copy_stat_to_user(CPUState *cs, target_ulong addr,
|
||||
|
||||
static gdb_syscall_complete_cb gdb_open_complete;
|
||||
|
||||
static void gdb_open_cb(CPUState *cs, target_ulong ret, target_ulong err)
|
||||
static void gdb_open_cb(CPUState *cs, uint64_t ret, int err)
|
||||
{
|
||||
if (!err) {
|
||||
int guestfd = alloc_guestfd();
|
||||
|
||||
Reference in New Issue
Block a user