summaryrefslogtreecommitdiffstats
path: root/linux-user
diff options
context:
space:
mode:
authorChen Gang <gang.chen.5i5j@gmail.com>2015-09-07 10:35:06 +0800
committerRiku Voipio <riku.voipio@linaro.org>2015-09-28 16:57:54 +0300
commit08703b9f7bcd7ca2152d51a4c8893d26f1dc28de (patch)
tree102afc61af229682589ba9ddc5ff3ecd1f7ba13c /linux-user
parent0f0426f343886fb5c9f137c2830f35cc2dae7327 (diff)
downloadhqemu-08703b9f7bcd7ca2152d51a4c8893d26f1dc28de.zip
hqemu-08703b9f7bcd7ca2152d51a4c8893d26f1dc28de.tar.gz
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 <peter.maydell@linaro.org> Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com> Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user')
-rw-r--r--linux-user/syscall.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 9528344..98b5766 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,
OpenPOWER on IntegriCloud