svn commit: trunk/uClibc/libc/sysdeps/linux/cris/bits

vapier at uclibc.org vapier at uclibc.org
Wed Feb 1 00:14:53 UTC 2006


Author: vapier
Date: 2006-01-31 16:14:52 -0800 (Tue, 31 Jan 2006)
New Revision: 13771

Log:
add syscall6

Modified:
   trunk/uClibc/libc/sysdeps/linux/cris/bits/syscalls.h


Changeset:
Modified: trunk/uClibc/libc/sysdeps/linux/cris/bits/syscalls.h
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/cris/bits/syscalls.h	2006-02-01 00:14:43 UTC (rev 13770)
+++ trunk/uClibc/libc/sysdeps/linux/cris/bits/syscalls.h	2006-02-01 00:14:52 UTC (rev 13771)
@@ -62,6 +62,14 @@
 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 INLINE_SYSCALL
 #define INLINE_SYSCALL(name, nr, args...)	\
   ({						\



More information about the uClibc-cvs mailing list