Re: [Qemu-devel] [PATCH v3] linux-user: add ppoll syscall support

2011-01-24 Thread Peter Maydell
On 24 January 2011 03:57, Mike Frysinger vap...@gentoo.org wrote: Some architectures (like Blackfin) only implement ppoll (and skip poll). So add support for it using existing poll code. Signed-off-by: Mike Frysinger vap...@gentoo.org --- v3        - call ppoll syscall directly so timespec

[Qemu-devel] [PATCH v3] linux-user: add ppoll syscall support

2011-01-23 Thread Mike Frysinger
Some architectures (like Blackfin) only implement ppoll (and skip poll). So add support for it using existing poll code. Signed-off-by: Mike Frysinger vap...@gentoo.org --- v3 - call ppoll syscall directly so timespec updates get passed back - tweak style - use new sigsets