diff options
author | Joseph Myers <joseph@codesourcery.com> | 2014-11-27 16:02:26 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2014-11-27 16:02:26 +0000 |
commit | 6b5189eb2000761cd68c3c54c0d03357a9aaec67 (patch) | |
tree | 4480e1a76e4a596cd1b2a50127b2cdda5e3b94a1 /ChangeLog | |
parent | 49051f8ea4551229fa656eba04031af51a5491c5 (diff) | |
download | glibc-6b5189eb2000761cd68c3c54c0d03357a9aaec67.tar.gz glibc-6b5189eb2000761cd68c3c54c0d03357a9aaec67.tar.xz glibc-6b5189eb2000761cd68c3c54c0d03357a9aaec67.zip |
Avoid deprecated sigblock in misc/tst-pselect.c.
misc/tst-pselect.c uses the deprecated sigblock interface, resulting in "tst-pselect.c:42:3: warning: 'sigblock' is deprecated (declared at ../signal/signal.h:189) [-Wdeprecated-declarations]". The choice of sigblock rather than sigprocmask has nothing to do with what this test is testing, so this patch changes it to use sigprocmask to avoid the warning. Tested for x86_64. * misc/tst-pselect.c (do_test): Use sigprocmask instead of sigblock.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 7fdc85da89..e0313b8f07 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2014-11-27 Joseph Myers <joseph@codesourcery.com> + * misc/tst-pselect.c (do_test): Use sigprocmask instead of + sigblock. + * libio/bug-ungetwc1.c (do_test): Verify results of getwc and feof. |