alpha/sparc: fix arg count for rt_sigaction

Both these arches have a rt_sigaction syscall that takes 5 args, not 4.

* linux/alpha/syscallent.h (rt_sigaction): Change nargs to 5.
* linux/sparc/syscallent.h (rt_sigaction): Change nargs to 5.
This commit is contained in:
Mike Frysinger 2014-08-09 09:21:37 -04:00 committed by Dmitry V. Levin
parent d632e10f51
commit 8efd209122
2 changed files with 2 additions and 2 deletions

View File

@ -378,7 +378,7 @@
{ 4, TD, sys_pread, "pread" }, /* 349 */
{ 4, TD, sys_pwrite, "pwrite" }, /* 350 */
{ 0, TS, sys_rt_sigreturn, "rt_sigreturn" }, /* 351 */
{ 4, TS, sys_rt_sigaction, "rt_sigaction" }, /* 352 */
{ 5, TS, sys_rt_sigaction, "rt_sigaction" }, /* 352 */
{ 4, TS, sys_rt_sigprocmask, "rt_sigprocmask" }, /* 353 */
{ 2, TS, sys_rt_sigpending, "rt_sigpending" }, /* 354 */
{ 4, TS, sys_rt_sigtimedwait, "rt_sigtimedwait" }, /* 355 */

View File

@ -100,7 +100,7 @@
{ 3, TN, sys_accept, "accept" }, /* 99 */
{ 2, 0, sys_getpriority,"getpriority" }, /* 100 */
{ 0, TS, sys_rt_sigreturn,"rt_sigreturn" }, /* 101 */
{ 4, TS, sys_rt_sigaction,"rt_sigaction" }, /* 102 */
{ 5, TS, sys_rt_sigaction,"rt_sigaction" }, /* 102 */
{ 4, TS, sys_rt_sigprocmask,"rt_sigprocmask" }, /* 103 */
{ 2, TS, sys_rt_sigpending,"rt_sigpending" }, /* 104 */
{ 4, TS, sys_rt_sigtimedwait,"rt_sigtimedwait" },/* 105 */