From: Chen Gang Date: Mon, 7 Sep 2015 02:35:06 +0000 (+0800) Subject: linux-user/syscall.c: Add EAGAIN to host_to_target_errno_table for X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=08703b9f7bcd7ca2152d51a4c8893d26f1dc28de;p=qmiga%2Fqemu.git linux-user/syscall.c: Add EAGAIN to host_to_target_errno_table for Under Alpha host, EAGAIN is redefined to 35, so it need be remapped too. Reviewed-by: Peter Maydell Signed-off-by: Chen Gang Signed-off-by: Riku Voipio --- diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 952834422d..98b5766d4a 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -457,6 +457,7 @@ static uint16_t target_to_host_errno_table[ERRNO_TABLE_SIZE] = { * minus the errnos that are not actually generic to all archs. */ static uint16_t host_to_target_errno_table[ERRNO_TABLE_SIZE] = { + [EAGAIN] = TARGET_EAGAIN, [EIDRM] = TARGET_EIDRM, [ECHRNG] = TARGET_ECHRNG, [EL2NSYNC] = TARGET_EL2NSYNC,