Re: [PATCH v4 2/3] linux-user/syscall: Add support for clock_gettime64/clock_settime64

2020-03-04 Thread Laurent Vivier
Le 04/03/2020 à 01:44, Alistair Francis a écrit : > Add support for the clock_gettime64/clock_settime64 syscalls. Currently > we only support these syscalls when running on 64-bit hosts. > > Signed-off-by: Alistair Francis > --- > linux-user/syscall.c | 43 +++

Re: [PATCH v4 2/3] linux-user/syscall: Add support for clock_gettime64/clock_settime64

2020-03-04 Thread Aleksandar Markovic
1:53 AM Sre, 04.03.2020. Alistair Francis је написао/ла: > > Add support for the clock_gettime64/clock_settime64 syscalls. Currently > we only support these syscalls when running on 64-bit hosts. > For clarity, "Currently we only support" should be replaced with "This patch supports only". > Sig

[PATCH v4 2/3] linux-user/syscall: Add support for clock_gettime64/clock_settime64

2020-03-03 Thread Alistair Francis
Add support for the clock_gettime64/clock_settime64 syscalls. Currently we only support these syscalls when running on 64-bit hosts. Signed-off-by: Alistair Francis --- linux-user/syscall.c | 43 +++ 1 file changed, 43 insertions(+) diff --git a/linux-use