m68k: Return semihosting errno values correctly
Fixing a simple typo, s/errno/err/, that caused
the error status from GDB semihosted system calls
to be returned incorrectly.
Signed-off-by: Meador Inge <meadori@codesourcery.com>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
(cherry picked from commit aed91c1bff
)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
This commit is contained in:
parent
5c0d5aebd5
commit
382a582c1f
|
@ -150,7 +150,7 @@ static void m68k_semi_cb(CPUM68KState *env, target_ulong ret, target_ulong err)
|
|||
}
|
||||
/* FIXME - handle put_user() failure */
|
||||
put_user_u32(ret, args);
|
||||
put_user_u32(errno, args + 4);
|
||||
put_user_u32(err, args + 4);
|
||||
}
|
||||
|
||||
#define ARG(n) \
|
||||
|
|
Loading…
Reference in New Issue