aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2017-06-19 12:18:46 +0000
committerJoseph Myers <joseph@codesourcery.com>2017-06-19 12:18:46 +0000
commited8cfb00c2fc291da1cece028bcdb05b2f4dd372 (patch)
treef7d05fe9834ab9f4a4d653ab25f98caa552bbee6 /ChangeLog
parent21f8859dd08fd231198eda4095061837d527b926 (diff)
downloadglibc-ed8cfb00c2fc291da1cece028bcdb05b2f4dd372.tar
glibc-ed8cfb00c2fc291da1cece028bcdb05b2f4dd372.tar.gz
glibc-ed8cfb00c2fc291da1cece028bcdb05b2f4dd372.tar.bz2
glibc-ed8cfb00c2fc291da1cece028bcdb05b2f4dd372.zip
Fix siginterrupt namespace (bug 21597).
The siginterrupt function is XSI-shaded in POSIX. glibc wrongly declares it in <signal.h> for non-XSI POSIX.1:2008. This patch fixes the conditionals (moving it into the __USE_XOPEN_EXTENDED || __USE_MISC block as the minimum conservative change, although it's not clear this obsolescent function should be declared by default). Tested for x86_64. [BZ #21597] * signal/signal.h (siginterrupt): Make declaration conditional on [__USE_XOPEN_EXTENDED || __USE_MISC].
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b8d9d58403..9a0bdbb8b1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2017-06-19 Joseph Myers <joseph@codesourcery.com>
+ [BZ #21597]
+ * signal/signal.h (siginterrupt): Make declaration conditional on
+ [__USE_XOPEN_EXTENDED || __USE_MISC].
+
[BZ #21584]
* signal/signal.h: Make includes of <bits/sigstack.h> and
<bits/ss_flags.h> conditional on [__USE_XOPEN_EXTENDED ||