Skip to content

Commit

Permalink
[PATCH] Add pselect/ppoll system calls on i386
Browse files Browse the repository at this point in the history
Add the sys_pselect6() and sys_poll() calls to the i386 syscall table.

Signed-off-by: David Woodhouse <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
dwmw2 authored and Linus Torvalds committed Jan 19, 2006
1 parent 9f72949 commit 3213e91
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions arch/i386/kernel/syscall_table.S
Original file line number Diff line number Diff line change
Expand Up @@ -307,3 +307,5 @@ ENTRY(sys_call_table)
.long sys_readlinkat /* 305 */
.long sys_fchmodat
.long sys_faccessat
.long sys_pselect6
.long sys_ppoll
4 changes: 3 additions & 1 deletion include/asm-i386/unistd.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3213e91

Please sign in to comment.