diff options
author | Joseph Myers <joseph@codesourcery.com> | 2017-06-19 12:18:46 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2017-06-19 12:18:46 +0000 |
commit | ed8cfb00c2fc291da1cece028bcdb05b2f4dd372 (patch) | |
tree | f7d05fe9834ab9f4a4d653ab25f98caa552bbee6 /ChangeLog | |
parent | 21f8859dd08fd231198eda4095061837d527b926 (diff) | |
download | glibc-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-- | ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 || |