diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-12-03 06:17:25 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-12-03 06:17:25 +0000 |
commit | da0ff4ae5ba18db9c82522ea0fce26b327ea10ee (patch) | |
tree | 8392b6da52b4518b349af7175aec640b8a4c7aa6 | |
parent | 51bd20d93a1d61f52bb29e19256e2401a633134b (diff) | |
download | glibc-da0ff4ae5ba18db9c82522ea0fce26b327ea10ee.zip glibc-da0ff4ae5ba18db9c82522ea0fce26b327ea10ee.tar.gz glibc-da0ff4ae5ba18db9c82522ea0fce26b327ea10ee.tar.bz2 |
[BZ #5439]
* sysdeps/unix/sysv/linux/sys/signalfd.h: Fix use of __nonnull.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/sys/signalfd.h | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2007-12-03 Ulrich Drepper <drepper@redhat.com> + [BZ #5439] + * sysdeps/unix/sysv/linux/sys/signalfd.h: Fix use of __nonnull. + [BZ #5435] * sysdeps/unix/sysv/linux/i386/makecontext.S: Align stack. diff --git a/sysdeps/unix/sysv/linux/sys/signalfd.h b/sysdeps/unix/sysv/linux/sys/signalfd.h index 247b20b..6649bc1 100644 --- a/sysdeps/unix/sysv/linux/sys/signalfd.h +++ b/sysdeps/unix/sysv/linux/sys/signalfd.h @@ -51,7 +51,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; + __nonnull ((2)) __THROW; __END_DECLS |