From: David Woodhouse Add the sys_pselect6() and sys_poll() calls to the i386 syscall table. Signed-off-by: David Woodhouse Signed-off-by: Andrew Morton --- arch/i386/kernel/syscall_table.S | 2 ++ include/asm-i386/unistd.h | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff -puN arch/i386/kernel/syscall_table.S~add-pselect-ppoll-system-calls-on-i386 arch/i386/kernel/syscall_table.S --- devel/arch/i386/kernel/syscall_table.S~add-pselect-ppoll-system-calls-on-i386 2006-01-11 16:44:35.000000000 -0800 +++ devel-akpm/arch/i386/kernel/syscall_table.S 2006-01-11 16:44:35.000000000 -0800 @@ -307,3 +307,5 @@ ENTRY(sys_call_table) .long sys_readlinkat /* 305 */ .long sys_fchmodat .long sys_faccessat + .long sys_pselect6 + .long sys_ppoll diff -puN include/asm-i386/unistd.h~add-pselect-ppoll-system-calls-on-i386 include/asm-i386/unistd.h --- devel/include/asm-i386/unistd.h~add-pselect-ppoll-system-calls-on-i386 2006-01-11 16:44:35.000000000 -0800 +++ devel-akpm/include/asm-i386/unistd.h 2006-01-11 16:44:35.000000000 -0800 @@ -313,8 +313,10 @@ #define __NR_readlinkat 305 #define __NR_fchmodat 306 #define __NR_faccessat 307 +#define __NR_pselect6 308 +#define __NR_ppoll 309 -#define NR_syscalls 308 +#define NR_syscalls 310 /* * user-visible error numbers are in the range -1 - -128: see _