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.voi...@nokia.com>
Cc: Michael Casadevall <mcasadev...@ubuntu.com>
---
 linux-user/syscall.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 17599eb..09c16dc 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -5199,6 +5199,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;
-- 
1.6.5



Reply via email to