Re: [PATCH v1 1/2] linux-user: Protect more syscalls

2020-02-21 Thread Philippe Mathieu-Daudé
On 2/21/20 12:18 AM, Alistair Francis wrote: New y2038 safe 32-bit architectures (like RISC-V) don't support old syscalls with a 32-bit time_t. The kernel defines new *_time64 versions of these syscalls. Add some more #ifdefs to syscall.c in linux-user to allow us to compile without these old sys

[PATCH v1 1/2] linux-user: Protect more syscalls

2020-02-20 Thread Alistair Francis
New y2038 safe 32-bit architectures (like RISC-V) don't support old syscalls with a 32-bit time_t. The kernel defines new *_time64 versions of these syscalls. Add some more #ifdefs to syscall.c in linux-user to allow us to compile without these old syscalls. Signed-off-by: Alistair Francis --- l