Re: [PATCH v9 1/4] linux-user: Protect more syscalls

2020-03-18 Thread Philippe Mathieu-Daudé
On 3/18/20 11:46 PM, 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 v9 1/4] linux-user: Protect more syscalls

2020-03-18 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 Review