Re: [Qemu-devel] [PATCH 1/4] linux-user: add pselect syscall

2010-03-28 Thread Jamie Lokier
Paul Brook wrote: > >This patch adds support for the pselect syscall in linux-user emulation > >and also adds several support functions required to translate the > >timespec structs between the target and the host. > > IIUC the whole point of the pselect is that it should be atomic. By > emulating

Re: [Qemu-devel] [PATCH 1/4] linux-user: add pselect syscall

2010-03-26 Thread Paul Brook
>This patch adds support for the pselect syscall in linux-user emulation >and also adds several support functions required to translate the >timespec structs between the target and the host. IIUC the whole point of the pselect is that it should be atomic. By emulating this in a non-atomic fasion

Re: [Qemu-devel] [PATCH 1/4] linux-user: add pselect syscall

2010-03-26 Thread Aurelien Jarno
On Fri, Mar 26, 2010 at 03:25:09PM +, Riku Voipio wrote: > From: Michael Casadevall > > This patch adds support for the pselect syscall in linux-user emulation > and also adds several support functions required to translate the > timespec structs between the target and the host. > > Signed-o