Commit 12d16114 authored by Thomas Gleixner's avatar Thomas Gleixner

x86: hookup sys_rt_tgsigqueueinfo

Make the new sys_rt_tgsigqueueinfo available for x86.
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 62ab4505
...@@ -830,4 +830,5 @@ ia32_sys_call_table: ...@@ -830,4 +830,5 @@ ia32_sys_call_table:
.quad sys_inotify_init1 .quad sys_inotify_init1
.quad compat_sys_preadv .quad compat_sys_preadv
.quad compat_sys_pwritev .quad compat_sys_pwritev
.quad compat_sys_rt_tgsigqueueinfo /* 335 */
ia32_syscall_end: ia32_syscall_end:
...@@ -340,6 +340,7 @@ ...@@ -340,6 +340,7 @@
#define __NR_inotify_init1 332 #define __NR_inotify_init1 332
#define __NR_preadv 333 #define __NR_preadv 333
#define __NR_pwritev 334 #define __NR_pwritev 334
#define __NR_rt_tgsigqueueinfo 335
#ifdef __KERNEL__ #ifdef __KERNEL__
......
...@@ -657,6 +657,8 @@ __SYSCALL(__NR_inotify_init1, sys_inotify_init1) ...@@ -657,6 +657,8 @@ __SYSCALL(__NR_inotify_init1, sys_inotify_init1)
__SYSCALL(__NR_preadv, sys_preadv) __SYSCALL(__NR_preadv, sys_preadv)
#define __NR_pwritev 296 #define __NR_pwritev 296
__SYSCALL(__NR_pwritev, sys_pwritev) __SYSCALL(__NR_pwritev, sys_pwritev)
#define __NR_rt_tgsigqueueinfo 297
__SYSCALL(__NR_rt_tgsigqueueinfo, sys_rt_tgsigqueueinfo)
#ifndef __NO_STUBS #ifndef __NO_STUBS
......
...@@ -334,3 +334,4 @@ ENTRY(sys_call_table) ...@@ -334,3 +334,4 @@ ENTRY(sys_call_table)
.long sys_inotify_init1 .long sys_inotify_init1
.long sys_preadv .long sys_preadv
.long sys_pwritev .long sys_pwritev
.long sys_rt_tgsigqueueinfo /* 335 */
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