diff options
author | Riku Voipio <riku.voipio@nokia.com> | 2010-05-07 12:28:05 +0000 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-05-21 18:42:37 +0200 |
commit | 9e42382fc14b999126f8cabb32761eb98153fd1b (patch) | |
tree | 5bae56c0bc510ad9befa89bfb03cd1b7d2af2df0 /linux-user | |
parent | 6781d08d2e0522c9e8ca421ad89ed9b19cf0555e (diff) |
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>
Diffstat (limited to 'linux-user')
-rw-r--r-- | 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 bca8f70f2c..8222cb92f1 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -5268,6 +5268,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; |