linux-user: fix the errno value in print_syscall_err()
commit6733d57035d1c4a67070b8d737334c28e5c63bc6
authorLaurent Vivier <laurent@vivier.eu>
Wed, 8 Jul 2020 15:24:34 +0000 (8 17:24 +0200)
committerLaurent Vivier <laurent@vivier.eu>
Tue, 14 Jul 2020 07:29:14 +0000 (14 09:29 +0200)
treea85c1f1731e2e06ce3976045b9a779606c125d3c
parent65b261a63a48fbb3b11193361d4ea0c38a3c3dfd
linux-user: fix the errno value in print_syscall_err()

errno of the target is returned as a negative value by the syscall,
not in the host errno variable.

The emulation of the target syscall can return an error while the
host doesn't set an errno value. Target errnos and host errnos can
also differ in some cases.

Fixes: c84be71f6854 ("linux-user: Extend strace support to enable argument printing after syscall execution")
Cc: Filip.Bozuta@syrmia.com
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Filip Bozuta <Filip.Bozuta@syrmia.com>
Message-Id: <20200708152435.706070-2-laurent@vivier.eu>
linux-user/strace.c