diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-08-22 17:01:19 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-08-22 17:01:19 +0000 |
commit | da59b78c3ccde22906b53913a0e84408d4c37db4 (patch) | |
tree | d97d674d0f590141876be34077760723f3b9d11d | |
parent | 2c7e5c09a27ccb0e6ca7274fd464165e3f25a03e (diff) |
Support _syscall6 and _syscall7 for arm
-Erik
-rw-r--r-- | libc/sysdeps/linux/arm/bits/syscalls.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/arm/bits/syscalls.h b/libc/sysdeps/linux/arm/bits/syscalls.h index 0bf2af4d5..9d5e79fe1 100644 --- a/libc/sysdeps/linux/arm/bits/syscalls.h +++ b/libc/sysdeps/linux/arm/bits/syscalls.h @@ -66,6 +66,23 @@ type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4,type5 arg5) \ return (type) (INLINE_SYSCALL(name, 5, arg1, arg2, arg3, arg4, arg5)); \ } +#undef _syscall6 +#define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \ + type5,arg5,type6,arg6) \ +type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4,type5 arg5, type6 arg6) \ +{ \ +return (type) (INLINE_SYSCALL(name, 6, arg1, arg2, arg3, arg4, arg5, arg6)); \ +} + +#undef _syscall7 +#define _syscall7(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \ + type5,arg5,type6,arg6,type7,arg7) \ +type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4,type5 arg5, type6 arg6,type7 arg7) \ +{ \ +return (type) (INLINE_SYSCALL(name, 7, arg1, arg2, arg3, arg4, arg5, arg6, arg7)); \ +} + + #undef INLINE_SYSCALL #define INLINE_SYSCALL(name, nr, args...) \ ({ unsigned int _sys_result; \ |