aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorZack Weinberg <zackw@panix.com>2017-05-22 22:28:09 -0400
committerZack Weinberg <zackw@panix.com>2017-05-22 22:32:09 -0400
commit231a59ce2c5719d2d77752c21092960e28837b4a (patch)
tree8027ab11263bad7d73188b34aebc3d881fc0dec2 /ChangeLog
parentf1a67a2c78601599be51a17250ca02c7d830d79d (diff)
downloadglibc-231a59ce2c5719d2d77752c21092960e28837b4a.zip
glibc-231a59ce2c5719d2d77752c21092960e28837b4a.tar.gz
glibc-231a59ce2c5719d2d77752c21092960e28837b4a.tar.bz2
Fix a bug in 'Remove __need macros from signal.h' (a992f506)
siginfo-arch.h is included in two different places, so the default definitions of the macros that it might or might not define need to be done conditionally afterward, not unconditionally beforehand. * sysdeps/unix/sysv/linux/bits/siginfo-consts.h (__SI_ASYNCIO_AFTER_SIGIO): Define default after including bits/siginfo-arch.h, only if not already defined. * sysdeps/unix/sysv/linux/bits/types/siginfo_t.h (__SI_ALIGNMENT, __SI_BAND_TYPE, __SI_CLOCK_T) (__SI_ERRNO_THEN_CODE, __SI_HAVE_SIGSYS, __SI_SEGFAULT_ADDL): Likewise. * sysdeps/unix/sysv/linux/ia64/bits/siginfo-arch.h * sysdeps/unix/sysv/linux/mips/bits/siginfo-arch.h * sysdeps/unix/sysv/linux/sparc/bits/siginfo-arch.h * sysdeps/unix/sysv/linux/tile/bits/siginfo-arch.h * sysdeps/unix/sysv/linux/x86/bits/siginfo-arch.h: Unconditionally define __SI_* macros.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog17
1 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index dde43e0..f432020 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,20 @@
+2017-05-22 Zack Weinberg <zackw@panix.com>
+
+ * sysdeps/unix/sysv/linux/bits/siginfo-consts.h
+ (__SI_ASYNCIO_AFTER_SIGIO): Define default after including
+ bits/siginfo-arch.h, only if not already defined.
+ * sysdeps/unix/sysv/linux/bits/types/siginfo_t.h
+ (__SI_ALIGNMENT, __SI_BAND_TYPE, __SI_CLOCK_T)
+ (__SI_ERRNO_THEN_CODE, __SI_HAVE_SIGSYS, __SI_SEGFAULT_ADDL):
+ Likewise.
+
+ * sysdeps/unix/sysv/linux/ia64/bits/siginfo-arch.h
+ * sysdeps/unix/sysv/linux/mips/bits/siginfo-arch.h
+ * sysdeps/unix/sysv/linux/sparc/bits/siginfo-arch.h
+ * sysdeps/unix/sysv/linux/tile/bits/siginfo-arch.h
+ * sysdeps/unix/sysv/linux/x86/bits/siginfo-arch.h:
+ Unconditionally define __SI_* macros.
+
2017-05-22 Adhemerval Zanella <adhemerval.zanella@linaro.org>
[BZ #21393]