Commit e01916e3e7834cb51327e5e4983ff76bfce8a91f
Committed by
Russell King
1 parent
312cec5d09
Exists in
master
and in
39 other branches
[ARM] wire up rt_tgsigqueueinfo and perf_counter_open
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Showing 2 changed files with 4 additions and 0 deletions Side-by-side Diff
arch/arm/include/asm/unistd.h
... | ... | @@ -389,6 +389,8 @@ |
389 | 389 | #define __NR_inotify_init1 (__NR_SYSCALL_BASE+360) |
390 | 390 | #define __NR_preadv (__NR_SYSCALL_BASE+361) |
391 | 391 | #define __NR_pwritev (__NR_SYSCALL_BASE+362) |
392 | +#define __NR_rt_tgsigqueueinfo (__NR_SYSCALL_BASE+363) | |
393 | +#define __NR_perf_counter_open (__NR_SYSCALL_BASE+364) | |
392 | 394 | |
393 | 395 | /* |
394 | 396 | * The following SWIs are ARM private. |
arch/arm/kernel/calls.S
... | ... | @@ -372,6 +372,8 @@ |
372 | 372 | /* 360 */ CALL(sys_inotify_init1) |
373 | 373 | CALL(sys_preadv) |
374 | 374 | CALL(sys_pwritev) |
375 | + CALL(sys_rt_tgsigqueueinfo) | |
376 | + CALL(sys_perf_counter_open) | |
375 | 377 | #ifndef syscalls_counted |
376 | 378 | .equ syscalls_padding, ((NR_syscalls + 3) & ~3) - NR_syscalls |
377 | 379 | #define syscalls_counted |