mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-11 15:50:06 +00: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:
parent
86900abd10
commit
472e5e0814
@ -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>
|
||||
|
||||
* stdlib/longlong.h: Update from GCC.
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user