summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiku Voipio <riku.voipio@nokia.com>2010-05-07 12:28:05 +0000
committerAurelien Jarno <aurelien@aurel32.net>2010-05-21 18:42:37 +0200
commit9e42382fc14b999126f8cabb32761eb98153fd1b (patch)
tree5bae56c0bc510ad9befa89bfb03cd1b7d2af2df0
parent6781d08d2e0522c9e8ca421ad89ed9b19cf0555e (diff)
downloadqemu-9e42382fc14b999126f8cabb32761eb98153fd1b.tar.gz
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 <riku.voipio@nokia.com> Cc: Michael Casadevall <mcasadevall@ubuntu.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
-rw-r--r--linux-user/syscall.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index bca8f70f2c..8222cb92f1 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;