* [Qemu-devel] [PATCH] linux-user: do not warn for missing pselect6
@ 2010-05-07 12:28 Riku Voipio
2010-05-21 16:47 ` Aurelien Jarno
0 siblings, 1 reply; 2+ messages in thread
From: Riku Voipio @ 2010-05-07 12:28 UTC (permalink / raw)
To: qemu-devel; +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 <riku.voipio@nokia.com>
Cc: Michael Casadevall <mcasadevall@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
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH] linux-user: do not warn for missing pselect6
2010-05-07 12:28 [Qemu-devel] [PATCH] linux-user: do not warn for missing pselect6 Riku Voipio
@ 2010-05-21 16:47 ` Aurelien Jarno
0 siblings, 0 replies; 2+ messages in thread
From: Aurelien Jarno @ 2010-05-21 16:47 UTC (permalink / raw)
To: Riku Voipio; +Cc: Michael Casadevall, qemu-devel
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 <riku.voipio@nokia.com>
> Cc: Michael Casadevall <mcasadevall@ubuntu.com>
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
aurelien@aurel32.net http://www.aurel32.net
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-05-21 16:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-07 12:28 [Qemu-devel] [PATCH] linux-user: do not warn for missing pselect6 Riku Voipio
2010-05-21 16:47 ` Aurelien Jarno
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).