From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1OANRW-0005D9-Lk for qemu-devel@nongnu.org; Fri, 07 May 2010 09:18:14 -0400 Received: from [140.186.70.92] (port=58236 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OANRO-0003pM-F7 for qemu-devel@nongnu.org; Fri, 07 May 2010 09:18:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OAMf5-0006HT-Sh for qemu-devel@nongnu.org; Fri, 07 May 2010 08:28:18 -0400 Received: from afflict.kos.to ([92.243.29.197]:53319) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OAMf5-0006HE-O9 for qemu-devel@nongnu.org; Fri, 07 May 2010 08:28:11 -0400 From: Riku Voipio Date: Fri, 7 May 2010 12:28:05 +0000 Message-Id: <1273235285-27574-1-git-send-email-riku.voipio@nokia.com> Subject: [Qemu-devel] [PATCH] linux-user: do not warn for missing pselect6 List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Michael Casadevall , Riku Voipio 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 --- 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