Commit ff80c66a authored by Kyle McMartin's avatar Kyle McMartin

[PARISC] wire up timerfd syscalls

Signed-off-by: default avatarKyle McMartin <kyle@parisc-linux.org>
parent 0cb845ec
...@@ -404,6 +404,9 @@ ...@@ -404,6 +404,9 @@
ENTRY_SAME(ni_syscall) /* was timerfd */ ENTRY_SAME(ni_syscall) /* was timerfd */
ENTRY_SAME(eventfd) ENTRY_SAME(eventfd)
ENTRY_COMP(fallocate) /* 305 */ ENTRY_COMP(fallocate) /* 305 */
ENTRY_SAME(timerfd_create)
ENTRY_COMP(timerfd_settime)
ENTRY_COMP(timerfd_gettime)
/* Nothing yet */ /* Nothing yet */
......
...@@ -798,6 +798,9 @@ ...@@ -798,6 +798,9 @@
#define __NR_timerfd (__NR_Linux + 303) #define __NR_timerfd (__NR_Linux + 303)
#define __NR_eventfd (__NR_Linux + 304) #define __NR_eventfd (__NR_Linux + 304)
#define __NR_fallocate (__NR_Linux + 305) #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) #define __NR_Linux_syscalls (__NR_fallocate + 1)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment