diff options
author | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2007-05-13 10:33:33 -0400 |
---|---|---|
committer | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2007-05-13 11:07:57 -0400 |
commit | 78c129b949bdee21dd996ac5f5cfc655cd5bd42e (patch) | |
tree | e39144a19077210263c4810d4a76f170209b5b02 | |
parent | 9caebec7b8093574fca5a334a1939530872d75e3 (diff) |
[AVR32] Wire up signalfd, timerfd and eventfd
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
-rw-r--r-- | arch/avr32/kernel/syscall_table.S | 3 | ||||
-rw-r--r-- | include/asm-avr32/unistd.h | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/arch/avr32/kernel/syscall_table.S b/arch/avr32/kernel/syscall_table.S index 07f6a6fa340d..75c81f2dd0b3 100644 --- a/arch/avr32/kernel/syscall_table.S +++ b/arch/avr32/kernel/syscall_table.S | |||
@@ -292,4 +292,7 @@ sys_call_table: | |||
292 | .long sys_shmdt | 292 | .long sys_shmdt |
293 | .long sys_shmctl | 293 | .long sys_shmctl |
294 | .long sys_utimensat | 294 | .long sys_utimensat |
295 | .long sys_signalfd | ||
296 | .long sys_timerfd /* 280 */ | ||
297 | .long sys_eventfd | ||
295 | .long sys_ni_syscall /* r8 is saturated at nr_syscalls */ | 298 | .long sys_ni_syscall /* r8 is saturated at nr_syscalls */ |
diff --git a/include/asm-avr32/unistd.h b/include/asm-avr32/unistd.h index 2418cce624cc..3b4e35b55c82 100644 --- a/include/asm-avr32/unistd.h +++ b/include/asm-avr32/unistd.h | |||
@@ -296,9 +296,12 @@ | |||
296 | #define __NR_shmctl 277 | 296 | #define __NR_shmctl 277 |
297 | 297 | ||
298 | #define __NR_utimensat 278 | 298 | #define __NR_utimensat 278 |
299 | #define __NR_signalfd 279 | ||
300 | #define __NR_timerfd 280 | ||
301 | #define __NR_eventfd 281 | ||
299 | 302 | ||
300 | #ifdef __KERNEL__ | 303 | #ifdef __KERNEL__ |
301 | #define NR_syscalls 279 | 304 | #define NR_syscalls 282 |
302 | 305 | ||
303 | 306 | ||
304 | #define __ARCH_WANT_IPC_PARSE_VERSION | 307 | #define __ARCH_WANT_IPC_PARSE_VERSION |