Re: [Qemu-devel] [PULL v2 03/24] linux-user: Use safe_syscall wrapper for fcntl

2018-07-12 Thread Peter Maydell
On 12 July 2018 at 08:18, Laurent Vivier wrote: > Le 28/06/2016 à 21:12, riku.voi...@linaro.org a écrit : >> From: Peter Maydell >> >> Use the safe_syscall wrapper for fcntl. This is straightforward now >> that we always use 'struct fcntl64' on the host, as we don't need >> to select whether to c

Re: [Qemu-devel] [PULL v2 03/24] linux-user: Use safe_syscall wrapper for fcntl

2018-07-12 Thread Laurent Vivier
Le 28/06/2016 à 21:12, riku.voi...@linaro.org a écrit : > From: Peter Maydell > > Use the safe_syscall wrapper for fcntl. This is straightforward now > that we always use 'struct fcntl64' on the host, as we don't need > to select whether to call the host's fcntl64 or fcntl syscall > (a detail tha

[Qemu-devel] [PULL v2 03/24] linux-user: Use safe_syscall wrapper for fcntl

2016-06-28 Thread riku . voipio
From: Peter Maydell Use the safe_syscall wrapper for fcntl. This is straightforward now that we always use 'struct fcntl64' on the host, as we don't need to select whether to call the host's fcntl64 or fcntl syscall (a detail that the libc previously hid for us). Signed-off-by: Peter Maydell Re