Skip to content

Commit

Permalink
[PARISC] wire up timerfd syscalls
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
  • Loading branch information
Kyle McMartin committed Mar 16, 2008
1 parent 0cb845e commit ff80c66
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions arch/parisc/kernel/syscall_table.S
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,9 @@
ENTRY_SAME(ni_syscall) /* was timerfd */
ENTRY_SAME(eventfd)
ENTRY_COMP(fallocate) /* 305 */
ENTRY_SAME(timerfd_create)
ENTRY_COMP(timerfd_settime)
ENTRY_COMP(timerfd_gettime)

/* Nothing yet */

Expand Down
3 changes: 3 additions & 0 deletions include/asm-parisc/unistd.h
Original file line number Diff line number Diff line change
Expand Up @@ -798,6 +798,9 @@
#define __NR_timerfd (__NR_Linux + 303)
#define __NR_eventfd (__NR_Linux + 304)
#define __NR_fallocate (__NR_Linux + 305)
#define __NR_timerfd_create (__NR_Linux + 306)
#define __NR_timerfd_settime (__NR_Linux + 307)
#define __NR_timerfd_gettime (__NR_Linux + 308)

#define __NR_Linux_syscalls (__NR_fallocate + 1)

Expand Down

0 comments on commit ff80c66

Please sign in to comment.