From: Riku Voipio Date: Fri, 7 May 2010 12:28:05 +0000 (+0000) Subject: linux-user: do not warn for missing pselect6 X-Git-Tag: TizenStudio_2.0_p2.3~4756 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=beb4d93b1fd25e7aa27c9326d401c3ff0f04c9bc;p=sdk%2Femulator%2Fqemu.git 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 --- 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;