diff options
author | Arnd Bergmann <arnd@arndb.de> | 2009-12-10 16:15:20 -0500 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2009-12-10 16:18:37 -0500 |
commit | 3d7703870633dd454f6554e6d8d7f70441d0fd2d (patch) | |
tree | f468a2005606b1ac6d15e134e896a8efb340ef92 /include/asm-generic/unistd.h | |
parent | 9ab87644393d789b950ba984fa360f45c4df02e5 (diff) |
asm-generic: add sys_recvmmsg to unistd.h
sys_recvmmsg was recently merged, add it to asm-generic
as well so new architectures can use it.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'include/asm-generic/unistd.h')
-rw-r--r-- | include/asm-generic/unistd.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/asm-generic/unistd.h b/include/asm-generic/unistd.h index c5545da5cb72..30e38b17703c 100644 --- a/include/asm-generic/unistd.h +++ b/include/asm-generic/unistd.h | |||
@@ -624,9 +624,11 @@ __SYSCALL(__NR_rt_tgsigqueueinfo, sys_rt_tgsigqueueinfo) | |||
624 | __SYSCALL(__NR_perf_event_open, sys_perf_event_open) | 624 | __SYSCALL(__NR_perf_event_open, sys_perf_event_open) |
625 | #define __NR_accept4 242 | 625 | #define __NR_accept4 242 |
626 | __SYSCALL(__NR_accept4, sys_accept4) | 626 | __SYSCALL(__NR_accept4, sys_accept4) |
627 | #define __NR_recvmmsg 243 | ||
628 | __SYSCALL(__NR_recvmmsg, sys_recvmmsg) | ||
627 | 629 | ||
628 | #undef __NR_syscalls | 630 | #undef __NR_syscalls |
629 | #define __NR_syscalls 243 | 631 | #define __NR_syscalls 244 |
630 | 632 | ||
631 | /* | 633 | /* |
632 | * All syscalls below here should go away really, | 634 | * All syscalls below here should go away really, |