linux-user: do not warn for missing pselect6
authorRiku Voipio <riku.voipio@nokia.com>
Fri, 7 May 2010 12:28:05 +0000 (12:28 +0000)
committerAurelien Jarno <aurelien@aurel32.net>
Fri, 21 May 2010 16:42:37 +0000 (18:42 +0200)
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>
linux-user/syscall.c

index bca8f70..8222cb9 100644 (file)
@@ -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;