qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] linux-user: do not warn for missing pselect6


From: Riku Voipio
Subject: [Qemu-devel] [PATCH] linux-user: do not warn for missing pselect6
Date: Fri, 7 May 2010 12:28:05 +0000

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 <address@hidden>
Cc: Michael Casadevall <address@hidden>
---
 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

[Prev in Thread] Current Thread [Next in Thread]