mirror of
https://github.com/qemu/qemu.git
synced 2024-11-26 04:13:39 +08:00
linux-user: do not warn for missing pselect6
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> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
6781d08d2e
commit
9e42382fc1
@ -5267,6 +5267,10 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
|
||||
ret = do_select(nsel, inp, outp, exp, tvp);
|
||||
}
|
||||
break;
|
||||
#endif
|
||||
#ifdef TARGET_NR_pselect6
|
||||
case TARGET_NR_pselect6:
|
||||
goto unimplemented_nowarn;
|
||||
#endif
|
||||
case TARGET_NR_symlink:
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user