mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
unistd: add __NR_prlimit64 syscall numbers
Add __NR_prlimit64 syscall numbers to asm-generic. Add them also to asm-x86, both 32 and 64-bit. Signed-off-by: Jiri Slaby <jslaby@suse.cz> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@elte.hu> Cc: "H. Peter Anvin" <hpa@zytor.com>
This commit is contained in:
parent
c022a0acad
commit
f33ebbe9da
@ -842,4 +842,5 @@ ia32_sys_call_table:
|
||||
.quad compat_sys_rt_tgsigqueueinfo /* 335 */
|
||||
.quad sys_perf_event_open
|
||||
.quad compat_sys_recvmmsg
|
||||
.quad sys_prlimit64
|
||||
ia32_syscall_end:
|
||||
|
@ -343,10 +343,11 @@
|
||||
#define __NR_rt_tgsigqueueinfo 335
|
||||
#define __NR_perf_event_open 336
|
||||
#define __NR_recvmmsg 337
|
||||
#define __NR_prlimit64 338
|
||||
|
||||
#ifdef __KERNEL__
|
||||
|
||||
#define NR_syscalls 338
|
||||
#define NR_syscalls 339
|
||||
|
||||
#define __ARCH_WANT_IPC_PARSE_VERSION
|
||||
#define __ARCH_WANT_OLD_READDIR
|
||||
|
@ -663,6 +663,8 @@ __SYSCALL(__NR_rt_tgsigqueueinfo, sys_rt_tgsigqueueinfo)
|
||||
__SYSCALL(__NR_perf_event_open, sys_perf_event_open)
|
||||
#define __NR_recvmmsg 299
|
||||
__SYSCALL(__NR_recvmmsg, sys_recvmmsg)
|
||||
#define __NR_prlimit64 300
|
||||
__SYSCALL(__NR_prlimit64, sys_prlimit64)
|
||||
|
||||
#ifndef __NO_STUBS
|
||||
#define __ARCH_WANT_OLD_READDIR
|
||||
|
@ -337,3 +337,4 @@ ENTRY(sys_call_table)
|
||||
.long sys_rt_tgsigqueueinfo /* 335 */
|
||||
.long sys_perf_event_open
|
||||
.long sys_recvmmsg
|
||||
.long sys_prlimit64
|
||||
|
@ -626,9 +626,11 @@ __SYSCALL(__NR_perf_event_open, sys_perf_event_open)
|
||||
__SYSCALL(__NR_accept4, sys_accept4)
|
||||
#define __NR_recvmmsg 243
|
||||
__SYSCALL(__NR_recvmmsg, sys_recvmmsg)
|
||||
#define __NR_prlimit64 244
|
||||
__SYSCALL(__NR_prlimit64, sys_prlimit64)
|
||||
|
||||
#undef __NR_syscalls
|
||||
#define __NR_syscalls 244
|
||||
#define __NR_syscalls 245
|
||||
|
||||
/*
|
||||
* All syscalls below here should go away really,
|
||||
|
Loading…
Reference in New Issue
Block a user