This is the mail archive of the libc-ports@sources.redhat.com mailing list for the libc-ports project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Update MIPS signalfd.h


I've applied this patch to update the MIPS signalfd.h header corresponding 
to an update to the libc versions.

2008-10-16  Jakub Jelinek  <jakub@redhat.com>

        * sysdeps/unix/sysv/linux/sys/signalfd.h (signalfd): Fix __THROW vs.
        __nonnull order for C++.
        * sysdeps/unix/sysv/linux/alpha/sys/signalfd.h (signalfd): Likewise.
        * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h (signalfd): Likewise.

Index: ChangeLog.mips
===================================================================
RCS file: /cvs/glibc/ports/ChangeLog.mips,v
retrieving revision 1.63
diff -u -r1.63 ChangeLog.mips
--- ChangeLog.mips	15 Oct 2008 19:37:36 -0000	1.63
+++ ChangeLog.mips	25 Nov 2008 16:45:11 -0000
@@ -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: sysdeps/unix/sysv/linux/mips/sys/signalfd.h
===================================================================
RCS file: /cvs/glibc/ports/sysdeps/unix/sysv/linux/mips/sys/signalfd.h,v
retrieving revision 1.1
diff -u -r1.1 signalfd.h
--- sysdeps/unix/sysv/linux/mips/sys/signalfd.h	19 Aug 2008 16:12:35 -0000	1.1
+++ sysdeps/unix/sysv/linux/mips/sys/signalfd.h	25 Nov 2008 16:45:11 -0000
@@ -59,7 +59,7 @@
 /* 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
 

-- 
Joseph S. Myers
joseph@codesourcery.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]