qemu-devel
[Top][All Lists]
Advanced

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

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


From: Aurelien Jarno
Subject: Re: [Qemu-devel] [PATCH] linux-user: do not warn for missing pselect6
Date: Fri, 21 May 2010 18:47:28 +0200
User-agent: Mutt/1.5.20 (2009-06-14)

On Fri, May 07, 2010 at 12:28:05PM +0000, Riku Voipio wrote:
> 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>

Thanks, applied.

> ---
>  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
> 
> 
> 
> 

-- 
Aurelien Jarno                          GPG: 1024D/F1BCDB73
address@hidden                 http://www.aurel32.net



reply via email to

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