mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
* 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. 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.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
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.
|
||||||
|
|
||||||
2008-10-01 Daniel Jacobowitz <dan@codesourcery.com>
|
2008-10-01 Daniel Jacobowitz <dan@codesourcery.com>
|
||||||
|
|
||||||
* stdlib/longlong.h: Update from GCC.
|
* stdlib/longlong.h: Update from GCC.
|
||||||
|
@ -59,7 +59,7 @@ __BEGIN_DECLS
|
|||||||
/* Request notification for delivery of signals in MASK to be
|
/* Request notification for delivery of signals in MASK to be
|
||||||
performed using descriptor FD.*/
|
performed using descriptor FD.*/
|
||||||
extern int signalfd (int __fd, const sigset_t *__mask, int __flags)
|
extern int signalfd (int __fd, const sigset_t *__mask, int __flags)
|
||||||
__nonnull ((2)) __THROW;
|
__THROW __nonnull ((2));
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ __BEGIN_DECLS
|
|||||||
/* Request notification for delivery of signals in MASK to be
|
/* Request notification for delivery of signals in MASK to be
|
||||||
performed using descriptor FD.*/
|
performed using descriptor FD.*/
|
||||||
extern int signalfd (int __fd, const sigset_t *__mask, int __flags)
|
extern int signalfd (int __fd, const sigset_t *__mask, int __flags)
|
||||||
__nonnull ((2)) __THROW;
|
__THROW __nonnull ((2));
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ __BEGIN_DECLS
|
|||||||
/* Request notification for delivery of signals in MASK to be
|
/* Request notification for delivery of signals in MASK to be
|
||||||
performed using descriptor FD.*/
|
performed using descriptor FD.*/
|
||||||
extern int signalfd (int __fd, const sigset_t *__mask, int __flags)
|
extern int signalfd (int __fd, const sigset_t *__mask, int __flags)
|
||||||
__nonnull ((2)) __THROW;
|
__THROW __nonnull ((2));
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user