* sysdeps/unix/sysv/linux/mips/sys/signalfd.h (signalfd): Fix
authorJoseph Myers <joseph@codesourcery.com>
Tue, 25 Nov 2008 16:45:39 +0000 (16:45 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Tue, 25 Nov 2008 16:45:39 +0000 (16:45 +0000)
__THROW vs. __nonnull order for C++.

ChangeLog.mips
sysdeps/unix/sysv/linux/mips/sys/signalfd.h

index e94e109..9bd9e04 100644 (file)
@@ -1,3 +1,8 @@
+2008-11-25  Joseph Myers  <joseph@codesourcery.com>
+
+       * sysdeps/unix/sysv/linux/mips/sys/signalfd.h (signalfd): Fix
+       __THROW vs. __nonnull order for C++.
+
 2008-10-15  Daniel Jacobowitz  <dan@codesourcery.com>
 
        * sysdeps/mips/dl-dtprocnum.h (DT_MIPS_NUM): Do not redefine.
index 2fe7e37..08923c0 100644 (file)
@@ -59,7 +59,7 @@ __BEGIN_DECLS
 /* Request notification for delivery of signals in MASK to be
    performed using descriptor FD.*/
 extern int signalfd (int __fd, const sigset_t *__mask, int __flags)
-  __nonnull ((2)) __THROW;
+  __THROW __nonnull ((2));
 
 __END_DECLS