Update.
authorUlrich Drepper <drepper@redhat.com>
Thu, 20 Feb 2003 20:23:25 +0000 (20:23 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 20 Feb 2003 20:23:25 +0000 (20:23 +0000)
2003-02-20  Philip Blundell  <philb@gnu.org>

* sysdeps/unix/sysv/linux/arm/sysdep.h (INLINE_SYSCALL): Add
missing arguments to INTERNAL_SYSCALL_ERROR_P and
INTERNAL_SYSCALL_ERRNO.

ChangeLog
sysdeps/unix/sysv/linux/arm/sysdep.h

index 8b7f795..96414e5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-02-20  Philip Blundell  <philb@gnu.org>
+
+       * sysdeps/unix/sysv/linux/arm/sysdep.h (INLINE_SYSCALL): Add
+       missing arguments to INTERNAL_SYSCALL_ERROR_P and
+       INTERNAL_SYSCALL_ERRNO.
+
 2003-02-20  Martin Schwidefsky  <schwidefsky@de.ibm.com>
 
        * sysdeps/unix/sysv/linux/s390/s390-32/chown.c (__real_chown): Test
index 33ce123..785d3cf 100644 (file)
@@ -138,10 +138,10 @@ __local_syscall_error:                                            \
    call.  */
 #undef INLINE_SYSCALL
 #define INLINE_SYSCALL(name, nr, args...)                              \
-  ({ unsigned int _sys_result = INTERNAL_SYSCALL (name, nr, args);     \
-     if (__builtin_expect (INTERNAL_SYSCALL_ERROR_P (_sys_result), 0)) \
+  ({ unsigned int _sys_result = INTERNAL_SYSCALL (name, , nr, args);   \
+     if (__builtin_expect (INTERNAL_SYSCALL_ERROR_P (_sys_result, ), 0))       \
        {                                                               \
-        __set_errno (INTERNAL_SYSCALL_ERRNO (_sys_result));            \
+        __set_errno (INTERNAL_SYSCALL_ERRNO (_sys_result, ));          \
         _sys_result = (unsigned int) -1;                               \
        }                                                               \
      (int) _sys_result; })