[xtensa-cvscommit] linux/arch/xtensa/kernel syscalls.h,1.2,1.3
Brought to you by:
zankel
|
From: <joe...@us...> - 2002-10-01 22:35:45
|
Update of /cvsroot/xtensa/linux/arch/xtensa/kernel In directory usw-pr-cvs1:/tmp/cvs-serv13766/arch/xtensa/kernel Modified Files: syscalls.h Log Message: Change the parameter count for sys_ipc() to match glibc. Man pages show six parameters for ipc, yet glibc uses only 5. The goofy syscall parameter layout requires that they match exactly. Index: syscalls.h =================================================================== RCS file: /cvsroot/xtensa/linux/arch/xtensa/kernel/syscalls.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** syscalls.h 11 Sep 2002 16:29:49 -0000 1.2 --- syscalls.h 1 Oct 2002 22:35:41 -0000 1.3 *************** *** 141,145 **** SYS(sys_swapoff, 1) /* 115 */ SYS(sys_sysinfo, 1) ! SYS(sys_ipc, 6) SYS(sys_fsync, 1) SYS(sys_sigreturn, 0) --- 141,145 ---- SYS(sys_swapoff, 1) /* 115 */ SYS(sys_sysinfo, 1) ! SYS(sys_ipc, 5) /* 6 really, but glibc uses only 5) */ SYS(sys_fsync, 1) SYS(sys_sigreturn, 0) |