aboutsummaryrefslogtreecommitdiff
path: root/linux-user/mips64
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-07-04 20:37:46 +0200
committerLaurent Vivier <laurent@vivier.eu>2021-07-07 21:26:46 +0200
commitbc3359f7395bbc0a50ac1499948a028b885a207c (patch)
treee33f8b330392e9b61ad7bdcafad5a3d2d6a16d11 /linux-user/mips64
parentdb10481c00e5787c57523579c2571791a5bffb38 (diff)
downloadqemu-bc3359f7395bbc0a50ac1499948a028b885a207c.zip
qemu-bc3359f7395bbc0a50ac1499948a028b885a207c.tar.gz
qemu-bc3359f7395bbc0a50ac1499948a028b885a207c.tar.bz2
linux-user/mips: Handle TARGET_EWOULDBLOCK as TARGET_EAGAIN
Linux kernel defines EWOULDBLOCK as EAGAIN (since before v2.6.12-rc2). Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20210704183755.655002-4-f4bug@amsat.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/mips64')
-rw-r--r--linux-user/mips64/target_syscall.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/linux-user/mips64/target_syscall.h b/linux-user/mips64/target_syscall.h
index 8594955..c54374c 100644
--- a/linux-user/mips64/target_syscall.h
+++ b/linux-user/mips64/target_syscall.h
@@ -18,6 +18,8 @@ struct target_pt_regs {
};
/* Target errno definitions taken from asm-mips/errno.h */
+#undef TARGET_EWOULDBLOCK
+#define TARGET_EWOULDBLOCK TARGET_EAGAIN /* Operation would block */
#undef TARGET_ENOMSG
#define TARGET_ENOMSG 35 /* Identifier removed */
#undef TARGET_EIDRM