[Qemu-devel] [PATCH 2/2] Add the syscall id for pselect6 on ARM as this is now supported in newer linux kernels.

2010-02-16 Thread Michael Casadevall
Signed-off-by: Michael Casadevall --- linux-user/arm/syscall_nr.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/linux-user/arm/syscall_nr.h b/linux-user/arm/syscall_nr.h index b1db341..79a216a 100644 --- a/linux-user/arm/syscall_nr.h +++ b/linux-user/arm/syscall_nr.h

[Qemu-devel] [PATCH 1/2] 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 a

2010-02-16 Thread Michael Casadevall
Signed-off-by: Michael Casadevall --- linux-user/syscall.c | 119 ++ 1 files changed, 119 insertions(+), 0 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 9fb493f..3663451 100644 --- a/linux-user/syscall.c +++ b/linux

[Qemu-devel] [PATCH 0/2] support for pselect in linux-user

2010-02-16 Thread Michael Casadevall
be refactored into two common functions; if desired, I'll resubmit the patch with said refactoring in place. Michael Casadevall (2): This patch adds support for the pselect syscall in linux-user emulation and also adds several support functions required to translate the tim