diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-07-08 19:05:50 +0200 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2021-07-12 21:53:35 +0200 |
commit | 4f6a9f84f1d29b61e3ebd3bfd774d9fd5afe60c6 (patch) | |
tree | ac80c0a51f515ae7f2ca2156bf4b2c8fee28a79c /linux-user | |
parent | 3ffe3268ea5e938de0c5fc309013805e4123531d (diff) |
linux-user/syscall: Remove ERRNO_TABLE_SIZE check
Now than target_to_host_errno() always return an errno, we can
remove the unused and arbitrary ERRNO_TABLE_SIZE definition.
Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210708170550.1846343-9-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/syscall.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 94ec6f730b..376629c689 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -507,8 +507,6 @@ static inline int next_free_host_timer(void) } #endif -#define ERRNO_TABLE_SIZE 1200 - static inline int host_to_target_errno(int host_errno) { switch (host_errno) { @@ -548,9 +546,6 @@ const char *target_strerror(int err) return "Successful exit from sigreturn"; } - if ((err >= ERRNO_TABLE_SIZE) || (err < 0)) { - return NULL; - } return strerror(target_to_host_errno(err)); } |