From 9e42382fc14b999126f8cabb32761eb98153fd1b Mon Sep 17 00:00:00 2001 From: Riku Voipio Date: Fri, 7 May 2010 12:28:05 +0000 Subject: linux-user: do not warn for missing pselect6 Libc will fallback gracefully if pselect6 is not available. Thus put pselect6 to nowarn until the atomicity issues of the original pselect6 patch are dealt with. Signed-off-by: Riku Voipio Cc: Michael Casadevall Signed-off-by: Aurelien Jarno --- linux-user/syscall.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'linux-user') diff --git a/linux-user/syscall.c b/linux-user/syscall.c index bca8f70..8222cb9 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -5268,6 +5268,10 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, } break; #endif +#ifdef TARGET_NR_pselect6 + case TARGET_NR_pselect6: + goto unimplemented_nowarn; +#endif case TARGET_NR_symlink: { void *p2; -- cgit v1.1