Avoid deadlock in malloc on backtrace (BZ #16159)
[glibc.git] / ChangeLog
blob82a52c7ce376339cade06254ea3b98bf1ab72201
1 2015-05-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
3         [BZ #16159]
4         * malloc/Makefile (tests): New test case tst-malloc-backtrace.
5         * malloc/arena.c (arena_lock): Check if arena is corrupt.
6         (reused_arena): Find a non-corrupt arena.
7         (heap_trim): Pass arena to unlink.
8         * malloc/hooks.c (malloc_check_get_size): Pass arena to
9         malloc_printerr.
10         (top_check): Likewise.
11         (free_check): Likewise.
12         (realloc_check): Likewise.
13         * malloc/malloc.c (malloc_printerr): Add arena argument.
14         (unlink): Likewise.
15         (munmap_chunk): Adjust.
16         (ARENA_CORRUPTION_BIT): New macro.
17         (arena_is_corrupt): Likewise.
18         (set_arena_corrupt): Likewise.
19         (sysmalloc): Use mmap if there are no usable arenas.
20         (_int_malloc): Likewise.
21         (__libc_malloc): Don't fail if arena_get returns NULL.
22         (_mid_memalign): Likewise.
23         (__libc_calloc): Likewise.
24         (__libc_realloc): Adjust for additional argument to
25         malloc_printerr.
26         (_int_free): Likewise.
27         (malloc_consolidate): Likewise.
28         (_int_realloc): Likewise.
29         (_int_memalign): Don't touch corrupt arenas.
30         * malloc/tst-malloc-backtrace.c: New test case.
32         * Makefile (summarize-tests): Fix return value on success.
34         * manual/string.texi (Envz Functions): Add envz_remove.
36 2015-05-18  Roland McGrath  <roland@hack.frob.com>
38         * sysdeps/posix/opendir.c: Include <stdbool.h>.
39         (invalid_name): New function, broken out of ...
40         (__opendirat): ... here.  Call it.
41         (need_isdir_precheck): New function, broken out of ...
42         (__opendirat): ... here.  Call it.
43         Use __fxstatat64, not __xstatat64.
44         (opendir_oflags): New function, broken out of ...
45         (__opendirat): ... here.  Call it.
46         (opendir_tail): New function, broken out of ...
47         (__opendirat): ... here.  Call it.
48         (__opendir): Call invalid_name, need_isdir_precheck, __xstat64, and
49         opendir_tail, rather than punting to __opendirat.
50         (__opendirat): Conditionalize function definition on [IS_IN (libc)].
52 2015-05-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
54         * .gitignore: Ignore generated *.pyc.
56 2015-05-18  Arjun Shankar  <arjun.is@lostca.se>
58         * include/stdio.h: Define __need_wint_t.
59         * test-skeleton.c: Avoid `for' loop initial declaration.
60         * nptl/tst-initializers1.c: Use test-skeleton.c.
62 2015-05-17  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
64         [BZ #18418]
65         * stdlib/tst-setcontext3.sh: Remove non-portable array use.
67 2015-05-15  Joseph Myers  <joseph@codesourcery.com>
69         [BZ #16352]
70         * sysdeps/i386/fpu/e_atanh.S (dbl_min): New object.
71         (__ieee754_atanh): Force underflow exception for results with
72         small absolute value.
73         * sysdeps/i386/fpu/e_atanhf.S (flt_min): New object.
74         (__ieee754_atanhf): Force underflow exception for results with
75         small absolute value.
76         * sysdeps/ieee754/dbl-64/e_atanh.c: Include <float.h>.
77         (__ieee754_atanh): Force underflow exception for results with
78         small absolute value.
79         * sysdeps/ieee754/flt-32/e_atanhf.c: Include <float.h>.
80         (__ieee754_atanhf): Force underflow exception for results with
81         small absolute value.
82         * sysdeps/ieee754/ldbl-128/e_atanhl.c: Include <float.h>.
83         (__ieee754_atanhl): Force underflow exception for results with
84         small absolute value.
85         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Include <float.h>.
86         (__ieee754_atanhl): Force underflow exception for results with
87         small absolute value.
88         * sysdeps/ieee754/ldbl-96/e_atanhl.c: Include <float.h>.
89         (__ieee754_atanhl): Force underflow exception for results with
90         small absolute value.
91         * math/auto-libm-test-in: Do not allow missing underflow
92         exceptions from atanh.
93         * math/auto-libm-test-out: Regenerated.
95         [BZ #18221]
96         * sysdeps/ieee754/flt-32/k_tanf.c (__kernel_tanf): Use 2**-13 not
97         2**-28 as threshold for returning x or +/- 1/x.
98         * math/auto-libm-test-in: Add more tests of tan.
99         * math/auto-libm-test-out: Regenerated.
101         [BZ #18220]
102         * sysdeps/ieee754/flt-32/e_lgammaf_r.c (__ieee754_lgammaf_r): Use
103         2**26 not 2**58 as threshold for returning x * (log (x) - 1).
104         * math/auto-libm-test-in: Add another test of lgamma.
105         * math/auto-libm-test-out: Regenerated.
107 2015-05-15  Wilco Dijkstra  <wdijkstr@arm.com>
109         * stdio-common/printf_fp.c (___printf_fp): Use abs.
110         * stdlib/gmp-impl.h (ABS): Remove define.  (ABSIZ): Remove.
111         * sysdeps/ieee754/dbl-64/branred.c (__branred): Use fabs.
112         * sysdeps/ieee754/dbl-64/dla.h (EADD): Use fabs.
113         (ESUB): Use fabs.  (ADD2): Use fabs.  (SUB2): Use fabs.
114         (ADD2A): Use fabs.  (SUB2A): Use fabs.
115         * sysdeps/ieee754/dbl-64/e_asin.c (__ieee754_asin): Use fabs.
116         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Use fabs.
117         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Use fabs.
118         (log1): Use fabs.  (my_log2): Use fabs.
119         * sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder): Use fabs.
120         * sysdeps/ieee754/dbl-64/mpa.h (ABS): Remove define.
121         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Use fabs.
122         * sysdeps/ieee754/dbl-64/mydefs.h (ABS): Remove define.
123         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Use fabs.
124         (__cos): Use fabs.  (slow): Use fabs.  (slow2): Use fabs.
125         (sloww): Use fabs.  (sloww1): Use fabs.  (sloww2): Use fabs.
126         (bslow1): Use fabs.  (bslow2): Use fabs.  (cslow2): Use fabs.
127         (csloww): Use fabs.  (csloww1): Use fabs.  (csloww2): Use fabs.
128         * sysdeps/ieee754/dbl-64/sincos32.c (__mpranred): Use fabs.
129         * sysdeps/x86_64/fpu/multiarch/e_log.c: add math.h include.
131 2015-05-15  Joseph Myers  <joseph@codesourcery.com>
133         [BZ #18217]
134         * sysdeps/ieee754/flt-32/s_erff.c (__erfcf): Use 2**-26 not 2**-56
135         as threshold for returning 1 - x.
136         * math/auto-libm-test-in: Add more tests of erfc.
137         * math/auto-libm-test-out: Regenerated.
139 2015-05-14  Joseph Myers  <joseph@codesourcery.com>
141         [BZ #18196]
142         * sysdeps/ieee754/flt-32/s_atanf.c (__atanf): Use 2^25 not 2^34 as
143         threshold for large arguments.
144         * math/auto-libm-test-in: Add another test of atan.
145         * math/auto-libm-test-out: Regenerated.
147         [BZ #16339]
148         * sysdeps/i386/fpu/s_log1p.S (dbl_min): New object.
149         (__log1p): Force underflow exception for results with small
150         absolute value.
151         * sysdeps/i386/fpu/s_log1pf.S (flt_min): New object.
152         (__log1pf): Force underflow exception for results with small
153         absolute value.
154         * sysdeps/ieee754/dbl-64/s_log1p.c: Include <float.h>.
155         (__log1p): Force underflow exception for results with small
156         absolute value.
157         * sysdeps/ieee754/flt-32/s_log1pf.c: Include <float.h>.
158         (__log1pf): Force underflow exception for results with small
159         absolute value.
160         * sysdeps/ieee754/ldbl-128/s_log1pl.c: Include <float.h>.
161         (__log1pl): Force underflow exception for results with small
162         absolute value.
163         * math/auto-libm-test-in: Do not allow missing underflow
164         exceptions from log1p.
165         * math/auto-libm-test-out: Regenerated.
167 2015-05-14  Jakub Bogusz  <qboosh@pld-linux.org>
168             Adhemerval Zanella  <adhemerval.zanella@linaro.org>
170         [BZ #16704]
171         * sysdeps/unix/make-syscalls.sh: Remove non-portable echo usage.
173 2015-05-14  Andrew Senkevich  <andrew.senkevich@intel.com>
175         * Makeconfig (rpath-dirs, all-subdirs): Added mathvec folder.
176         (libmvec): New variable.
177         * configure.ac: Added option for mathvec build.
178         * configure: Regenerated.
179         * mathvec/Depend: New file.
180         * mathvec/Makefile: New file.
181         * shlib-versions: Added libmvec.
182         * math/Makefile: Added rule for libm.so installation.
184         * bits/math-vector.h: New file.
185         * bits/libm-simd-decl-stubs.h: New header.
186         * math/Makefile (headers): Added new header
187         libm-simd-decl-stubs.h.
188         * math/math.h (__MATHCALL_VEC): New macro.
190         * math/gen-libm-have-vector-test.sh: Script generates series of macros
191         for conditions in testing functions.
192         * math/Makefile: Added call of libm-have-vector-test.sh.
193         * math/libm-test.inc (HAVE_VECTOR): New macros.
195         * math/libm-test.inc: START refactored.
196         * math/test-double.c (TEST_MATHVEC): Add define.
197         * math/test-float.c: Likewise.
198         * math/test-idouble.c: Likewise.
199         * math/test-ifloat.c: Likewise.
200         * math/test-ildoubl.c: Likewise.
201         * math/test-ldouble.c: Likewise.
202         * sysdeps/generic/math-tests-arch.h
203         (INIT_ARCH_EXT, CHECK_ARCH_EXT): New helper macros for runtime
204         architecture check.
206         * math/test-double.c (FUNC_TEST): New macro.
207         * math/test-float.c: Likewise.
208         * math/test-idouble.c: Likewise.
209         * math/test-ifloat.c: Likewise.
210         * math/test-ildoubl.c: Likewise.
211         * math/test-ldouble.c: Likewise.
212         * math/libm-test.inc: Use FUNC_TEST for name of tested functions.
214 2015-05-13  Roland McGrath  <roland@hack.frob.com>
216         * sysdeps/nacl/fdopendir.c: New file.
218         * dirent/scandir-tail.c: New file.
219         * dirent/scandir64-tail.c: New file.
220         * dirent/Makefile (routines): Add them.
221         (CFLAGS-scandir-tail.c, CFLAGS-scandir64-tail.c): New variables.
222         * include/dirent.h (__scandir_tail, __scandir64_tail): Declare them.
223         * dirent/scandir.c [!SCANDIR] (SCANDIRAT): Macro removed.
224         [!SCANDIR] (SCANDIR_TAIL): New macro.
225         (SCANDIR): Call __opendir and __scandir_tail, not __scandirat.
226         * dirent/scandir64.c [!_DIRENT_MATCHES_DIRENT64]
227         (SCANDIRAT): Macro removed.
228         (SCANDIR_TAIL): New macro.
229         * dirent/scandirat.c [!SCANDIRAT] (READDIR): Macro removed.
230         [!SCANDIRAT] (SCANDIR_TAIL): New macro.
231         (SCANDIRAT): Just call __opendirat and __scandir_tail.
232         * dirent/scandirat64.c [!_DIRENT_MATCHES_DIRENT64]
233         (READDIR): Macro removed.
234         (SCANDIR_TAIL): New macro.
235         * sysdeps/unix/sysv/linux/i386/scandir64.c (READDIR): Macro removed.
236         (SCANDIR_TAIL): New macro.
238         * dirent/scandirat.c (__scandir_cancel_handler): Function moved ...
239         * dirent/scandir-cancel.c: ... to this new file.
240         * dirent/Makefile (routines): Add it.
241         * dirent/scandirat64.c (SKIP_SCANDIR_CANCEL): Macro removed.
242         * sysdeps/unix/sysv/linux/i386/scandir64.c
243         (SKIP_SCANDIR_CANCEL): Macro removed.
244         * include/dirent.h (__scandir_cancel_handler): Add attribute_hidden.
246         * dirent/tst-scandir.c: New file.
247         * dirent/tst-scandir64.c: New file.
248         * dirent/Makefile (tests): Add them.
250 2015-05-13  H.J. Lu  <hongjiu.lu@intel.com>
252         [BZ #18409]
253         * sysdeps/unix/make-syscalls.sh: Remove a trailing `\'.
255 2015-05-13  Szabolcs Nagy  <szabolcs.nagy@arm.com>
257         * sysdeps/aarch64/tls-macros.h (TLS_GD): Add "cc" to the clobber
258         list.
260 2015-05-13  Leonhard Holz  <leonhard.holz@web.de>
262         * benchtests/bench-strcoll.c: New benchmark.
263         * benchtests/Makefile: Generate locales and run benchmark.
264         * benchtests/strcoll-inputs/filelist#C: New benchmark input file.
265         * benchtests/strcoll-inputs/filelist#en_US.UTF-8: Likewise.
266         * benchtests/strcoll-inputs/lorem_ipsum#ar_SA.UTF-8: Likewise.
267         * benchtests/strcoll-inputs/lorem_ipsum#cs_CZ.UTF-8: Likewise.
268         * benchtests/strcoll-inputs/lorem_ipsum#da_DK.UTF-8: Likewise.
269         * benchtests/strcoll-inputs/lorem_ipsum#el_GR.UTF-8: Likewise.
270         * benchtests/strcoll-inputs/lorem_ipsum#en_GB.UTF-8: Likewise.
271         * benchtests/strcoll-inputs/lorem_ipsum#en_US.UTF-8: Likewise.
272         * benchtests/strcoll-inputs/lorem_ipsum#es_ES.UTF-8: Likewise.
273         * benchtests/strcoll-inputs/lorem_ipsum#fr_FR.UTF-8: Likewise.
274         * benchtests/strcoll-inputs/lorem_ipsum#hi_IN.UTF-8: Likewise.
275         * benchtests/strcoll-inputs/lorem_ipsum#hu_HU.UTF-8: Likewise.
276         * benchtests/strcoll-inputs/lorem_ipsum#is_IS.UTF-8: Likewise.
277         * benchtests/strcoll-inputs/lorem_ipsum#it_IT.UTF-8: Likewise.
278         * benchtests/strcoll-inputs/lorem_ipsum#iw_IL.UTF-8: Likewise.
279         * benchtests/strcoll-inputs/lorem_ipsum#ja_JP.UTF-8: Likewise.
280         * benchtests/strcoll-inputs/lorem_ipsum#pl_PL.UTF-8: Likewise.
281         * benchtests/strcoll-inputs/lorem_ipsum#pt_PT.UTF-8: Likewise.
282         * benchtests/strcoll-inputs/lorem_ipsum#ru_RU.UTF-8: Likewise.
283         * benchtests/strcoll-inputs/lorem_ipsum#sr_RS.UTF-8: Likewise.
284         * benchtests/strcoll-inputs/lorem_ipsum#sv_SE.UTF-8: Likewise.
285         * benchtests/strcoll-inputs/lorem_ipsum#tr_TR.UTF-8: Likewise.
286         * benchtests/strcoll-inputs/lorem_ipsum#vi_VN.UTF-8: Likewise.
287         * benchtests/strcoll-inputs/lorem_ipsum#zh_CN.UTF-8: Likewise.
289 2015-05-12  Ondřej Bílka  <neleai@seznam.cz>
291         * sysdeps/x86_64/multiarch/strcspn.S: Remove plt indirection.
292         * sysdeps/x86_64/multiarch/strspn.S: Likewise.
294 2015-05-12  Roland McGrath  <roland@hack.frob.com>
296         * posix/uname-values.h: New file.
297         * posix/uname.c: Include that instead of <config-name.h>.
298         * sysdeps/nacl/uname-values.h: New file.
299         * sysdeps/arm/nacl/uname-values.h: New file.
301 2015-05-12  Joseph Myers  <joseph@codesourcery.com>
303         * conform/linknamespace.pl (list_syms): Remove \[.*?\] before
304         splitting into fields.
306 2015-05-12  Leonhard Holz  <leonhard.holz@web.de>
308         * locale/categories.def: Define _NL_COLLATE_ENCODING_TYPE.
309         * locale/langinfo.h: Add _NL_COLLATE_ENCODING_TYPE to attribute list.
310         * locale/localeinfo.h: Add enum collation_encoding_type.
311         * locale/C-collate.c: Set _NL_COLLATE_ENCODING_TYPE to 8bit.
312         * programs/ld-collate.c (collate_output): Add encoding type info.
313         * string/strcoll_l.c (STRDIFF): New function.
314         * (STRCOLL): Use STRDIFF to skip over equal prefix.
315         * wcsmbs/wcscoll_l.c: Define STRDIFF.
317 2015-05-11  Joseph Myers  <joseph@codesourcery.com>
319         [BZ #18397]
320         * sysdeps/mips/mips32/fpu/fpu_control.c: Move to ....
321         * sysdeps/mips/mips32/fpu/fpucw-helpers.c: ... here.  Include
322         <fpu_control.h> instead of <math/fpu_control.c>.
323         * sysdeps/mips/mips32/fpu/Makefile: New file.
325 2015-05-11  Andreas Schwab  <schwab@suse.de>
327         [BZ #18007]
328         * nis/nss_compat/compat-grp.c (internal_endgrent): Don't call
329         nss_endgrent.
330         (_nss_compat_endgrent): Call nss_endgrent.
331         * nis/nss_compat/compat-pwd.c (internal_endpwent): Don't call
332         nss_endpwent.
333         (_nss_compat_endpwent): Call nss_endpwent.
334         * nis/nss_compat/compat-spwd.c (internal_setspent): Add parameter
335         needent, call nss_setspent only if non-zero.
336         (_nss_compat_setspent, _nss_compat_getspent_r): Pass non-zero.
337         (internal_endspent): Don't call nss_endspent.
338         (_nss_compat_endspent): Call nss_endspent.
339         * nss/nss_files/files-XXX.c (position, last_use, keep_stream):
340         Remove.  All uses removed.
341         (internal_setent): Remove parameter stayopen, add parameter
342         stream.  Use it instead of global variable.
343         (CONCAT(_nss_files_set,ENTNAME)): Pass global stream.
344         (internal_endent, internal_getent): Add parameter stream.  Use it
345         instead of global variable.
346         (CONCAT(_nss_files_end,ENTNAME))
347         (CONCAT(_nss_files_get,ENTNAME_r)): Pass global stream.
348         (_nss_files_get##name##_r): Pass local stream.  Remove locking.
349         * nss/nss_files/files-alias.c (position, last_use): Remove.  All
350         uses removed.
351         (internal_setent, internal_endent): Add parameter stream.  Use it
352         instead of global variable.
353         (_nss_files_setaliasent, _nss_files_endaliasent): Pass global
354         stream.
355         (get_next_alias): Add parameter stream.
356         (_nss_files_getaliasent_r): Pass global stream.
357         (_nss_files_getaliasbyname_r): Pass local stream.  Remove locking.
358         * nss/nss_files/files-hosts.c (_nss_files_gethostbyname3_r)
359         (_nss_files_gethostbyname4_r): Pass local stream to
360         internal_setent, internal_getent and internal_endent.  Remove
361         locking.
363 2015-05-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
365         * tst-strfmon1.c (tests): Update expected currency symbol.
367 2015-05-08  Roland McGrath  <roland@hack.frob.com>
369         * sysdeps/nacl/gethostname.c: New file.
371 2015-05-08  Joseph Myers  <joseph@codesourcery.com>
373         * math/auto-libm-test-in: Add more tests of csqrt, lgamma, log10
374         and sinh.
375         * math/auto-libm-test-out: Regenerated.
376         * sysdeps/i386/fpu/libm-test-ulps: Update.
377         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
379 2015-05-08  Carlos O'Donell  <carlos@redhat.com>
381         [BZ #18125]
382         * stdlib/tst-setcontext3.c: New file.
383         * stdlib/tst-setcontext3.sh: New file.
384         * stdlib/Makefile (tests): Add tst-setcontext3.
385         (tst-setcontext3.out): Custom rule to run tst-setcontext3.sh
386         to verify test program created output file.
387         * sysdeps/unix/sysv/linux/aarch64/setcontext.S: Call exit.
388         * sysdeps/unix/sysv/linux/arm/setcontext.S: Likewise.
389         * sysdeps/unix/sysv/linux/hppa/setcontext.S: Likewise.
390         * sysdeps/unix/sysv/linux/nios2/setcontext.S: Likewise.
392 2015-05-06  Roland McGrath  <roland@hack.frob.com>
394         [BZ #18383]
395         * elf/tst-tlsalign.c: New file.
396         * elf/tst-tlsalign-static.c: New file.
397         * elf/tst-tlsalign-lib.c: New file.
398         * elf/Makefile [$(build-shared) = yes] (tests): Add tst-tlsalign.
399         (tests-static): Add tst-tlsalign-static.
400         (modules-names): Add tst-tlsalign-lib.
401         (test-xfail-tst-tlsalign): New variable.
402         (test-xfail-tst-tlsalign-static): New variable.
404         * sysdeps/nacl/nacl-test-wrapper.sh (NACL_LOADER):
405         Use elf_loader_${arch}.nexe rather than loader_${arch}.nexe.
407 2015-05-06  Joseph Myers  <joseph@codesourcery.com>
409         * math/auto-libm-test-in: Add more tests of acosh, atanh, cos,
410         csqrt, erfc, sin and sincos.
411         * math/auto-libm-test-out: Regenerated.
412         * sysdeps/i386/fpu/libm-test-ulps: Update.
413         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
415 2015-05-06  Szabolcs Nagy  <szabolcs.nagy@arm.com>
417         * sysdeps/aarch64/libm-test-ulps: Update.
419 2015-05-05  Joseph Myers  <joseph@codesourcery.com>
421         * math/auto-libm-test-in: Add more tests of acosh, atanh, clog,
422         clog10, csqrt, erfc, exp2, expm1, log10, log2 and sinh.
423         * math/auto-libm-test-out: Regenerated.
424         * sysdeps/i386/fpu/libm-test-ulps: Update.
425         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
427 2015-04-30  Daniel Marjamäki  <daniel.marjamaki@evidente.se>
429         [BZ #18265]
430         * wcsmbs/wchar.h (wcscpy): Add __nonnull attribute.
431         (wcsncpy): Likewise.
433 2015-05-05  Florian Weimer  <fweimer@redhat.com>
435         * sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate):
436         Assume __ASSUME_FALLOCATE is always true.
437         * sysdeps/unix/sysv/linux/posix_fallocate64.c
438         (__posix_fallocate64_l64): Likweise.
439         * sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fallocate.c
440         (posix_fallocate): Likewise.
441         * sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fallocate64.c
442         (__posix_fallocate64_l64): Likewise.
443         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
444         [!__ASSUME_FALLOCATE]: Add comment.
446 2015-05-05  Florian Weimer  <fweimer@redhat.com>
448         * sysdeps/unix/sysv/linux/i386/Makefile
449         (sysdep_routines) [$(subdir) = misc]: Remove call_fallocate.
450         (sysdep_routines) [$(subdir) = io]: Add libc-do-syscall.
451         * sysdeps/unix/sysv/linux/i386/call_fallocate.S: Remove.
452         * sysdeps/unix/sysv/linux/i386/fallocate.c: Likewise.
453         * sysdeps/unix/sysv/linux/i386/fallocate64.c: Likewise.
454         * sysdeps/unix/sysv/linux/i386/posix_fallocate.c: Likewise.
455         * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c: Likewise.
457 2015-05-02  Joseph Myers  <joseph@codesourcery.com>
459         * math/auto-libm-test-in: Add more tests of atan, clog, clog10,
460         cos, csqrt, erf, erfc, exp2, lgamma, log1p, sin, sincos, tanh and
461         tgamma.
462         * math/auto-libm-test-out: Regenerated.
463         * sysdeps/i386/fpu/libm-test-ulps: Update.
464         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
466 2015-05-01  Joseph Myers  <joseph@codesourcery.com>
468         * math/auto-libm-test-in: Add more tests of tgamma.
469         * math/auto-libm-test-out: Regenerated.
470         * sysdeps/i386/fpu/libm-test-ulps: Update.
471         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
473         * math/auto-libm-test-in: Add more tests of tanh.
474         * math/auto-libm-test-out: Regenerated.
475         * sysdeps/i386/fpu/libm-test-ulps: Update.
476         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
478         * math/auto-libm-test-in: Add more tests of tan.
479         * math/auto-libm-test-out: Regenerated.
480         * sysdeps/i386/fpu/libm-test-ulps: Update.
481         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
483         * math/auto-libm-test-in: Add more tests of cos, sin and sincos.
484         * math/auto-libm-test-out: Regenerated.
485         * sysdeps/i386/fpu/libm-test-ulps: Update.
486         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
488         * math/auto-libm-test-in: Add another test of pow.
489         * math/auto-libm-test-out: Regenerated.
490         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
492         * math/auto-libm-test-in: Add more tests of lgamma.
493         * math/auto-libm-test-out: Regenerated.
494         * sysdeps/i386/fpu/libm-test-ulps: Update.
495         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
497         * math/auto-libm-test-in: Add more tests of log, log10, log2 and
498         log1p.
499         * math/auto-libm-test-out: Regenerated.
500         * sysdeps/i386/fpu/libm-test-ulps: Update.
501         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
503 2015-05-01  Mark Wielaard  <mjw@redhat.com>
505         * elf/elf.h: Add SHF_COMPRESSED section flag, Elf32_Chdr and
506         Elf64_Chdr structs and ELFCOMPRESS constants.
508 2015-05-01  Joseph Myers  <joseph@codesourcery.com>
510         * math/auto-libm-test-in: Add more tests of exp, exp10, exp2 and
511         expm1.
512         * math/auto-libm-test-out: Regenerated.
513         * sysdeps/i386/fpu/libm-test-ulps: Update.
514         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
516         * math/auto-libm-test-in: Add more tests of erf and erfc.
517         * math/auto-libm-test-out: Regenerated.
518         * sysdeps/i386/fpu/libm-test-ulps: Update.
519         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
521 2015-05-01  Szabolcs Nagy  <szabolcs.nagy@arm.com>
523         * config.h.in (HAVE_AARCH64_BE): Add.
525 2015-04-30  Joseph Myers  <joseph@codesourcery.com>
527         * math/auto-libm-test-in: Add more tests of csqrt.
528         * math/auto-libm-test-out: Regenerated.
529         * sysdeps/i386/fpu/libm-test-ulps: Update.
530         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
532         * math/auto-libm-test-in: Add more tests of cosh and sinh.
533         * math/auto-libm-test-out: Regenerated.
534         * sysdeps/i386/fpu/libm-test-ulps: Update.
535         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
537         * sysdeps/unix/sysv/linux/mips/mips32/waitid.c: Remove file.
539 2015-04-29  Roland McGrath  <roland@hack.frob.com>
541         * sysdeps/nacl/bits/typesizes.h (__CLOCK_T_TYPE): Use __SLONGWORD_TYPE.
542         * sysdeps/nacl/nacl-interfaces.h (nacl_abi_clock_t): Use clock_t.
544         * sysdeps/nacl/euidaccess.c (euidaccess): Renamed to __euidaccess.
545         (euidaccess, eaccess): Define as weak aliases.
547         * sysdeps/nacl/bits/typesizes.h (__SUSECONDS_T_TYPE): Use
548         __SLONGWORD_TYPE rather than __S32_TYPE.  They are the same size,
549         but __suseconds_t is often 'long int' so some sources assume that
550         type is being used (e.g. they use %ld to print tv_usec).
552 2015-04-29  Florian Weimer  <fweimer@redhat.com>
554         [BZ #18007]
555         * nss/nss_files/files-XXX.c (CONCAT): Always enable stayopen.
556         (CVE-2014-8121)
557         * nss/tst-nss-getpwent.c: New file.
558         * nss/Makefile (tests): Add new test.
560 2015-04-28  Joseph Myers  <joseph@codesourcery.com>
562         [BZ #18346]
563         * sysdeps/ieee754/ldbl-128/s_roundl.c (__roundl): Handle all
564         exponents less than 48 as cases where high part of mantissa needs
565         examining to determine whether argument is integral.
566         * math/libm-test.inc (round_test_data): Add more tests.
568 2015-04-28  Mark Wielaard  <mjw@redhat.com>
570         * elf/elf.h (SHF_EXCLUDE): Use unsigned 1 for shift.
572 2015-04-27  David S. Miller  <davem@davemloft.net>
574         * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: Remove
575         __tls_get_addr.
576         * sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data: Likewise.
578 2015-04-27  H.J. Lu  <hongjiu.lu@intel.com>
580         [BZ#18333]
581         * time/tzset.c (__tzfile_read): Check tzspec_len == 0.
583 2015-04-27  Florian Weimer  <fweimer@redhat.com>
585         [BZ#18333]
586         * time/tzset.c (parse_tzname): Return error on memory allocation
587         failure.
588         * test-skeleton.c (struct temp_name_list): Change type of name
589         member to non-const.
590         (add_temp_file): Create a copy of the file name.
591         (delete_temp_files): Deallocate memory.
592         (create_temp_file): Add comment.
594 2015-04-24  Florian Weimer  <fweimer@redhat.com>
596         * io/posix_fallocate.c (posix_fallocate): Do not set errno.
597         * io/posix_fallocate64.c (posix_fallocate64): Likewise.
599 2015-04-24  Roland McGrath  <roland@hack.frob.com>
601         * sysdeps/arm/configure.ac (PI_STATIC_AND_HIDDEN): Define it.
602         * sysdeps/arm/configure: Regenerated.
604 2015-04-24  Florian Weimer  <fweimer@redhat.com>
606         [BZ #17715]
607         * time/tzfile.c (__tzfile_read): Check for large values of
608         tzh_ttisstdcnt and tzh_ttisgmtcnt.  Use malloc instead of alloca.
609         * time/tzset.c (__tzstring_len): New function, based on the old
610         __tzstring function.
611         (__tzstring): Call __tzstring_len.
612         (parse_tzname): New helper function extracted from
613         __tzset_parse_tz.  Call __tzstring_len, without making a copy of
614         the input string.
615         (parse_offset): New helper function extracted from
616         __tzset_parse_tz.  Replace switch with fallthrough with
617         initialization before sscanf.
618         (parse_rule): Likewise.
619         (__tzset_parse_tz): Rewrite using the new helper functions.  Use
620         new-style function definition.
621         * timezone/Makefile (tests): Add tst-tzset.
622         (tst-tzset.out): Dependencies on time zone files.
623         (tst-tzset-ENV): Set TZDIR.
624         (testdata/XT%): Copy crafted time zone files.
625         * timezone/README: Mention crafted time zone files.
626         * timezone/testdata/XT1, timezone/testdata/XT2,
627         timezone/testdata/XT3, timezone/testdata/XT4: New time zone test
628         files.
629         * timezone/tst-tzset.c: New test.
631 2015-04-24  Florian Weimer  <fweimer@redhat.com>
633         * Makeconfig (+gccwarn): Remove -Winline.
635 2015-04-24  Stefan Liebler  <stli@linux.vnet.ibm.com>
637         * sysdeps/s390/fpu/libm-test-upls: Regenerate.
639 2015-04-24  Stefan Liebler  <stli@linux.vnet.ibm.com>
641         * NEWS: Mention sysconf() cache information support for s390.
642         * sysdeps/unix/sysv/linux/s390/sysconf.c: New File.
644 2015-04-22  Wilco Dijkstra  <wdijkstr@arm.com>
646         * math/k_casinh.c (__kernel_casinh): Use __copysign.
647         * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c
648         (__nearbyint): Likewise.
649         * sysdeps/ieee754/ldbl-opt/nldbl-copysign.c
650         (copysignl): Likewise.
652 2015-04-21  Arjun Shankar  <arjun.is@lostca.se>
654         [BZ #18287]
655         * resolv/nss_dns/dns-host.c (getanswer_r): Adjust buffer length
656         based on padding.  (CVE-2015-1781)
658 2015-04-20  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
660         * nptl/pthread_cond_timedwait.c: Change include bits/libc-vdso.h to just
661         libc-vdso.h.
662         * sysdeps/powerpc/powerpc32/backtrace.c: Likewise.
663         * sysdeps/powerpc/powerpc64/backtrace.c: Likewise.
664         * sysdeps/unix/sysv/linux/aarch64/init-first.c: Likewise.
665         * sysdeps/unix/sysv/linux/clock_getres.c: Likewise.
666         * sysdeps/unix/sysv/linux/clock_gettime.c: Likewise.
667         * sysdeps/unix/sysv/linux/gettimeofday.c: Likewise.
668         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Likewise.
669         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Likewise.
670         * sysdeps/unix/sysv/linux/powerpc/init-first.c: Likewise.
671         * sysdeps/unix/sysv/linux/powerpc/sched_getcpu.c: Likewise.
672         * sysdeps/unix/sysv/linux/powerpc/time.c: Likewise.
673         * sysdeps/unix/sysv/linux/s390/init-first.c: Likewise.
674         * sysdeps/unix/sysv/linux/tile/gettimeofday.c: Likewise.
675         * sysdeps/unix/sysv/linux/tile/init-first.c: Likewise.
676         * sysdeps/unix/sysv/linux/timespec_get.c: Likewise.
677         * sysdeps/unix/sysv/linux/aarch64/bits/libc-vdso.h: Move to ...
678         * sysdeps/unix/sysv/linux/aarch64/libc-vdso.h: ... here.
679         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Move to ...
680         * sysdeps/unix/sysv/linux/powerpc/libc-vdso.h: ... here.
681         * sysdeps/unix/sysv/linux/s390/bits/libc-vdso.h: Move to ...
682         * sysdeps/unix/sysv/linux/s390/libc-vdso.h: ... here.
683         * sysdeps/unix/sysv/linux/tile/bits/libc-vdso.h: Move to ...
684         * sysdeps/unix/sysv/linux/tile/libc-vdso.h: ... here.
686 2015-04-19  Paul Eggert  <eggert@cs.ucla.edu>
688         * stdlib/setenv.c (__add_to_environ):
689         Dump core quickly if setenv (..., NULL, ...) is called.
690         This time, do it the right way, and pacify GCC with a pragma.
692 2015-04-17  Roland McGrath  <roland@hack.frob.com>
694         * elf/dl-close.c (_dl_close_worker) [DL_NNS == 1]: Just assert that
695         IMAP->l_prev cannot be null, and #if out the code for the contrary
696         case, avoiding 'assert (nsid != LM_ID_BASE)' making the compiler
697         believe that NS (&_dl_ns[NSID]) could point outside the array.
699         * elf/dl-open.c (_dl_open): Use __glibc_unlikely in invalid namespace
700         check.  Reject NSID < 0 and NSID >= dl_nns, and check for DL_NNS==1,
701         before using NSID as an index.
703 2015-04-17  Il'ya Malakhov <ilmalakhov@yandex.ru>
705         [BZ #17825]
706         * sysdeps/sparc/sparc64/memchr.S: Fix signedness handling of length.
707         * sysdeps/sparc/sparc64/memcmp.S: Likewise.
708         * sysdeps/sparc/sparc64/strncmp.S: Likewise.
710 2015-04-17  Roland McGrath  <roland@hack.frob.com>
712         Add preliminary port to Google Native Client on ARM.
713         * abi-tags (.*-.*-nacl.*): New entry.
714         * sysdeps/arm/nacl: New directory.
715         * sysdeps/nacl: New directory.
717 2015-04-16  David S. Miller  <davem@davemloft.net>
719         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Make use of
720         lowlevellock-futex.h
722 2015-04-16  Chris Metcalf  <cmetcalf@ezchip.com>
724         * sysdeps/tile/configure.ac: New file.
725         * sysdeps/tile/configure: Regenerated.
727 2015-04-15  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
729         * wcsmbs/wcschr.c [WCSCHR] (wcschr): Define as __wcschr.  Remove
730         conditionals for weak_alias and libc_hidden_weak.
731         * sysdeps/i386/i686/multiarch/wcschr-c.c [libc]: Undefine
732         libc_hidden_weak and weak_alias.
733         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c [libc]:
734         Undefine libc_hidden_weak. Define libc_hidden_def for SHARED builds
735         and weak_alias for static one.
737 2015-04-15  David S. Miller  <davem@davemloft.net>
739         * sysdeps/sparc/fpu/libm-test-ulps: Regenerate from scratch.
741 2015-04-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
743         [BZ #18206]
744         * wcsmbs/wcsncmp.c (wcsncmp): Compare as wchar_t, not wint_t.
745           Use signed comparision instead of substraction to avoid
746           overflow bug.
747         * localedata/tests-mbwc/tst_wcsncmp.c (tst_wcsncmp):
748           Take the sign of ret.
749         * localedata/tests-mbwc/dat_wcsncmp.c (tst_wcsncmp_loc):
750           Do not expect precise return values. Only the sign matters.
751         * wcsmbs/Makefile (strop-tests): Add wcsncmp.
752         * wcsmbs/test-wcsncmp.c: New File.
753         * string/test-strncmp.c: Add wcsncmp support.
755 2015-04-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
757         [BZ #6792]
758         * math/w_log1p.c: New file.
759         * math/w_log1pf.c: Likewise.
760         * math/w_log1pl.c: Likewise.
761         * math/Makefile (libm-calls): Add w_log1p.
762         * math/s_log1pl.c (log1pl): Remove weak_alias.
763         * sysdeps/i386/fpu/s_log1p.S (log1p): Likewise.
764         * sysdeps/i386/fpu/s_log1pf.S (log1pf): Likewise.
765         * sysdeps/i386/fpu/s_log1pl.S (log1pl): Likewise.
766         * sysdeps/x86_64/fpu/s_log1pl.S (log1pl): Likewise.
767         * sysdeps/ieee754/dbl-64/s_log1p.c (log1p): Likewise.
768         [NO_LONG_DOUBLE] (log1pl): Likewise.
769         * sysdeps/ieee754/flt-32/s_log1pf.c (log1pf): Likewise.
770         * sysdeps/ieee754/ldbl-128/s_log1pl.c (log1pl): Likewise.
771         * sysdeps/ieee754/ldbl-64-128/s_log1pl.c
772         (log1p): Remove long_double_symbol.
773         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (log1pl): Likewise.
774         * sysdeps/ieee754/ldbl-64-128/w_log1pl.c: New file.
775         * sysdeps/ieee754/ldbl-128ibm/w_log1pl.c: Likewise.
776         * sysdeps/m68k/m680x0/fpu/s_log1p.c: Define empty weak_alias to
777         remove weak_alias for corresponding log1p function.
778         * sysdeps/m68k/m680x0/fpu/s_log1pf.c: Likewise.
779         * sysdeps/m68k/m680x0/fpu/s_log1pl.c: Likewise.
780         * sysdeps/ia64/fpu/w_log1p.c: New file.
781         * sysdeps/ia64/fpu/w_log1pf.c: Likewise.
782         * sysdeps/ia64/fpu/w_log1pl.c: Likewise.
783         * math/libm-test.inc (log1p_test_data): Add errno expectations.
785 2015-04-10  Joseph Myers  <joseph@codesourcery.com>
787         [BZ #18247]
788         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Decrease minimum
789         decimal exponent by 1.
790         * stdlib/tst-strtod-round-data: Add more tests.
791         * stdlib/tst-strtod-round.c (tests): Regenerated.
793 2015-04-09  Joseph Myers  <joseph@codesourcery.com>
795         * math/auto-libm-test-in: Add more tests of clog and clog10.
796         * math/auto-libm-test-out: Regenerated.
797         * sysdeps/i386/fpu/libm-test-ulps: Update.
798         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
800 2015-04-09  Roland McGrath  <roland@hack.frob.com>
802         * Makeconfig (module-cppflags): Exclude all .v.i files.
803         (skip-module-cppflags): Variable removed.
805         * configure.ac (libc_config_ok): Initialize before reading
806         preconfigure scripts, not after.
807         * configure: Regenerated.
809         * test-skeleton.c (TIMEOUT): Move #define to top level.
810         (main): Grok environment variable TEST_DIRECT.  If set, print
811         test expectation details into that file and then behave as if
812         given --direct.
814 2015-04-09  Florian Weimer  <fweimer@redhat.com>
816         * malloc/tst-scratch_buffer.c (do_test): Suppress truncation
817         warning on 32-bit.
819 2015-04-08  David S. Miller  <davem@davemloft.net>
821         * sysdeps/sparc/fpu/libm-test-ulps: Update.
823 2015-04-08  Joseph Myers  <joseph@codesourcery.com>
825         * math/auto-libm-test-in: Add more tests of atanh.
826         * math/auto-libm-test-out: Regenerated.
827         * sysdeps/i386/fpu/libm-test-ulps: Update.
828         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
830         * math/auto-libm-test-in: Add more tests of atan.
831         * math/auto-libm-test-out: Regenerated.
832         * sysdeps/i386/fpu/libm-test-ulps: Update.
833         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
835 2015-04-08  Florian Weimer  <fweimer@redhat.com>
837         * elf/pldd.c (main): Rewrite to use struct
838         scratch_buffer instead of extend_alloca.
839         * elf/pldd-xx.c (find_maps): Likewise.
840         * grp/initgroups.c: Include <scratch_buffer.h> instead of
841         <alloca.h>.
842         * grp/compat-initgroups.c (compat_call): Rewrite to use struct
843         scratch_buffer instead of extend_alloca.
844         * nscd/initgrcache.c: Include <scratch_buffer.h>, now needed by
845         grp/compat-initgroups.c.
846         * nis/nss_compat/compat-initgroups.c (_nss_compat_initgroups_dyn):
847         Rewrite to use struct scratch_buffer instead of extend_alloca.
848         * inet/getnameinfo.c (nrl_domainname, getnameinfo): Likewise.
849         * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
851 2015-04-08  Joseph Myers  <joseph@codesourcery.com>
853         * math/auto-libm-test-in: Add more tests of cbrt.
854         * math/auto-libm-test-out: Regenerated.
855         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
857         * math/auto-libm-test-in: Add more tests of cabs.
858         * math/auto-libm-test-out: Regenerated.
859         * sysdeps/i386/fpu/libm-test-ulps: Update.
860         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
862         [BZ #18210]
863         [BZ #18211]
864         * sysdeps/ieee754/dbl-64/e_atan2.c: Include <fenv.h>.
865         (__ieee754_atan2): Set FE_TONEAREST mode for internal
866         computations.
867         * math/auto-libm-test-in: Add more tests of atan2, carg, clog and
868         clog10.
869         * math/auto-libm-test-out: Regenerated.
870         * sysdeps/i386/fpu/libm-test-ulps: Update.
871         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
873         [BZ #18197]
874         * sysdeps/ieee754/dbl-64/s_atan.c: Include <fenv.h>.
875         (atan): Set FE_TONEAREST mode for internal computations.
876         * math/auto-libm-test-in: Add more tests of atan.
877         * math/auto-libm-test-out: Regenerated.
879 2015-04-07  James Cowgill  <james410@cowgill.org.uk>
881         [BZ #17930]
882         * sysdeps/unix/sysv/linux/mips/bits/shm.h (SHM_NORESERVE): Define.
884 2015-04-07  Florian Weimer  <fweimer@redhat.com>
886         * malloc/scratch_buffer_grow_preserve.c: Include <string.h>
888 2015-04-07  Florian Weimer  <fweimer@redhat.com>
890         * include/scratch_buffer.h: New file.
891         * malloc/scratch_buffer_grow.c: Likewise.
892         * malloc/scratch_buffer_grow_preserve.c: Likewise.
893         * malloc/scratch_buffer_set_array_size.c: Likewise.
894         * malloc/tst-scratch_buffer.c: Likewise.
895         * malloc/Makefile (routines): Add scratch_buffer_grow.
896         (tests): Add test case.
897         * malloc/Versions (GLIBC_PRIVATE): Export
898         __libc_scratch_buffer_grow, __libc_scratch_buffer_grow_preserve,
899         __libc_scratch_buffer_set_array_size.
901 2015-04-06  Richard Henderson  <rth@redhat.com>
903         * sysdeps/unix/alpha/sysdep.h: Unconditionally include dl-sysdep.h.
904         * sysdeps/alpha/fpu/libm-test-ulps: Update.
906         * math/test-fenvinline.c (feenable_test): Cast fe_exc to
907         unsigned int before printing.
909 2015-04-03  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
911         [BZ #17596]
912         * wcsmbs/mbrtowc.c (__mbrtowc): Add check for n=0.
913         * wcsmbs/mbrtoc16.c (mbrtoc16): Likewise.
915 2015-04-02  Florian Weimer  <fweimer@redhat.com>
917         * include/libc-internal.h (libc_max_align_t): Define.
919 2015-04-02  Andreas Schwab  <schwab@suse.de>
921         [BZ #16850]
922         * sysdeps/unix/sysv/linux/aarch64/bits/sigstack.h: New file.
924 2015-04-02  Mel Gorman  <mgorman@suse.de>
926         [BZ #17195]
927         * malloc/arena.c (free): Apply trim threshold to per-thread heaps
928         as well as the main arena.
930 2015-03-31  H.J. Lu  <hongjiu.lu@intel.com>
932         [BZ #18185]
933         * sysdeps/x86_64/cacheinfo.c (init_cacheinfo): Limit threads
934         sharing L2 cache to 2 for Silvermont/Knights Landing.
936 2015-03-31  H.J. Lu  <hongjiu.lu@intel.com>
938         [BZ #17711]
939         * config.make.in (have-protected-data): New.
940         * configure.ac: Check linker support for protected data symbol.
941         * configure: Regenerated.
942         * elf/Makefile (modules-names): Add tst-protected1moda and
943         tst-protected1modb if $(have-protected-data) is yes.
944         (tests): Add tst-protected1a and tst-protected1b if
945         $(have-protected-data) is yes.
946         ($(objpfx)tst-protected1a): New.
947         ($(objpfx)tst-protected1b): Likewise.
948         (tst-protected1modb.so-no-z-defs): Likewise.
949         * elf/tst-protected1a.c: New file.
950         * elf/tst-protected1b.c: Likewise.
951         * elf/tst-protected1mod.h: Likewise.
952         * elf/tst-protected1moda.c: Likewise.
953         * elf/tst-protected1modb.c: Likewise.
955 2015-03-31  H.J. Lu  <hongjiu.lu@intel.com>
957         [BZ #17711]
958         * elf/dl-lookup.c (do_lookup_x): When UNDEF_MAP is NULL, which
959         indicates it is called from do_lookup_x on relocation against
960         protected data, skip the data definion in the executable from
961         copy reloc.
962         (_dl_lookup_symbol_x): Pass ELF_RTYPE_CLASS_EXTERN_PROTECTED_DATA,
963         instead of ELF_RTYPE_CLASS_PLT, to do_lookup_x for
964         EXTERN_PROTECTED_DATA relocation against STT_OBJECT symbol.
965         * sysdeps/generic/ldsodefs.h * (ELF_RTYPE_CLASS_EXTERN_PROTECTED_DATA):
966         New.  Defined to 4 if DL_EXTERN_PROTECTED_DATA is defined,
967         otherwise to 0.
968         * sysdeps/i386/dl-lookupcfg.h (DL_EXTERN_PROTECTED_DATA): New.
969         * sysdeps/i386/dl-machine.h (elf_machine_type_class): Set class
970         to ELF_RTYPE_CLASS_EXTERN_PROTECTED_DATA for R_386_GLOB_DAT.
971         * sysdeps/x86_64/dl-lookupcfg.h (DL_EXTERN_PROTECTED_DATA): New.
972         * sysdeps/x86_64/dl-machine.h (elf_machine_type_class): Set class
973         to ELF_RTYPE_CLASS_EXTERN_PROTECTED_DATA for R_X86_64_GLOB_DAT.
975 2015-03-28  Martin Galvan  <martin.galvan@tallertechnologies.com>
977         * sysdeps/nptl/pthread.h: Remove duplicate definition of
978         PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP.
980 2015-03-27  Martin Galvan  <martin.galvan@tallertechnologies.com>
982         * sysdeps/i386/nptl/tls.h: Swap comments between THREAD_SETMEM and
983         THREAD_SETMEM_NC.
984         * sysdeps/x86_64/nptl/tls.h: Ditto.
986 2015-03-27  Roland McGrath  <roland@hack.frob.com>
988         * dlfcn/tststatic.c (main): Converted to ...
989         (do_test): ... this.
990         (TEST_FUNCTION): New macro.
991         Include test-skeleton.c.
993 2015-03-26  Alan Modra  <amodra@gmail.com>
995         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_fixup_plt):
996         Don't segfault if ifunc resolver returns a NULL.  Do set plt to
997         zero for undefined weak.
998         (elf_machine_plt_conflict): Similarly.
1000 2015-03-25  Joseph Myers  <joseph@codesourcery.com>
1002         * math/auto-libm-test-in: Add more tests of acosh, asinh and
1003         atanh.
1004         * math/auto-libm-test-out: Regenerated.
1005         * sysdeps/i386/fpu/libm-test-ulps: Update.
1006         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
1008         * math/auto-libm-test-in: Add another test of asin.
1009         * math/auto-libm-test-out: Regenerated.
1010         * sysdeps/i386/fpu/libm-test-ulps: Update.
1011         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
1013         * sysdeps/unix/sysv/linux/i386/lowlevellock.h (LLL_EBX_LOAD):
1014         Remove macro.
1015         (LLL_EBX_REG): Likewise.
1016         (LLL_ENTER_KERNEL): Likewise.
1018         * math/auto-libm-test-in: Add more tests of asin.
1019         * math/auto-libm-test-out: Regenerated.
1020         * sysdeps/i386/fpu/libm-test-ulps: Update.
1021         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
1023         [BZ #18138]
1024         * sysdeps/unix/sysv/linux/i386/sysdep.h (struct
1025         libc_do_syscall_args): New structure.
1026         (INTERNAL_SYSCALL_MAIN_0): New macro.
1027         (INTERNAL_SYSCALL_MAIN_1): Likewise.
1028         (INTERNAL_SYSCALL_MAIN_2): Likewise.
1029         (INTERNAL_SYSCALL_MAIN_3): Likewise.
1030         (INTERNAL_SYSCALL_MAIN_4): Likewise.
1031         (INTERNAL_SYSCALL_MAIN_5): Likewise.
1032         (INTERNAL_SYSCALL_MAIN_6): Likewise.  Call __libc_do_syscall.
1033         (INTERNAL_SYSCALL): Define to use INTERNAL_SYSCALL_MAIN_##nr.
1034         Replace conditional definitions by conditional definitions of ....
1035         (INTERNAL_SYSCALL_MAIN_INLINE): ... this.  New macro.
1036         * sysdeps/unix/sysv/linux/i386/libc-do-syscall.S: New file.
1037         * sysdeps/unix/sysv/linux/i386/Makefile [$(subdir) = nptl]
1038         (libpthread-sysdep_routines): Add libc-do-syscall.
1039         * sysdeps/unix/sysv/linux/i386/lowlevellock-futex.h: Remove file.
1040         * sysdeps/unix/sysv/linux/i386/lowlevellock.h (SYS_futex): Define
1041         to __NR_futex not 240.
1043 2015-03-25  Alan Modra  <amodra@gmail.com>
1045         * NEWS: Advertise TLS optimization.
1046         * elf/elf.h (R_PPC_TLSGD, R_PPC_TLSLD, DT_PPC_OPT, PPC_OPT_TLS): Define.
1047         (DT_PPC_NUM): Increment.
1048         * elf/dynamic-link.h (HAVE_STATIC_TLS): Define.
1049         (CHECK_STATIC_TLS): Use here.
1050         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Optimize
1051         TLS descriptors.
1052         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
1053         * sysdeps/powerpc/dl-tls.c: New file.
1054         * sysdeps/powerpc/Versions: Add __tls_get_addr_opt.
1055         * sysdeps/powerpc/tst-tlsopt-powerpc.c: New tls test.
1056         * sysdeps/unix/sysv/linux/powerpc/Makefile: Add new test.
1057         Build tst-tlsmod2.so with --no-tls-get-addr-optimize.
1058         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ld.abilist: Update.
1059         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld.abilist: Likewise.
1060         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld-le.abilist: Likewise.
1062 2015-03-25  Alan Modra  <amodra@gmail.com>
1064         * sysdeps/powerpc/powerpc64/configure.ac: Correct "linker support
1065         for overlapping .opd entries" to "support...".
1066         * sysdeps/powerpc/powerpc64/configure: Regenerate
1068 2015-03-25  Joseph Myers  <joseph@codesourcery.com>
1070         * math/auto-libm-test-in: Add more tests of acos.
1071         * math/auto-libm-test-out: Regenerated.
1072         * sysdeps/i386/fpu/libm-test-ulps: Update.
1073         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
1075         * math/auto-libm-test-in: Add more tests of expm1.
1076         * math/auto-libm-test-out: Regenerated.
1077         * sysdeps/i386/fpu/libm-test-ulps: Update.
1078         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
1080 2015-03-24  Joseph Myers  <joseph@codesourcery.com>
1082         * math/auto-libm-test-in: Add more tests of cosh and sinh.
1083         * math/auto-libm-test-out: Regenerated.
1084         * sysdeps/i386/fpu/libm-test-ulps: Update.
1085         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
1087         * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
1088         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
1090         * math/auto-libm-test-in: Add more tests of log2.
1091         * math/auto-libm-test-out: Regenerated.
1092         * sysdeps/i386/fpu/libm-test-ulps: Update.
1093         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
1095 2015-03-23  Roland McGrath  <roland@hack.frob.com>
1097         * libio/iofdopen.c: Move FD_FLAGS declaration into its first use,
1098         inside [F_GETFL].  Remove POSIX_MODE local variable, just test the
1099         _IO_IS_APPENDING bit in READ_WRITE instead.
1101 2015-03-23  Florian Weimer  <fweimer@redhat.com>
1103         * sysdeps/unix/sysv/linux/pthread_setaffinity.c
1104         (__determine_cpumask_size): Replace extend_alloca with a
1105         variable-length array.  Do not treat res == 0 as an error.
1107 2015-03-23  Florian Weimer  <fweimer@redhat.com>
1109         [BZ #18100]
1110         * posix/wordexp.c (eval_expr_multdiv): Check for division by zero
1111         and integer overflow.
1112         * posix/wordexp-test.c (test_case): Add divide-by-zero test.
1113         (main): Add integer overflow tests.
1114         * manual/pattern.texi (Calling Wordexp): Document additional use
1115         for WRDE_SYNTAX.
1117 2015-03-23  Alan Modra  <amodra@gmail.com>
1119         * config.h.in: Remove HAVE_ASM_PPC_REL16.
1120         * sysdeps/powerpc/powerpc32/tls-macros.h: Remove HAVE_ASM_PPC_REL16
1121         and false branch of conditional.
1122         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S:
1123         Likewise.
1125 2015-03-21  Samuel Thibault  <samuel.thibault@ens-lyon.org
1127         * sysdeps/mach/hurd/Makefile ($(common-objpfx)errnos.d): Depend on
1128         libc-modules.h
1129         * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler): Remove
1130         unused declaration of _hurd_intr_rpc_msg_in_trap.
1131         * mach/mach_init.c (__mach_init): Test whether HAVE_HOST_PAGE_SIZE is
1132         defined instead of whether it is non-zero.
1133         * sysdeps/mach/hurd/i386/intr-msg.h (INTR_MSG_TRAP): Use "+m"
1134         input constraint instead of both input and output constraint.  Use ecx
1135         clobber instead of %ecx.
1136         * sysdeps/mach/hurd/malloc-machine.h (mutex_init, mutex_lock,
1137         mutex_unlock): Use a statement expression instead of an expression list.
1138         * sysdeps/mach/hurd/setitimer.c (_hurd_itimer_thread_stack_size): Set
1139         type to vm_size_t instead of vm_address_t.
1140         * sysdeps/mach/hurd/fork.c (__fork): Test whether STACK_GROWTH_UP is
1141         defined instead of whether it is non-zero.
1142         * hurd/hurd/ioctl.h (_hurd_locked_install_cttyid): New declaration.
1143         * sysdeps/mach/hurd/setsid.c: Include <hurd/ioctl.h>.
1144         * sysdeps/mach/hurd/mmap.c (__mmap): Use 0 instead of NULL for
1145         comparisons with mapaddr.
1146         * nscd/nscd-client.h: Include <time.h>.
1147         * sysdeps/mach/hurd/dl-sysdep.c (fmh): Pass vm_offset_t dummy
1148         9th parameter to __vm_region instead of int.
1149         * bits/termios.h [!__USE_MISC] (EXTPROC): Do not define.
1150         * scripts/check-local-headers.sh (exclude): Add device/,
1151         hurd/hurd_types.h, hurd/ioctl_types.h, hurd/paths.h, hurd/ioctls.defs,
1152         cthreads.h.
1154 2015-03-19  Roland McGrath  <roland@hack.frob.com>
1156         * sysdeps/arm/memcpy.S [ARM_ALWAYS_BX]: Fix computed-jump calculations
1157         to account for alignment padding.
1158         * sysdeps/arm/memmove.S: Likewise.
1160 2015-03-19  Chris Metcalf  <cmetcalf@ezchip.com>
1162         * sysdeps/unix/sysv/linux/generic/README: New file.
1164 2015-03-18  Joseph Myers  <joseph@codesourcery.com>
1166         [BZ #18138]
1167         * nptl/sem_waitcommon.c: Include <kernel-features.h>.
1168         (futex_abstimed_wait)
1169         [__ASSUME_FUTEX_CLOCK_REALTIME && lll_futex_timed_wait_bitset]:
1170         Use lll_futex_timed_wait_bitset with FUTEX_CLOCK_REALTIME instead
1171         of lll_futex_timed_wait.
1173 2015-03-18  Brad Hubbard  <bhubbard@redhat.com>
1175         [BZ #17542]
1176         * sunrpc/svc.c (xprt_register): Use calloc to allocate xports.
1178 2015-03-17  Alexandre Oliva <aoliva@redhat.com>
1180         [BZ #17090]
1181         [BZ #17620]
1182         [BZ #17621]
1183         [BZ #17628]
1184         * NEWS: Update.
1185         * elf/dl-tls.c (_dl_update_slotinfo): Clean up outdated DTV
1186         entries with Static TLS too.  Skip entries past the end of the
1187         allocated DTV, from Alan Modra.
1188         (tls_get_addr_tail): Update to glibc_likely/unlikely.  Move
1189         Static TLS DTV entry set up from...
1190         (_dl_allocate_tls_init): ... here (fix modid assertion), ...
1191         * elf/dl-reloc.c (_dl_nothread_init_static_tls): ... here...
1192         * nptl/allocatestack.c (init_one_static_tls): ... and here...
1193         * elf/dlopen.c (dl_open_worker): Drop l_tls_modid upper bound
1194         for Static TLS.
1195         * elf/tlsdeschtab.h (map_generation): Return size_t.  Check
1196         that the slot we find is associated with the given map before
1197         using its generation count.
1198         * nptl_db/db_info.c: Include ldsodefs.h.
1199         (rtld_global, dtv_slotinfo_list, dtv_slotinfo): New typedefs.
1200         * nptl_db/structs.def (DB_RTLD_VARIABLE): New macro.
1201         (DB_MAIN_VARIABLE, DB_RTLD_GLOBAL_FIELD): Likewise.
1202         (link_map::l_tls_offset): New struct field.
1203         (dtv_t::counter): Likewise.
1204         (rtld_global): New struct.
1205         (_rtld_global): New rtld variable.
1206         (dl_tls_dtv_slotinfo_list): New rtld global field.
1207         (dtv_slotinfo_list): New struct.
1208         (dtv_slotinfo): Likewise.
1209         * nptl_db/td_symbol_list.c: Drop gnu/lib-names.h include.
1210         (td_lookup): Rename to...
1211         (td_mod_lookup): ... this.  Use new mod parameter instead of
1212         LIBPTHREAD_SO.
1213         * nptl_db/td_thr_tlsbase.c: Include link.h.
1214         (dtv_slotinfo_list, dtv_slotinfo): New functions.
1215         (td_thr_tlsbase): Check DTV generation.  Compute Static TLS
1216         addresses even if the DTV is out of date or missing them.
1217         * nptl_db/fetch-value.c (_td_locate_field): Do not refuse to
1218         index zero-length arrays.
1219         * nptl_db/thread_dbP.h: Include gnu/lib-names.h.
1220         (td_lookup): Make it a macro implemented in terms of...
1221         (td_mod_lookup): ... this declaration.
1222         * nptl_db/db-symbols.awk (DB_RTLD_VARIABLE): Override.
1223         (DB_MAIN_VARIABLE): Likewise.
1225 2015-03-16  H.J. Lu  <hongjiu.lu@intel.com>
1227         [BZ #18134]
1228         * sysdeps/x86_64/dl-trampoline.S (PRESERVE_BND_REGS_PREFIX): New.
1230 2015-03-15  Paul Eggert  <eggert@cs.ucla.edu>
1232         * stdlib/setenv.c (__add_to_environ): Revert previous change.
1234 2015-03-14  Andreas Schwab  <schwab@linux-m68k.org>
1236         [BZ #18128]
1237         * sysdeps/m68k/m680x0/m68020/bits/atomic.h (atomic_exchange_and_add)
1238         (atomic_add, atomic_increment_and_test)
1239         (atomic_decrement_and_test): Fix 64-bit arithmetic.
1241 2015-03-13  Paul Eggert  <eggert@cs.ucla.edu>
1243         * stdlib/setenv.c (__add_to_environ):
1244         Dump core quickly if setenv (..., NULL, ...) is called.
1246 2015-03-13  Roland McGrath  <roland@hack.frob.com>
1248         * sysdeps/arm/tls-macros.h: Include <sysdep.h>.
1249         (GET_SPECIAL_RELOC, GET_SPECIAL_PCREL): New macros to encapsulate
1250         all the necessary asm magic in one place.
1251         (TLS_LE, TLS_IE, TLS_LD, TLS_GD): Rewritten as C expressions
1252         using those.
1254 2015-03-13  Carlos O'Donell  <carlos@redhat.com>
1256         [BZ #14906]
1257         * nscd/cache.c (prune_cache): Use TRACED_FILE. Compare and update
1258         traced file mtime. Use consistent log message.
1259         * nscd/connections.c [HAVE_INOTIFY] (install_watches): New function.
1260         (register_traced_file): Call install_watches. Always set mtime.
1261         (invalidate_cache): Iterate over all trace files. Call install_watches.
1262         (inotify_check_files): Don't inline. Handle watching parent
1263         directories and configuration file movement in and out.
1264         (handle_inotify_events): New function.
1265         (main_loop_poll): Call handle_inotify_events.
1266         (main_loop_epoll): Likewise.
1267         * nscd/nscd.h: Define TRACED_FILE, TRACED_DIR, and PATH_MAX.
1268         (struct traced_file): Use array of inotify fds. Add parent directory,
1269         and basename.
1270         (struct database_dyn): Remove unused file_mtime.
1271         (init_traced_file): New inline function.
1272         (define_traced_file): New macro.
1273         * nss/nss_db/db-init.c: Use define_traced_file.
1274         (_nss_db_init): Use init_traced_file.
1275         * nss/nss_files/files-init.c: Use define_traced_file.
1276         (_nss_files_init): Use init_traced_file.
1278 2015-03-12  Joseph Myers  <joseph@codesourcery.com>
1280         * soft-fp/soft-fp.h (_FP_STATIC_ASSERT): New macro.
1281         [_LIBC]: Do not include <stdlib.h>.
1282         [!_LIBC] (abort): Remove declaration.
1283         * soft-fp/op-2.h (_FP_MUL_MEAT_2_120_240_double): Use
1284         _FP_STATIC_ASSERT instead of conditionally calling abort.
1285         * soft-fp/op-common.h (_FP_FROM_INT): Likewise.
1286         (_FP_EXTEND_CNAN): Likewise.
1287         (FP_TRUNC): Likewise.
1288         (__FP_CLZ): Likewise.
1289         * sysdeps/powerpc/nofpu/flt-rounds.c: Include <stdlib.h>.
1291 2015-03-12  Yaakov Selkowitz  <yselkowi@redhat.com>
1293         * manual/string.texi (XPG basename): Fix prototype.
1295 2015-03-12  Stefan Liebler  <stli@linux.vnet.ibm.com>
1297         [BZ #18080]
1298         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S
1299         (__setcontext): Use SIG_SETMASK instead of SIG_BLOCK.
1300         * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S
1301         (__setcontext): Likewise.
1302         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S
1303         (__swapcontext): Use SIG_SETMASK instead of SIG_BLOCK.
1304         Call rt_sigprocmask syscall one time to set new signal mask
1305         and retrieve the current signal mask instead of two calls.
1306         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S
1307         (__swapcontext): Likewise.
1308         * stdlib/Makefile (tests): Add new testcase tst-setcontext2.
1309         * stdlib/tst-setcontext2.c: New file.
1311 2015-03-12  Stefan Liebler  <stli@linux.vnet.ibm.com>
1313         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
1315 2015-03-11  Aurelien Jarno  <aurelien@aurel32.net>
1317         [BZ #18093]
1318         * elf/cache.c (load_aux_cache): Regenerate the cache if it has
1319         the wrong size.
1321 2015-03-11  Paul Pluzhnikov  <ppluzhnikov@google.com>
1323         [BZ #18043]
1324         * posix/wordexp.c (parse_param): Don't call setenv(..., NULL, 1).
1326 2015-03-11  Adhemerval Zanellla  <azanella@linux.vnet.ibm.com>
1328         * config.h.in [HAVE_ASM_GLOBAL_DOT_NAME]: Remove define.
1329         * include/libc-symbols.h [HAVE_ASM_GLOBAL_DOT_NAME] (strong_alias):
1330         Remove define.
1331         [HAVE_ASM_GLOBAL_DOT_NAME] (strong_data_alias): Likewise.
1332         [HAVE_ASM_GLOBAL_DOT_NAME] (weak_alias): Likewise.
1333         [HAVE_ASM_GLOBAL_DOT_NAME] (_symbol_version): Likewise.
1334         [HAVE_ASM_GLOBAL_DOT_NAME] (_default_symbol_version): Likewise.
1335         [HAVE_ASM_GLOBAL_DOT_NAME] (HIDDEN_JUMPTARGET): Likewise.
1336         * nptl_db/db-symbols.h [HAVE_ASM_GLOBAL_DOT_NAME] (DOT): Remove
1337         define.
1338         * nptl_db/td_symbol_list.c (td_lookup): Remove
1339         HAVE_ASM_GLOBAL_DOT_NAME code.
1340         * sysdeps/powerpc/powerpc64/configure.ac: Remove
1341         HAVE_ASM_GLOBAL_DOT_NAME check.
1342         * sysdeps/powerpc/powerpc64/configure: Regenerate.
1343         * sysdeps/powerpc/powerpc64/sysdep.h [HAVE_ASM_GLOBAL_DOT_NAME]
1344         (DOT_LABEL): Remove define.
1345         [HAVE_ASM_GLOBAL_DOT_NAME] (BODY_LABEL): Likewise.
1346         [HAVE_ASM_GLOBAL_DOT_NAME] (ENTRY_2): Likewise.
1347         [HAVE_ASM_GLOBAL_DOT_NAME] (END_2): Likewise.
1348         * sysdeps/powerpc/powerpc64/tls-macros.h [HAVE_ASM_GLOBAL_DOT_NAME]
1349         (__TLS_GET_ADDR): Likewise.
1350         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h
1351         [HAVE_ASM_GLOBAL_DOT_NAME] (DASHDASHPFX): Likewise.
1353 2015-03-11  Carlos O'Donell  <carlos@redhat.com>
1355         [BZ #18111]
1356         * sysdeps/hppa/fpu/fpu_control.h (_FPU_HPPA_SHIFT_FLAGS): Define.
1357         (_FPU_SETCW): Initialize cw from fpsr before storing.
1358         * sysdeps/hppa/fpu/fsetexcptflg.c: Include fpu_control.h
1359         (fesetexceptflag): Rewrite using fpu_control.h.
1360         * sysdeps/hppa/fpu/feupdateenv.c: Handle FE_DFL_ENV, and FE_NOMASK_ENV.
1362 2015-03-11  John David Anglin  <danglin@gcc.gnu.org>
1364         [BZ #18110]
1365         * sysdeps/hppa/fpu/feholdexcpt.c (feholdexcept): Don't modify bufptr in
1366         asms.
1367         * sysdeps/hppa/fpu/fesetenv.c (fesetenv): Likewise.
1369 2015-03-11  Joseph Myers  <joseph@codesourcery.com>
1371         * soft-fp/soft-fp.h (_FP_UNREACHABLE): New macro.
1372         * soft-fp/op-common.h (_FP_MUL): Use _FP_UNREACHABLE instead of
1373         abort.
1374         (_FP_FMA): Likewise.
1375         (_FP_DIV): Likewise.
1377 2015-03-10  Roland McGrath  <roland@hack.frob.com>
1379         * scripts/evaluate-test.sh: Grok exit code 77 as UNSUPPORTED and exit
1380         with 0 in that case.
1381         * Makefile (summarize-tests): New canned sequence, factored out of
1382         commands for targets tests and xtests.  Display summary lines that
1383         don't start with PASS: or XFAIL: rather than ones that do start with
1384         ERROR: or FAIL:.  Make the commands fail if any summary lines fail
1385         to start with X?PASS: or XFAIL: or UNSUPPORTED: rather than if any
1386         do start with ERROR: or FAIL:.
1387         * dlfcn/Makefile (tests): Add bug-atexit3 back here unconditionally
1388         (except for [$(build-shared) = yes]).
1389         (tests-unsupported) [$(CXX) empty]: Add bug-atexit3.
1390         (LDLIBS-bug-atexit3-lib.so): Conditionalize on [$(CXX) nonempty].
1391         ($(objpfx)bug-atexit3, $(objpfx)bug-atexit3.out): Likewise.
1392         * nptl/Makefile: Revert 2015-03-04 changes.
1393         [$(CXX) empty] (tests-unsupported): New variable.
1394         * debug/Makefile: Likewise.
1396         * posix/regcomp.c: Fix comment typos and formatting to harmonize with
1397         gnulib file.  Replace __attribute with __attribute__ throughout.
1399 2015-03-10  Carlos O'Donell  <carlos@redhat.com>
1401         * sysdeps/hppa/fpu/libm-test-ulps: Update.
1403 2015-03-10  Joseph Myers  <joseph@codesourcery.com>
1405         [BZ #18104]
1406         * math/auto-libm-test-in: Add another test of pow.
1407         * math/auto-libm-test-out: Regenerated.
1409 2015-03-10  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
1411         * sysdeps/ieee754/dbl-64/Makefile (CFLAGS-e_pow.c): Add
1412         $(config-cflags-nofma).
1414 2015-03-10  Joseph Myers  <joseph@codesourcery.com>
1416         * soft-fp/double.h [SOFT_FP_DOUBLE_H]: New multiple-include guard.
1417         * soft-fp/extended.h [SOFT_FP_EXTENDED_H]: Likewise.
1418         * soft-fp/op-1.h [SOFT_FP_OP_1_H]: Likewise.
1419         * soft-fp/op-2.h [SOFT_FP_OP_2_H]: Likewise.
1420         * soft-fp/op-4.h [SOFT_FP_OP_4_H]: Likewise.
1421         * soft-fp/op-8.h [SOFT_FP_OP_8_H]: Likewise.
1422         * soft-fp/op-common.h [SOFT_FP_OP_COMMON_H]: Likewise.
1423         * soft-fp/quad.h [SOFT_FP_QUAD_H]: Likewise.
1424         * soft-fp/single.h [SOFT_FP_SINGLE_H]: Likewise.
1425         * soft-fp/soft-fp.h (SOFT_FP_H): Define to 1 rather than empty.
1426         Add comment on closing #endif.
1428 2015-03-09  Paul Pluzhnikov  <ppluzhnikov@google.com>
1430         * posix/wordexp.c (CHAR_IN_SET): New macro.
1431         (parse_param): Use it.
1433 2015-03-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
1435         * sysdeps/powerpc/fpu/libm-test-ulps: update.
1437 2015-03-09  Paul Pluzhnikov  <ppluzhnikov@google.com>
1439         [BZ #18043]
1440         * posix/wordexp.c (parse_param): Fix buffer overflow.
1441         * posix/wordexp-test.c (test_case): Add test case.
1443 2015-03-09  Paul Pluzhnikov  <ppluzhnikov@google.com>
1445         [BZ #18042]
1446         * posix/wordexp.c (parse_backtick): Fix off-by-one.
1447         * posix/wordexp-test.c (test_case): Add test for BZ #18042.
1449 2015-03-09  Paul Pluzhnikov  <ppluzhnikov@google.com>
1451         [BZ #18043]
1452         * posix/wordexp-test.c (test_case): Add test for BZ #18043
1453         (do_bz18043): Delete.
1454         (at_page_end): New.
1455         (testit): Refactor to have words at the edge of unreadable page.
1457 2015-03-08  Paul Pluzhnikov  <ppluzhnikov@google.com>
1459         [BZ #16734]
1460         * libio/genops.c (_IO_unbuffer_all): Renamed from _IO_unbuffer_write.
1461         Cleanup read-only streams as well.
1462         (_IO_cleanup): Call _IO_unbuffer_all instead of _IO_unbuffer_write.
1464 2015-03-08  Samuel Thibault  <samuel.thibault@ens-lyon.org>
1466         * sysdeps/mach/hurd/bits/libc-lock.h [_LIBC]: Include
1467         <bits/libc-lockP.h>
1469 2015-03-07  Joseph Myers  <joseph@codesourcery.com>
1471         * soft-fp/soft-fp.h (_FP_ZERO_INIT): New macro.  Define depending
1472         on [__KERNEL__].
1473         * soft-fp/op-1.h (_FP_FRAC_DECL_1): Use _FP_ZERO_INIT.
1474         * soft-fp/op-2.h (_FP_FRAC_DECL_2): Likewise.
1475         * soft-fp/op-common.h (_FP_DECL): Likewise.
1477 2015-03-06  H.J. Lu  <hongjiu.lu@intel.com>
1479         * elf/ifuncdep2.c (global): Replace
1480         __attribute__((visibility("protected"))) with
1481         asm (".protected global").
1482         * elf/ifuncmod1.c (global): Likewise.
1483         * elf/ifuncmod5.c (global): Likewise.
1485 2015-03-06  Joseph Myers  <joseph@codesourcery.com>
1487         * soft-fp/soft-fp.h [!_LIBC && __KERNEL__]: Include
1488         <asm/sfp-machine.h> instead of <sfp-machine.h>.
1490 2015-03-06  Roland McGrath  <roland@hack.frob.com>
1492         * manual/install.texi (Configuring and compiling):
1493         Document test-wrapper-env-only.
1494         * INSTALL: Regenerated.
1496 2015-03-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
1498         [BZ #18043]
1499         * posix/wordexp.c (parse_param): Fix buffer overflow.
1500         * posix/wordexp-test.c (do_bz18043): Add test case.
1502 2015-03-06  Vincent Bernat  <vincent@bernat.im>
1504         * time/tst-strptime2.c (do_test): Ensure failing tests are
1505         reported correctly.
1506         * time/tst-strptime3.c (do_test): Likewise.
1508 2015-03-06  Samuel Thibault  <samuel.thibault@inria.fr>
1510         Fix aio_error thread-safety.
1511         * sysdeps/pthread/aio_error.c: New file
1512         * sysdeps/pthread/aio_misc.c: Remove optimistic comment about
1513         synchronization.
1515 2015-03-06  Florian Weimer  <fweimer@redhat.com>
1517         * stdio-common/vfprintf.c (THOUSANDS_SEP_T): New typedef.
1518         (group_number, vfprintf): Use it.
1519         (JUMP_TABLE_BASE_LABEL): New preprocessor macro.
1520         (JUMP, REF): Use it.
1521         (WORK_BUFFER_SIZE): New enum constant.
1522         (process_arg, vfprintf): Use it.
1524 2015-03-06  Rical Jasan  <ricaljasan@pacific.net>
1526         * manual/errno.texi (Error Messages): Complete example function
1527         by adding missing #define.
1528         (program_invocation_name): Add statement indicating GNU
1529         extension and reference which header file declares the variable.
1530         (program_invocation_short_name): Likewise.
1532 2015-03-06  Mike Frysinger  <vapier@gentoo.org>
1534         * manual/errno.texi (Error Messages): Delete strerror ISO C89
1535         compatibility note.
1537 2015-03-05  Roland McGrath  <roland@hack.frob.com>
1539         * Makeconfig (test-wrapper-env-only): New variable.
1540         * Rules (make-test-out): If variable $*-ENV-only is nonempty,
1541         then use that with $(test-wrapper-env-only) rather than using
1542         $(test-wrapper-env) $(run-program-env) $($*-ENV).
1544 2015-03-05  H.J. Lu  <hongjiu.lu@intel.com>
1546         [BZ #18082]
1547         * sysdeps/alpha/dl-machine.h (elf_machine_type_class): Replace
1548         ELF_RTYPE_CLASS_NOCOPY with ELF_RTYPE_CLASS_COPY in comments.
1549         * sysdeps/arm/dl-machine.h (elf_machine_type_class): Likewise.
1550         * sysdeps/hppa/dl-machine.h (elf_machine_type_class): Likewise.
1551         * sysdeps/i386/dl-machine.h (elf_machine_type_class): Likewise.
1552         * sysdeps/ia64/dl-machine.h (elf_machine_type_class): Likewise.
1553         * sysdeps/m68k/dl-machine.h (elf_machine_type_class): Likewise.
1554         * sysdeps/microblaze/dl-machine.h (elf_machine_type_class):
1555         Likewise.
1556         * sysdeps/nios2/dl-machine.h (elf_machine_type_class): Likewise.
1557         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_type_class):
1558         Likewise.
1559         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_type_class):
1560         Likewise.
1561         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_type_class):
1562         Likewise.
1563         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_type_class):
1564         Likewise.
1565         * sysdeps/sh/dl-machine.h (elf_machine_type_class): Likewise.
1566         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_type_class):
1567         Likewise.
1568         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_type_class):
1569         Likewise.
1570         * sysdeps/tile/dl-machine.h (elf_machine_type_class): Likewise.
1571         * sysdeps/x86_64/dl-machine.h (elf_machine_type_class): Likewise.
1573 2015-03-04  Roland McGrath  <roland@hack.frob.com>
1575         * sysdeps/generic/netinet/if_ether.h: Don't #include <features.h>.
1576         (ETH_ALEN): New macro.
1577         (struct ether_addr): Use it for length of ether_addr_octet.
1579         * nss/test-netdb.c: Don't #include <rpc/netdb.h>.
1580         (setdb): Don't call __nss_configure_lookup for "rpc".
1581         (do_test): Don't call test_rpc.
1582         (output_rpcent, test_rpc): Functions moved ...
1583         * sunrpc/test-rpcent.c: ... to this new file.
1584         * sunrpc/Makefile (tests): Add it.
1586         * nptl/tst-cancel4.c (tf_sigpause) [!SIGCANCEL]: Call pause instead of
1587         __xpg_sigpause.
1588         * nptl/tst-signal3.c: Conditionalize body on [SIGRTMIN].
1589         * nptl/tst-signal6.c: Likewise.
1590         * rt/tst-mqueue5.c: Conditionalize body on [SIGRTMIN && SA_SIGINFO].
1591         * rt/tst-timer4.c: Conditionalize body on [SA_SIGINFO].
1593         * configure.ac (libc_cv_cxx_link_ok): New check.
1594         Reset CXX to empty if it fails to link.
1595         * configure: Regenerated.
1596         * dlfcn/Makefile (tests, modules-names): Add bug-atexit3 and
1597         bug-atexit3-lib only if $(CXX) is nonempty.
1598         * nptl/Makefile (tests): Likewise for tst-cancel24.
1599         (tests, tests-static): Likewise for tst-cancel24-static.
1600         * debug/Makefile (tests): Likewise for tst-chk4, tst-chk5, tst-chk6,
1601         tst-lfschk4, tst-lfschk5, and tst-lfschk6.
1602         * elf/Makefile (tests, modules-names): Likewise for tst-unique3,
1603         tst-unique3lib, tst-unique3lib2, tst-unique4, and tst-unique4lib.
1605 2015-03-04  Andreas Schwab  <schwab@suse.de>
1607         [BZ #17631]
1608         * string/string.h (__CORRECT_ISO_CPP_STRING_H_PROTO): Don't define
1609         for non-GCC compilers.
1610         * string/strings.h (__CORRECT_ISO_CPP_STRINGS_H_PROTO):
1611         Likewise.
1613 2015-03-03 Adhemerval Zanellla  <azanella@linux.vnet.ibm.com>
1615         [BZ #17776]
1616         * sysdeps/powerpc/bits/fenvinline.h (feraiseexcept): Convert input to
1617         integer before bitwise and assembly operations.
1618         (feclearexcept): Likewise.
1619         * math/test-fenvinline.c: New file.
1620         * math/Makefile: Add test-fenvinline test.
1622 2015-03-03  Alan Modra  <amodra@gmail.com>
1624         [BZ #16512]
1625         * scripts/localplt.awk: Strip off symbol version.
1626         * NEWS: Mention bug fix.
1628 2015-03-02  Roland McGrath  <roland@hack.frob.com>
1630         * sysdeps/pthread/timer_routines.c
1631         (timer_free_list, thread_free_list, thread_active_list): Make static.
1633 2015-03-02  Joseph Myers  <joseph@codesourcery.com>
1635         [BZ #17779]
1636         * sysdeps/unix/sysv/linux/hppa/kernel-features.h
1637         [__LINUX_KERNEL_VERSION < 0x020625] (__ASSUME_PRLIMIT64):
1638         Undefine.
1639         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
1640         [__LINUX_KERNEL_VERSION < 0x020625] (__ASSUME_PRLIMIT64):
1641         Likewise.
1642         * sysdeps/unix/sysv/linux/sh/kernel-features.h
1643         [__LINUX_KERNEL_VERSION < 0x020625] (__ASSUME_PRLIMIT64):
1644         Likewise.
1646 2015-03-02  Paul Pluzhnikov  <ppluzhnikov@google.com>
1648         [BZ #18036]
1649         * posix/fnmatch_loop.c (END): Detect invalid pattern.
1650         * posix/tst-fnmatch3.c (do_bz18036): Add test case.
1652 2015-03-02  Andreas Schwab  <schwab@suse.de>
1654         * elf/Makefile ($(elf-objpfx)runtime-linker.st): Fix typo in
1655         variable name.
1657 2015-03-02  Florian Weimer  <fweimer@redhat.com>
1659         * nis/nss_nis/nis-initgroups.c (_nss_nis_initgroups_dyn):
1660         Return error status.
1662 2015-02-27  Alexandre Oliva <aoliva@redhat.com>
1664         [BZ #15969]
1665         * locale/findlocale.c (_nl_find_locale): Introduce const
1666         version of loc_name and drop unsafe type casts.
1668 2015-02-27  Roland McGrath  <roland@hack.frob.com>
1670         * dlfcn/tststatic2.c (main): Converted to ...
1671         (do_test): ... this.
1672         (TEST_FUNCTION): New macro.
1673         Include test-skeleton.c.
1675 2015-02-27  H.J. Lu  <hongjiu.lu@intel.com>
1677         [BZ #17711]
1678         * elf/Makefile (tests): Add vismain only if PIE is enabled.
1679         (tests-pie): Add vismain.
1680         (CFLAGS-vismain.c): New.
1681         * elf/vismain.c: Add comments for PIE requirement.
1683 2015-02-27  Joseph Myers  <joseph@codesourcery.com>
1685         [BZ #18046]
1686         [BZ #18047]
1687         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c (__ieee754_atanhl): Use
1688         0x1p-56L as threshold for just returning the argument.
1689         * sysdeps/ieee754/ldbl-96/e_atanhl.c (__ieee754_atanhl): Use
1690         0x1p-32L as threshold for just returning the argument.
1691         * math/auto-libm-test-in: Add more tests of atanh.
1692         * math/auto-libm-test-out: Regenerated.
1693         * sysdeps/i386/fpu/libm-test-ulps: Update.
1694         * sysdeps/x86_64/fpu/libm-test-ulp: Likewise.
1696 2015-02-27  Wilco Dijkstra  wdijkstr@arm.com
1698         * string/bcopy.c (bcopy): Call memmove for performance.
1700 2015-02-27  Wilco Dijkstra  wdijkstr@arm.com
1702         * string/bzero.c (__bzero): Call memset for performance.
1704 2015-02-27  John David Anglin  <dave.anglin@bell.net>
1706         [BZ #18068]
1707         * sysdeps/unix/sysv/linux/hppa/bits/fcntl.h (__O_SYNC): Change
1708         to 00100000.
1710 2015-02-27  Joseph Myers  <joseph@codesourcery.com>
1712         * sysdeps/ieee754/k_standard.c (CSTR): Add comment.
1714 2015-02-26  Joseph Myers  <joseph@codesourcery.com>
1716         * sysdeps/ieee754/k_standard.c (CSTR): New macro.
1717         (__kernel_standard): Use CSTR macro when setting exc.name.
1718         * sysdeps/ieee754/Makefile [$(subdir) = math]
1719         (CFLAGS-k_standard.c): Remove variable.
1721         * sysdeps/ieee754/dbl-64/e_j0.c (pzero): Change last case for
1722         setting p and q from "else if" to "else".
1723         (qzero): Likewise.
1724         * sysdeps/ieee754/dbl-64/e_j1.c (pone): Likewise.
1725         (qone): Likewise.
1726         * sysdeps/ieee754/flt-32/e_j0f.c (pzerof): Likewise.
1727         (qzerof): Likewise.
1728         * sysdeps/ieee754/flt-32/e_j1f.c (ponef): Likewise.
1729         (qonef): Likewise.
1730         * sysdeps/ieee754/ldbl-96/e_j0l.c (pzero): Likewise.
1731         (qzero): Likewise.
1732         * sysdeps/ieee754/ldbl-96/e_j1l.c (pone): Likewise.
1733         (qone): Likewise.
1735         [BZ #18038]
1736         [BZ #18039]
1737         * sysdeps/ieee754/ldbl-128/e_acosl.c (__ieee754_acosl): Only
1738         return pi/2 for arguments below 0x1p-113L.
1739         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Only
1740         return pi/2 for arguments below 0x1p-106L.
1741         * math/auto-libm-test-in: Add more tests of acos.
1742         * math/auto-libm-test-out: Regenerated.
1744         [BZ #16351]
1745         * sysdeps/i386/fpu/e_asin.S (dbl_min): New object.
1746         (MO): New macro.
1747         (__ieee754_asin): Force underflow exception for results with small
1748         absolute value.
1749         * sysdeps/i386/fpu/e_asinf.S (flt_min): New object.
1750         (MO): New macro.
1751         (__ieee754_asinf): Force underflow exception for results with
1752         small absolute value.
1753         * sysdeps/ieee754/dbl-64/e_asin.c: Include <float.h> and <math.h>.
1754         (__ieee754_asin): Force underflow exception for results with small
1755         absolute value.
1756         * sysdeps/ieee754/flt-32/e_asinf.c: Include <float.h>.
1757         (__ieee754_asinf): Force underflow exception for results with
1758         small absolute value.
1759         * sysdeps/ieee754/ldbl-128/e_asinl.c: Include <float.h>.
1760         (__ieee754_asinl): Force underflow exception for results with
1761         small absolute value.
1762         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Include <float.h>.
1763         (__ieee754_asinl): Force underflow exception for results with
1764         small absolute value.
1765         * sysdeps/ieee754/ldbl-96/e_asinl.c: Include <float.h>.
1766         (__ieee754_asinl): Force underflow exception for results with
1767         small absolute value.
1768         * sysdeps/x86_64/fpu/multiarch/e_asin.c [HAVE_FMA4_SUPPORT]:
1769         Include <math.h>.
1770         * math/auto-libm-test-in: Do not mark underflow exceptions as
1771         possibly missing for bug 16351.
1772         * math/auto-libm-test-out: Regenerated.
1774         [BZ #18030]
1775         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Adjust exponent
1776         of power of 2 down when low part has opposite sign.
1777         * math/libm-test.inc (logb_test_data): Add more tests.
1779 2015-02-26  Andreas Schwab  <schwab@suse.de>
1781         [BZ #18032]
1782         * posix/fnmatch_loop.c (FCT): Remove extra increment when skipping
1783         over collating symbol inside a bracket expression.  Minor cleanup.
1784         * posix/tst-fnmatch3.c (do_test): Add test case.
1786 2015-02-26  Joseph Myers  <joseph@codesourcery.com>
1788         [BZ #18029]
1789         * sysdeps/ieee754/ldbl-128ibm/e_ilogbl.c (__ieee754_ilogbl):
1790         Adjust exponent of power of 2 down when low part has opposite
1791         sign.
1792         * math/libm-test.inc (ilogb_test_data): Add more tests.
1794 2015-02-26  Alexandre Oliva  <aoliva@redhat.com>
1796         [BZ #15969]
1797         * locale/findlocale.c (_nl_find_locale): Fix constness error in
1798         the previous change.
1800         [BZ #15969]
1801         * locale/findlocale.c (_nl_find_locale): Retry archive search
1802         after alias expansion.
1804 2015-02-25  Roland McGrath  <roland@hack.frob.com>
1806         * iconv/tst-iconv3.c (main): Converted to ...
1807         (do_test): ... this.
1808         (TEST_FUNCTION): New macro.
1809         Include test-skeleton.c.
1811         * iconv/tst-iconv5.c (testcode, number): Make variables static const.
1812         (convert): Make function static.
1813         (test_unalign): Likewise.  Add const to argument pointee types.
1814         (main): Replace with static function do_test.
1815         Print "Succeeded." only if RET is zero.
1816         (TEST_FUNCTION): New macro.
1817         Include test-skeleton.c.
1819         * iconv/gconv_conf.c (__gconv_get_path): Don't crash if __getcwd
1820         returns a null pointer.
1822 2015-02-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
1824         * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: Define memcpy
1825         to __memcpy_ppc only for static builds.
1827 2015-02-25  Joseph Myers  <joseph@codesourcery.com>
1829         [BZ #18020]
1830         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Use 2**56 and
1831         2**-56 not 2**28 and 2**-29 as thresholds for simpler formulas.
1832         * math/auto-libm-test-in: Add more tests of asinh.
1833         * math/auto-libm-test-out: Regenerated.
1834         * sysdeps/i386/fpu/libm-test-ulps: Update.
1835         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
1837 2015-02-25  Cong Wang  <xiyou.wangcong@gmail.com>
1839         [BZ #15850]
1840         * inet/netinet/in.h [!__USE_KERNEL_IPV6_DEFS]: Put in6_pktinfo
1841         and ip6_mtuinfo definitions here.
1842         * sysdeps/unix/sysv/linux/bits/in.h [_UAPI_IPV6_H]: Wrap code
1843         in this define too.  Update comment.
1845 2015-02-24  Benno Schulenberg  <bensberg@justemail.net>
1847         * elf/sprof.c (load_shobj): Tweak error message to match others.
1849 2015-02-24  Kevin Easton  <kevin@guarana.org>
1851         [BZ #16145] (partial fix)
1852         * time/tzset.c (__tz_convert): Unlock tzset_lock earlier
1853         to reduce lock contention.
1855 2015-02-24  Miroslav Lichvar  <mlichvar@redhat.com>
1857         * sysdeps/unix/sysv/linux/bits/timex.h: Update version.
1858         (struct timex): Update time comment.
1859         (ADJ_SETOFFSET): Define.
1861 2015-02-24  Joseph Myers  <joseph@codesourcery.com>
1863         [BZ #18019]
1864         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Use
1865         2**56 not 2**28 as threshold for log (2x) formula.
1866         * math/auto-libm-test-in: Add more tests of acosh.
1867         * math/auto-libm-test-out: Regenerated.
1868         * sysdeps/i386/fpu/libm-test-ulps: Update.
1869         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
1871 2015-02-24  Mike Frysinger  <vapier@gentoo.org>
1873         * include/alloca.h [_STACK_GROWS_DOWN] (extend_alloca): Add
1874         parenthesis around the buf assignment.
1875         [_STACK_GROWS_UP] (extend_alloca): Add a char* cast.
1877 2015-02-24  Joseph Myers  <joseph@codesourcery.com>
1879         [BZ #16783]
1880         * sysdeps/i386/fpu/e_scalb.S (__ieee754_scalb): Do not handle
1881         arguments (NaN, -Inf) the same as (+/-Inf, -Inf).
1882         * sysdeps/i386/fpu/e_scalbf.S (__ieee754_scalbf): Likewise.
1883         * sysdeps/i386/fpu/e_scalbl.S (__ieee754_scalbl): Likewise.
1884         * sysdeps/x86_64/fpu/e_scalbl.S (__ieee754_scalbl): Likewise.
1885         * math/libm-test.inc (scalb_test_data): Add more tests.
1887 2015-02-24  Paul Pluzhnikov  <ppluzhnikov@google.com>
1889         [BZ #17916]
1890         * libio/fileops.c (_IO_new_file_fopen): Limit stack use
1891         * libio/tst-fopenloc.c (do_test, do_bz17916): Add a large ccs= test
1893 2015-02-24  Eric Rannaud  <e@nanocritical.com>
1895         [BZ #17523]
1896         * io/fcntl.h (__OPEN_NEEDS_MODE): New macro.
1897         * io/bits/fcntl2.h (open): Use it.
1898         (openat): Likewise.
1899         * io/open.c (__libc_open): Likewise.
1900         * io/open64.c (__libc_open64): Likewise.
1901         * io/open64_2.c (__open64_2): Likewise.
1902         * io/open_2.c (__open_2): Likewise.
1903         * io/openat.c (__openat): Likewise.
1904         * io/openat64.c (__openat64): Likewise.
1905         * io/openat64_2.c (__openat64_2): Likewise.
1906         * io/openat_2.c (__openat_2): Likewise.
1907         * sysdeps/mach/hurd/open.c (__libc_open): Likewise.
1908         * sysdeps/mach/hurd/openat.c (__openat): Likewise.
1909         * sysdeps/posix/open64.c (__libc_open64): Likewise.
1910         * sysdeps/unix/sysv/linux/dl-openat64.c (openat64): Likewise.
1911         * sysdeps/unix/sysv/linux/generic/open.c (__libc_open): Likewise.
1912         (__open_nocancel): Likewise.
1913         * sysdeps/unix/sysv/linux/generic/open64.c (__libc_open64): Likewise.
1914         * sysdeps/unix/sysv/linux/open64.c (__libc_open64): Likewise.
1915         * sysdeps/unix/sysv/linux/openat.c (__OPENAT): Likewise.
1917 2015-02-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
1919         [BZ #14841]
1920         * resolv/gethnamaddr.c (getanswer): Skip logging if
1921         RES_USE_DNSSEC is set.
1922         * resolv/nss_dns/dns-host.c (getanswer_r): Likewise.
1924 2015-02-24  Mike Frysinger  <vapier@gentoo.org>
1926         * sysdeps/unix/sysv/linux/hppa/sysdep.h: Include dl-sysdep.h.
1928 2015-02-23  Alexandre Oliva <aoliva@redhat.com>
1930         * include/stdc-predef.h (__STDC_ISO_10646__): Update to
1931         201304L, for Unicode 7.
1933 2015-02-23  H.J. Lu  <hongjiu.lu@intel.com>
1935         [BZ #17836]
1936         * csu/Makefile (extra-objs): Add gmon-start.o if not builing
1937         shared library.  Add gmon-start.os otherwise.
1938         ($(objpfx)g$(start-installed-name)): Use $(objpfx)S%
1939         $(objpfx)gmon-start.os if builing shared library.
1940         ($(objpfx)g$(static-start-installed-name)): Likewise.
1942 2015-02-23  Andreas Schwab  <schwab@suse.de>
1944         * elf/Makefile (CFLAGS-tst-audit2.c): Define.
1946 2015-02-22  Paul Pluzhnikov  <ppluzhnikov@google.com>
1948         [BZ #17269]
1949         * libio/wstrops.c (_IO_wstr_overflow): Guard against integer overflow
1950         (enlarge_userbuf): Likewise.
1952 2015-02-22  Chung-Lin Tang  <cltang@codesourcery.com>
1954         * libio/tst-memstream2.c (TIMEOUT): Define as 100.
1955         * math/atest-exp.c (TIMEOUT): Adjust to 200.
1956         * math/atest-exp2.c (TIMEOUT): Adjust to 300.
1957         * math/atest-sincos.c (TIMEOUT): Adjust to 600.
1959 2015-02-20  Joseph Myers  <joseph@codesourcery.com>
1961         * soft-fp/op-common.h (_FP_FROM_INT): Wrap call to abort in
1962         expression inside statement expression.
1964 2015-02-20  Stefan Liebler  <stli@linux.vnet.ibm.com>
1966         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Include
1967         <sysdeps/nptl/lowlevellock.h> and remove macros and
1968         functions that are now defined there.
1969         (SYS_futex): Remove.
1970         (lll_compare_and_swap): Remove.
1971         * sysdeps/s390/bits/atomic.h (atomic_exchange_acq): Define.
1973 2015-02-19  Joseph Myers  <joseph@codesourcery.com>
1975         [BZ #17999]
1976         * dirent/scandir.c [!SCANDIR] (SCANDIRAT): Define to __scandirat
1977         instead of scandirat.
1978         * dirent/scandirat.c [!SCANDIRAT] (SCANDIRAT): Likewise.
1979         [!SCANDIRAT] (SCANDIRAT_WEAK_ALIAS): Define.
1980         [SCANDIRAT_WEAK_ALIAS] (scandirat): Define as weak alias of
1981         __scandirat.
1982         * include/dirent.h (scandirat): Do not use libc_hidden_proto.
1983         (__scandirat): Declare.  Use libc_hidden_proto.
1984         * conform/Makefile (test-xfail-POSIX2008/dirent.h/linknamespace):
1985         Remove variable.
1986         (test-xfail-XOPEN2K8/dirent.h/linknamespace): Likewise.
1988 2015-02-18  Joseph Myers  <joseph@codesourcery.com>
1990         [BZ #15319]
1991         * sysdeps/i386/fpu/e_atan2.S (dbl_min): New object.
1992         (MO): New macro.
1993         (__ieee754_atan2): For results with small absolute value, force
1994         underflow exception and remove excess range and precision from
1995         return value.
1996         * sysdeps/i386/fpu/e_atan2f.S (flt_min): New object.
1997         (MO): New macro.
1998         (__ieee754_atan2f): For results with small absolute value, force
1999         underflow exception and remove excess range and precision from
2000         return value.
2001         * sysdeps/i386/fpu/s_atan.S (dbl_min): New object.
2002         (MO): New macro.
2003         (__atan): For results with small absolute value, force underflow
2004         exception and remove excess range and precision from return value.
2005         * sysdeps/i386/fpu/s_atanf.S (flt_min): New object.
2006         (MO): New macro.
2007         (__atanf): For results with small absolute value, force underflow
2008         exception and remove excess range and precision from return value.
2009         * sysdeps/ieee754/dbl-64/e_atan2.c: Include <float.h> and
2010         <math.h>.
2011         (__ieee754_atan2): Force underflow exception for results with
2012         small absolute value.
2013         * sysdeps/ieee754/dbl-64/s_atan.c: Include <float.h> and
2014         <math_private.h>.
2015         (atan): Force underflow exception for results with small absolute
2016         value.
2017         * sysdeps/ieee754/flt-32/s_atanf.c: Include <float.h>.
2018         (__atanf): Force underflow exception for results with small
2019         absolute value.
2020         * sysdeps/ieee754/ldbl-128/s_atanl.c: Include <float.h> and
2021         <math.h>.
2022         (__atanl): Force underflow exception for results with small
2023         absolute value.
2024         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Include <float.h>.
2025         (__atanl): Force underflow exception for results with small
2026         absolute value.
2027         * sysdeps/x86/fpu/bits/mathinline.h
2028         [!__SSE2_MATH__ && !__x86_64__ && __LIBC_INTERNAL_MATH_INLINES]
2029         (__ieee754_atan2): Only define inline for long double.
2030         * sysdeps/x86_64/fpu/multiarch/e_atan2.c
2031         [HAVE_FMA4_SUPPORT || HAVE_AVX_SUPPORT]: Include <math.h>.
2032         * math/auto-libm-test-in: Do not mark underflow exceptions as
2033         possibly missing for bug 15319.  Add more tests of atan2.
2034         * math/auto-libm-test-out: Regenerated.
2035         * math/libm-test.inc (casin_test_data): Do not mark underflow
2036         exceptions as possibly missing for bug 15319.
2037         (casinh_test_data): Likewise.
2038         * sysdeps/i386/fpu/libm-test-ulps: Update.
2040 2015-02-18  Steve Ellcey  <sellcey@imgtec.com>
2042         * sysdeps/unix/sysv/linux/mips/bits/endian.h: Remove.
2043         * sysdeps/mips/bits/endian.h: Fix comments.
2045 2015-02-18  Joseph Myers  <joseph@codesourcery.com>
2047         [BZ #17996]
2048         * include/search.h (hcreate_r): Don't use libc_hidden_proto.
2049         (hdestroy_r): Likewise.
2050         (hsearch_r): Likewise.
2051         (__hcreate_r): Declare and use libc_hidden_proto.
2052         (__hdestroy_r): Likewise.
2053         (__hsearch_r): Likewise.
2054         * misc/hsearch.c (hsearch): Call __hsearch_r instead of hsearch_r.
2055         (hcreate): Call __hcreate_r instead of hcreate_r.
2056         (__hdestroy): Call __hdestroy_r instead of hdestroy_r.
2057         * misc/hsearch_r.c (hcreate_r): Rename to __hcreate_r and define
2058         as weak alias of __hcreate_r.
2059         (hdestroy_r): Rename to __hdestroy_r and define as weak alias of
2060         __hdestroy_r.
2061         (hsearch_r): Rename to __hsearch_r and define as weak alias of
2062         __hsearch_r.
2063         * conform/Makefile (test-xfail-XPG3/search.h/linknamespace):
2064         Remove variable.
2065         (test-xfail-XPG4/search.h/linknamespace): Likewise.
2066         (test-xfail-UNIX98/search.h/linknamespace): Likewise.
2067         (test-xfail-XOPEN2K/search.h/linknamespace): Likewise.
2068         (test-xfail-XOPEN2K8/search.h/linknamespace): Likewise.
2070 2015-02-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
2072         * malloc/malloc.c (__libc_malloc): Consolidate arena_lookup and
2073         arena_lock into a single arena_get.
2075 2015-02-17  Carlos O'Donell  <carlos@redhat.com>
2077         * dl-reloc.c: Inlucde libc-internal.h.
2078         (_dl_try_allocate_static_tls): Call ALIGN_UP.
2079         (_dl_relocate_object): Call ALIGN_UP, ALIGN_DOWN, and PTR_ALIGN_DOWN.
2080         (_dl_protect_relro): Call ALIGN_UP and ALIGN_DOWN.
2081         * malloc/arena.c (new_heap): Use pagesize. Call ALIGN_UP.
2082         (grow_heap): Likewise.
2083         * malloc/malloc.c: Include libc-internal.h.
2084         (do_check_malloc): Call powerof2.
2085         (sysmalloc): Use pagesize. Call ALIGN_UP.
2086         (systrim): Use pagesize.
2087         (mremap_chunk): Use pagesize. Call ALIGN_UP.
2088         (__libc_valloc): Use pagesize.
2089         (__libc_pvalloc): Use pagesize. Call ALIGN_UP.
2091 2015-02-17  Joseph Myers  <joseph@codesourcery.com>
2093         [BZ #17991]
2094         * include/sys/resource.h (__getrlimit64): Declare.  Use
2095         libc_hidden_proto.
2096         * resource/getrlimit64.c (getrlimit64): Rename to __getrlimit64
2097         and define as weak alias of __getrlimit64.  Use libc_hidden_weak.
2098         * sysdeps/posix/spawni.c (__spawni): Call __getrlimit64 instead of
2099         getrlimit64.
2100         * sysdeps/unix/sysv/linux/getrlimit64.c (getrlimit64): Rename to
2101         __getrlimit64.
2102         [!getrlimit64] (getrlimit64): Define as weak alias of
2103         __getrlimit64.  Use libc_hidden_weak.
2104         * sysdeps/unix/sysv/linux/i386/getrlimit64.c (getrlimit64): Define
2105         using __getrlimit64 not __new_getrlimit64.
2106         (__GI_getrlimit64): Likewise.
2107         * sysdeps/unix/sysv/linux/mips/getrlimit64.c (getrlimit64):
2108         Likewise.
2109         (__GI_getrlimit64): Likewise.
2110         (__old_getrlimit64): Use __getrlimit64 not __new_getrlimit64.
2111         * sysdeps/unix/sysv/linux/powerpc/powerpc64/syscalls.list
2112         (getrlimit): Add __getrlimit64 alias.
2113         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list (getrlimit):
2114         Likewise.
2115         * conform/Makefile (test-xfail-XOPEN2K/spawn.h/linknamespace):
2116         Remove variable.
2117         (test-xfail-POSIX2008/spawn.h/linknamespace): Likewise.
2118         (test-xfail-XOPEN2K8/spawn.h/linknamespace): Likewise.
2120 2015-02-17  Paul Pluzhnikov  <ppluzhnikov@google.com>
2122         * libio/fileops.c: Add missing sys/mman.h
2123         * libio/iopopen.c: Add missing fcntl.h, remove redundant unistd.h
2125 2015-02-17  Joseph Myers  <joseph@codesourcery.com>
2127         * manual/math.texi (Errors in Math Functions): Clarify goals
2128         regarding inexact and underflow exceptions.
2130 2015-02-17  Steve Ellcey  <sellcey@imgtec.com>
2132         * sysdeps/mips/memcpy.S: Move R6 PREFETCH_STORE_HINT check.
2133         * sysdeps/mips/memset.S: Ditto.
2135 2015-02-17  Steve Ellcey  <sellcey@imgtec.com>
2137         * sysdeps/mips/bits/endian.h (__MIPSEL): Use #ifdef instead of #if.
2139 2015-02-17  Stefan Liebler  <stli@linux.vnet.ibm.com>
2141         * sysdeps/unix/sysv/linux/s390/pt-longjmp.c
2142         (__v1longjmp): Remove versioned symbol.
2143         (__v1siglongjmp): Remove alias and versioned symbol.
2144         (__v2longjmp): Use DEFINE_LONGJMP instead of alias.
2145         (__v2siglongjmp): Likewise.
2147 2015-02-16  Torvald Riegel  <triegel@redhat.com>
2149         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Remove file.
2151 2015-02-16  Mike Frysinger  <vapier@gentoo.org>
2153         * sysdeps/unix/sysv/linux/ia64/getpagesize.c: Delete.
2155 2015-02-16  Joseph Myers  <joseph@codesourcery.com>
2157         [BZ #17987]
2158         * sysdeps/ieee754/dbl-64/s_remquo.c (__remquo): Ensure sign of
2159         zero result does not depend on the sign resulting from
2160         subtraction.
2161         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c (__remquo):
2162         Likewise.
2163         * sysdeps/ieee754/flt-32/s_remquof.c (__remquof): Likewise.
2164         * sysdeps/ieee754/ldbl-128/s_remquol.c (__remquol): Likewise.
2165         * sysdeps/ieee754/ldbl-128ibm/s_remquol.c (__remquol): Likewise.
2166         * sysdeps/ieee754/ldbl-96/s_remquol.c (__remquol): Likewise.
2167         * math/libm-test.inc (remquo_test_data): Add more tests.
2169 2015-02-16  Paul Eggert  <eggert@cs.ucla.edu>
2171         * manual/time.texi (TZ Variable): glibc no longer comes with tzdata.
2172         Problem reported by J William Piggott.
2174 2015-02-16  Joseph Myers  <joseph@codesourcery.com>
2176         [BZ #17978]
2177         * sysdeps/ieee754/dbl-64/s_remquo.c (__remquo): Do not form
2178         products 4 * y and 2 * y where those would overflow.
2179         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c (__remquo):
2180         Likewise.
2181         * sysdeps/ieee754/flt-32/s_remquof.c (__remquof): Likewise.
2182         * sysdeps/ieee754/ldbl-128/s_remquol.c (__remquol): Likewise.
2183         * sysdeps/ieee754/ldbl-128ibm/s_remquol.c (__remquol): Likewise.
2184         * sysdeps/ieee754/ldbl-96/s_remquol.c (__remquol): Likewise.
2185         * math/libm-test.inc (remquo_test_data): Add more tests.
2187         * sysdeps/mips/sgidefs.h [!_ABIO64] (_ABIO64): New macro.
2189         * sysdeps/mips/memcpy.S [_COMPILING_NEWLIB]: Change condition to
2190         [defined _COMPILING_NEWLIB].
2191         * sysdeps/mips/memset.S [_COMPILING_NEWLIB]: Likewise.
2192         * sysdeps/mips/strcmp.S [_COMPILING_NEWLIB]: Likewise.
2194         * sysdeps/mips/sys/asm.h [__mips_isa_rev < 6]: Change condition to
2195         [!defined __mips_isa_rev || __mips_isa_rev < 6].
2197 2015-02-16  Torvald Riegel  <triegel@redhat.com>
2199         * nptl/tst-cond25.c (cleanup): Explicitly check that the mutex is
2200         acquired.
2202 2015-02-15  Matthew Fortune <Matthew.Fortune@imgtec.com>
2204         [BZ #17792]
2205         * sysdeps/unix/sysv/linux/ia64/sys/user.h (NBPG): Remove.
2206         (UPAGES, HOST_TEXT_START_ADDR, HOST_DATA_START_ADDR,
2207         HOST_STACK_END_ADDR): Likewise.
2209 2015-02-13  Steve Ellcey  <sellcey@imgtec.com>
2211         * sysdeps/mips/bits/endian.h (__MIPSEB): Use #ifdef instead of #if.
2212         * sysdeps/mips/memcpy.S (__MIPSEB): Ditto.
2213         * sysdeps/mips/memset.S (__MIPSEB): Ditto.
2215 2015-02-13  Roland McGrath  <roland@hack.frob.com>
2217         * sysdeps/generic/c++-types.data: New file.
2218         * sysdeps/generic/ld.abilist: New file.
2219         * sysdeps/generic/libBrokenLocale.abilist: New file.
2220         * sysdeps/generic/libanl.abilist: New file.
2221         * sysdeps/generic/libc.abilist: New file.
2222         * sysdeps/generic/libcrypt.abilist: New file.
2223         * sysdeps/generic/libdl.abilist: New file.
2224         * sysdeps/generic/libm.abilist: New file.
2225         * sysdeps/generic/libpthread.abilist: New file.
2226         * sysdeps/generic/libresolv.abilist: New file.
2227         * sysdeps/generic/librt.abilist: New file.
2229 2015-02-13  Joseph Myers  <joseph@codesourcery.com>
2231         [BZ #17569]
2232         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c (__remquo):
2233         Compute absolute value of x as modified by fmod, not original
2234         value of x.
2235         * math/libm-test.inc (RUN_TEST_ffI_f1): Rename to
2236         RUN_TEST_ffI_f1_mod8.  Check extra return value mod 8.
2237         (RUN_TEST_LOOP_ffI_f1): Rename to RUN_TEST_LOOP_ffI_f1_mod8.  Call
2238         RUN_TEST_ffI_f1_mod8.
2239         (remquo_test_data): Add more tests.
2241 2015-02-13  Roland McGrath  <roland@hack.frob.com>
2243         * sysdeps/init_array/pt-crti.S: New file.
2245 2015-02-13  Joseph Myers  <joseph@codesourcery.com>
2247         [BZ #17967]
2248         * sysdeps/powerpc/fpu/e_sqrtf.c (__slow_ieee754_sqrtf): Use
2249         __builtin_fmaf instead of relying on contraction of a * b + c.
2251 2015-02-12  J William Piggott  <elseifthen@gmx.com>
2253         [BZ #17969]
2254         * manual/time.texi: correct the zoneinfo path in the TZ Variable
2255         node.
2257 2015-02-12  Joseph Myers  <joseph@codesourcery.com>
2259         [BZ #17964]
2260         * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrt): Use
2261         __builtin_fma instead of relying on contraction of a * b + c.
2263 2015-02-12  Roland McGrath  <roland@hack.frob.com>
2265         * Makeconfig (ASFLAGS): Add -Werror=undef.
2266         * sysdeps/arm/Versions (libc: GLIBC_2.19): New (empty) version set.
2267         * sysdeps/unix/make-syscalls.sh: Always emit #define's for
2268         SYSCALL_CANCELLABLE, SYSCALL_NOERRNO, SYSCALL_ERRVAL, to 1 or 0.
2270         * Makeconfig (after-link): New variable.
2271         (+link-pie, +link-pie-tests): Use it.
2272         (+link-static, +link-static-tests): Likewise.
2273         (+link, +link-tests): Likewise.
2274         * Makerules (build-module, build-module-asneeded): Likewise.
2275         (lib%.so, $(common-objpfx)libc.so, $(common-objpfx)linkobj/libc.so):
2276         Likewise.
2277         * elf/Makefile ($(objpfx)ld.so): Likewise.
2279 2015-02-12  Rüdiger Sonderfeld  <ruediger@c-plusplus.net>
2281         [BZ #17965]
2282         * manual/time.texi (Elapsed Time): tv_sec is of type time_t in
2283         both struct timeval and struct timespec.
2285 2015-02-12  Joseph Myers  <joseph@codesourcery.com>
2287         [BZ #16560]
2288         * math/e_exp2l.c [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine
2289         and redefine.
2290         (__ieee754_exp2l): Do not multiply small fractional parts by
2291         M_LN2l.
2292         * sysdeps/i386/fpu/e_exp2l.S (__ieee754_exp2l): Just add 1 to
2293         small argument.
2294         * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Likewise.
2295         * sysdeps/ieee754/flt-32/e_exp2f.c (__ieee754_exp2f): Likewise.
2296         * sysdeps/x86_64/fpu/e_exp2l.S (__ieee754_exp2l): Likewise.
2297         * math/auto-libm-test-in: Add more tests of exp2.
2298         * math/auto-libm-test-out: Regenerated.
2300 2015-02-12  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
2302         * sysdeps/powerpc/powerpc64/power7/strncpy.S (strncpy): Optimize
2303         unaligned path.
2305 2015-02-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
2307         * sysdeps/unix/sysv/linux/powerpc/htm.h [TABORT]: Fix encoding for
2308         little endian.
2310 2015-02-12  Andreas Schwab  <schwab@suse.de>
2312         [BZ #15790]
2313         * nptl/pthread_mutexattr_gettype.c (pthread_mutexattr_gettype):
2314         Filter out elision flags from value returned in kind.
2315         * nptl/Makefile (tests): Add tst-pthread-mutexattr.
2316         * nptl/tst-pthread-mutexattr.c: New file.
2318 2015-02-11  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2320         * abi-tags: Revert ae20c9a: rename back gnu into gnu-gnu.
2321         * configure.ac, configure: Revert ba90e05: modify gnu-* host_os back
2322         into gnu-gnu, and update comment to refer to abi-tags.
2324 2015-02-11  Joseph Myers  <joseph@codesourcery.com>
2326         [BZ #15467]
2327         * sysdeps/ieee754/dbl-64/s_sincos.c: Include <errno.h>.
2328         (__sincos): Set errno to EDOM for infinite argument.
2329         * sysdeps/ieee754/flt-32/s_sincosf.c: Include <errno.h>.
2330         (SINCOSF_FUNC): Set errno to EDOM for infinite argument.
2331         * sysdeps/ieee754/ldbl-128/s_sincosl.c: Include <errno.h>.
2332         (__sincosl): Set errno to EDOM for infinite argument.
2333         * sysdeps/ieee754/ldbl-128ibm/s_sincosl.c: Include <errno.h>.
2334         (__sincosl): Set errno to EDOM for infinite argument.
2335         * sysdeps/ieee754/ldbl-96/s_sincosl.c: Include <errno.h>.
2336         (__sincosl): Set errno to EDOM for infinite argument.
2337         * math/libm-test.inc (sincos_test_data): Test errno setting.
2339 2015-02-11  Leonhard Holz  <leonhard.holz@web.de>
2341         * string/strxfrm_l.c: Remove #define STRCMP.
2342         * string/strcoll_l.c: Remove #define STRLEN.
2343         * wcsmbs/wcsxfrm_l.c: Remove #define STRCMP.
2344         * wcsmbs/wcscoll_l.c: Remove #define STRLEN.
2346 2015-02-10  Joseph Myers  <joseph@codesourcery.com>
2348         * sysdeps/mips/soft-fp/sfp-machine.h: Move to ....
2349         * sysdeps/mips/mips32/sfp-machine.h: ... here.
2350         * sysdeps/mips/mips64/soft-fp/Makefile: Move to ....
2351         * sysdeps/mips/mips64/Makefile: ... here.
2352         * sysdeps/mips/mips64/soft-fp/e_sqrtl.c: Move to ....
2353         * sysdeps/mips/mips64/e_sqrtl.c: ... here.
2354         * sysdeps/mips/mips64/soft-fp/sfp-machine.h: Move to ....
2355         * sysdeps/mips/mips64/sfp-machine.h: ... here.
2356         * sysdeps/mips/mips32/Implies: Remove mips/soft-fp.
2357         * sysdeps/mips/mips64/n32/Implies: Remove mips/mips64/soft-fp.
2358         * sysdeps/mips/mips64/n64/Implies: Likewise.
2360 2015-02-10  Roland McGrath  <roland@hack.frob.com>
2362         * math/test-snan.c: Drop unnecessary #include's of <stdlib.h>,
2363         <sys/time.h>, <string.h>, and <errno.h>.
2364         (dest_offset, dest_address, value, zero): Remove unused variables.
2365         (ldouble): Remove typedef.
2366         (myFPsighandler): Use simple handler signature, not SA_SIGINFO
2367         signature.  Pass 1 to siglongjmp rather than 0 (which is converted to
2368         1).  Fix code style.
2369         (set_sigaction_FP, remove_sigaction_FP): Functions removed.
2370         (check): Function removed.
2371         (CHECK): New macro.
2372         (TEST_FUNC): Fix code style.  Use CHECK macro rather than repeating
2373         boilerplate feclearexcept + feenableexcept + sigsetjmp code.
2374         Don't call set_sigaction_FP and remove_sigaction_FP here.
2375         (ldouble_test): Just use 'long double' as macro argument, no need for
2376         the 'ldouble' typedef.
2377         (do_test): Set up SIGFPE handler at start, using plain signal rather
2378         than sigaction.  Fix code style.
2380 2015-02-10  Evangelos Foutras  <evangelos@foutrelis.com>
2382         [BZ #17949]
2383         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Fix position of
2384         jump label.
2386 2015-02-09  Adhemerval Zanellla  <azanella@linux.vnet.ibm.com>
2388         * sysdeps/powerpc/powerpc32/configure.ac: Remove R_PPC_REL16 check.
2389         * sysdeps/powerpc/powerpc32/configure: Regenerated.
2391         * sysdeps/powerpc/configure.ac: Remove file.
2392         * sysdeps/powerpc/configure: Likewise.
2394         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile
2395         [sysdep_routines]: Remove wordcopy-power6 object.
2396         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-power7.c
2397         (__memmove_power7): Use local call for wordcopy and memcpy symbols.
2398         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-ppc32.c
2399         (__memmove_ppc32): Likewise.
2400         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power6.c: Remove
2401         file.
2402         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c: Remove file.
2403         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-ppc64.c [IS_IN (libc)]:
2404         Remove preprocessor.
2406         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile
2407         [sysdep_routines]: Remove wide chars objects.
2408         [wcsmbs]: New rule for wide char objects.
2410         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
2411         Remove wordcopy-power6 obejct.
2412         * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c (__memmove_ppc):
2413         Use local call for wordcopy and memcpy symbols.
2414         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power6.c: Remove file.
2415         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-ppc64.c: Add default
2416         implementation for loader.
2417         * sysdeps/powerpc/powerpc64/multiarch/wordcopy.c: Remove file.
2419         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
2420         Remove wordcopy-power7 object.
2421         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power7.c: Remove file.
2422         * sysdeps/powerpc/powerpc64/multiarch/wordcopy.c
2423         (_wordcopy_fwd_aligned): Remove POWER7 specialization.
2424         (_wordcopy_fwd_dest_aligned): Likewise.
2425         (_wordcopy_bwd_aligned): Likewise.
2426         (_wordcopy_bwd_dest_aligned): Likewise.
2428         * sysdeps/powerpc/powerpc64/multiarch/bcopy-ppc64.c (__bcopy_ppc):
2429         Rewrite to call __memmove_ppc instead of include default
2430         implementation.
2432         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
2433         Remove wide chars objects.
2434         [wcsmbs]: New rule for wide char objects.
2436 2015-02-09  Andreas Schwab  <schwab@suse.de>
2438         [BZ #17912]
2439         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (__O_TMPFILE): Define
2440         in terms of __O_DIRECTORY.
2442 2015-02-08  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2444         * time/getdate.c: Include <stdbool.h>.
2445         * sysdeps/gnu/unwind-resume.c [!PTR_MANGLE] (__libgcc_s_init): Do not
2446         call PTR_MANGLE.
2447         [!PTR_DEMANGLE] (_Unwind_Resume, __gcc_personality_v0): Do not call
2448         PTR_DEMANGLE.
2450 2015-02-07  Paul Eggert  <eggert@cs.ucla.edu>
2452         Add ersatz _Static_assert on older C hosts
2453         * misc/sys/cdefs.h (_Static_assert): Define a substitute, if on a
2454         pre-C11 C platform that is not known to support _Static_assert.
2456 2015-02-07  Richard Braun  <rbraun@sceen.net>
2458         * hurd/hurd/signal.h (_hurd_critical_section_lock): Don't unlock
2459         sigstate.
2460         * sysdeps/mach/hurd/mmap.c (__mmap): Also handle PROT_NONE case.
2462 2015-02-07  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2464         * sysdeps/pthread/aio_misc.c [!AIO_PRIO_DELTA_MAX]: Do not check
2465         priority against unexistent AIO_PRIO_DELTA_MAX.
2466         * misc/chflags.c (chflags): Set flags parameter type to unsigned long
2467         instead of int.
2468         * misc/fchflags.c (fchflags): Likewise.
2469         * sysdeps/mach/hurd/chflags.c (chflags): Likewise.
2470         * sysdeps/mach/hurd/fchflags.c (fchflags): Likewise.
2471         * sysdeps/mach/hurd/bits/stat.h [__USE_MISC] (UF_SETTABLE, UF_NODUMP,
2472         UF_IMMUTABLE, UF_APPEND, UF_OPAQUE, UF_NOUNLINK, SF_SETTABLE,
2473         SF_ARCHIVED, SF_IMMUTABLE, SF_APPEND, SF_NOUNLINK, SF_SNAPSHOT):
2474         Declare macros.
2475         [__USE_MISC] (chflags, fchflags): Declare functions.
2476         * hurd/hurdselect.c (_hurd_select): In the poll case, do not return
2477         EINVAL when nfds is greater than FD_SETSIZE.
2478         * hurd/hurd/resource.h (MACH_PRIORITY_TO_NICE,
2479         NICE_TO_MACH_PRIORITY): Align nice levels on Mach priorities from 5 to
2480         45.
2481         * hurd/hurdselect.c (_hurd_select): Pass MACH_RCV_INTERRUPT to
2482         __mach_msg.  If that returns MACH_RCV_INTERRUPTED, set ERR to EINTR.
2483         * hurd/hurdselect.c (_hurd_select): Remove unreachable check for
2484         MACH_RCV_TIMED_OUT.
2485         * hurd/hurd/signal.h (_hurd_self_sigstate,
2486         _hurd_critical_section_lock, _hurd_critical_section_unlock):
2487         Explicit casts from void *.
2488         * sysdeps/mach/hurd/tls.h: Include <stdint.h> and <sysdep.h>.
2489         * abi-tags: Rename gnu-gnu os into gnu.
2491         [BZ #4719]
2492         * sysdeps/mach/hurd/bits/ioctls.h (_IOT__IOTBASE_long, _IOT_char,
2493         _IOT_short, _IOT_int, _IOT_long, _IOT__IOTBASE_int8_t,
2494         _IOT__IOTBASE_uint8_t, _IOT__IOTBASE_int16_t, _IOT__IOTBASE_uint16_t,
2495         _IOT__IOTBASE_int32_t, _IOT__IOTBASE_uint32_t, _IOT__IOTBASE_int64_t,
2496         _IOT__IOTBASE_uint64_t, _IOT__IOTBASE_size_t, _IOT__IOTBASE_ssize_t,
2497         _IOTBASE_unsigned, _IOTBASE_signed): Define macros.
2499         [BZ #17944]
2500         * hurd/hurdsocket.h: New file, defines _hurd_sun_path_dupa which
2501         duplicates ADDR->sun_path with sockaddr LEN limitation.
2502         * sysdeps/mach/hurd/connect.c: Include <string.h>
2503         (__connect): Give result of _hurd_sun_path_dupa to name lookup.
2504         * sysdeps/mach/hurd/sendmsg.c: Likewise.
2505         * sysdeps/mach/hurd/sendto.c: Likewise.
2506         * sysdeps/mach/hurd/bind.c: Call _hurd_sun_path_dupa instead of
2507         implementing it by hand.
2509 2015-02-06  Roland McGrath  <roland@hack.frob.com>
2511         * sysdeps/arm/sysdep.h [!PROF] [ARCH_HAS_T2 && !PIC] (LDR_GLOBAL):
2512         Use sfi_breg on ldr.
2513         [!PROF] [ARCH_HAS_T2 && PIC && ARM_PCREL_MOVW_OK] (LDR_GLOBAL):
2514         Likewise.
2516         * nptl/tst-cancel25.c (tf2): Test for SIGCANCEL being blocked only if
2517         it's defined.
2518         * nptl/tst-signal7.c (do_test): Test SIGCANCEL only if it's defined.
2519         Test SIGSETXID only if it's defined.
2521         * nptl/tst-locale1.c (useless): Use SIGRTMIN only if it's defined.
2523         * rt/tst-timer2.c (do_test): Don't initialize SIGEV.sigev_signo, which
2524         will not be used.  Use NULL rather than 0 for .sigev_notify_attributes.
2526         * nptl/tst-align2.c: Moved ...
2527         * sysdeps/unix/sysv/linux/tst-align-clone.c: ... here.
2528         * nptl/Makefile (tests): Remove tst-align2.
2529         * sysdeps/unix/sysv/linux/Makefile
2530         [$(subdir) = nptl] (tests): Add tst-align-clone.
2531         * nptl/tst-getpid1.c: Moved ...
2532         * sysdeps/unix/sysv/linux/tst-getpid1.c: ... here.
2533         * nptl/tst-getpid2.c: Moved ...
2534         * sysdeps/unix/sysv/linux/tst-getpid2.c: ... here.
2535         * nptl/Makefile (tests): Move tst-getpid1 and tst-getpid2 ...
2536         * sysdeps/unix/sysv/linux/Makefile
2537         [$(subdir) = nptl] (tests): ... here.
2538         * nptl/Makefile (tst-getpid2-ENV): Move variable ...
2539         * sysdeps/unix/sysv/linux/Makefile
2540         [$(subdir) = nptl] (tst-getpid2-ENV): ... here.
2542         * nptl/tst-cleanup2.c (do_test): Use signal rather than sigaction.
2543         Drop trailing \n from perror argument.  Use return rather than exit.
2545         * nptl/tst-cancel20.c (do_test): Conditionalize SA_SIGINFO-using tests
2546         on [SA_SIGINFO].
2547         * nptl/tst-cancel21.c (do_test): Likewise.
2548         * debug/tst-backtrace6.c: Include <signal.h> first thing.
2549         Conditionalize inclusion of tst-backtrace5.c on [SA_SIGINFO].
2550         [!SA_SIGINFO]: Make it a stub test.
2552         * misc/tst-pselect.c (do_test): Don't set SA_NOCLDWAIT in sa_flags for
2553         SIGCHLD; it's redundant with SIG_IGN as sa_handler.
2555         * posix/tst-getlogin.c: Move to ...
2556         * login/tst-getlogin.c: ... here.
2557         * posix/Makefile (tests): Move tst-getlogin to ...
2558         * login/Makefile (tests): ... here.
2560         * libio/tst-atime.c (do_test): Move local variables SV and E
2561         inside [ST_NOATIME] conditional.
2563         * dirent/tst-fdopendir.c (O_NOATIME): If not defined, #define to 0.
2565         * nptl/tst-kill5.c (do_test): Use INT_MAX rather than SIGRTMAX + 10.
2567         * nptl/tst-join5.c: Drop #include <sys/syscall.h>.
2568         (wait_code): New function replaces macro.
2569         Call nanosleep rather than syscall.
2571         * nptl/pt-system.c: Rewritten.  Put everything under
2572         [SHLIB_COMPAT (libpthread, GLIBC_2_0, GLIBC_2_22)].
2573         Use IFUNC to redirect when possible.
2575         * nptl/pt-longjmp.c: Rewritten.  Put everything under
2576         [SHLIB_COMPAT (libpthread, GLIBC_2_0, GLIBC_2_22)].
2577         Use IFUNC to redirect when possible.
2579         * nptl/pt-fork.c: Rewritten.  Put everything under
2580         [SHLIB_COMPAT (libpthread, GLIBC_2_0, GLIBC_2_22)].
2581         Use IFUNC to redirect when possible.
2582         * nptl/Versions (libpthread: GLIBC_2.22): New (empty) version set.
2584         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Remove all
2585         code under [!__ASSUME_FUTEX_CLOCK_REALTIME], since that is defined
2586         unconditionally nowadays.  This included the only reference to
2587         __vdso_clock_gettime that appears outside libc proper.
2588         * sysdeps/unix/sysv/linux/x86_64/Versions (libc: GLIBC_PRIVATE):
2589         Remove version set (containing only __vdso_clock_gettime).
2590         * sysdeps/unix/sysv/linux/x86/libc-vdso.h (__vdso_clock_gettime):
2591         Add attribute_hidden.
2592         * sysdeps/unix/sysv/linux/i386/init-first.c (__vdso_clock_gettime):
2593         Likewise.  Drop __attribute__ ((nocommon)), libc_hidden_proto, and
2594         libc_hidden_data_def.
2595         * sysdeps/unix/sysv/linux/x86_64/init-first.c: Likewise.
2596         * sysdeps/unix/sysv/linux/x86_64/x32/init-first.c: Likewise.
2598         * inet/Versions (libc: GLIBC_2.0): Move getrpcbyname, getrpcbyname_r,
2599         getrpcbynumber, getrpcbynumber_r, getrpcent, getrpcent_r, endrpcent,
2600         setrpcent, and getrpcport to ...
2601         * sunrpc/Versions (libc: GLIBC_2.0): ... here.
2602         * inet/Versions (libc: GLIBC_2.1.2): Move getrpcbyname_r,
2603         getrpcbynumber_r, and getrpcent_r to ...
2604         * sunrpc/Versions (libc: GLIBC_2.1.2): ... this new set.
2605         * inet/getrpcbyname.c: Moved ...
2606         * sunrpc/getrpcbyname.c: ... here.
2607         * inet/getrpcbyname_r.c: Moved ...
2608         * sunrpc/getrpcbyname_r.c: ... here.
2609         * inet/getrpcbynumber.c: Moved ...
2610         * sunrpc/getrpcbynumber.c: ... here.
2611         * inet/getrpcbynumber_r.c: Moved ...
2612         * sunrpc/getrpcbynumber_r.c: ... here.
2613         * inet/getrpcent.c: Moved ...
2614         * sunrpc/getrpcent.c: ... here.
2615         * inet/getrpcent_r.c: Moved ...
2616         * sunrpc/getrpcent_r.c: ... here.
2617         * inet/Makefile (routines): Move those to ...
2618         * sunrpc/Makefile (routines): ... here.
2619         * nss/Makefile (databases): Add key and rpc only if sunrpc appears in
2620         the $(subdirs) list.
2621         (CPPFLAGS-getent.c): New variable.  Pass -D option to set HAVE_SUNRPC
2622         to 0 or 1, indicating whether sunrpc appears in the $(subdirs) list.
2623         * nss/getent.c (print_rpc, rpc_keys): Conditionalize on [HAVE_SUNRPC].
2624         (databases): Conditionalize rpc entry on [HAVE_SUNRPC].
2626         * elf/Makefile (routines): Include $(all-dl-routines), not just
2627         $(dl-routines).
2628         (rtld-routines): Likewise.  Use = rather than :=.
2629         * sysdeps/aarch64/Makefile [$(subdir) = elf]
2630         (sysdep_routines, sysdep-rtld-routines): Don't add tlsdesc and
2631         dl-tlsdesc to these; sysdep-dl-routines alone is enough.
2632         * sysdeps/arm/Makefile: Likewise.
2633         * sysdeps/i386/Makefile: Likewise.
2634         * sysdeps/x86_64/Makefile: Likewise.
2635         * sysdeps/hppa/Makefile [$(subdir) = elf]
2636         (sysdep_routines, sysdep-rtld-routines): Don't add
2637         $(sysdep-dl-routines) to these.
2638         * sysdeps/ia64/Makefile: Likewise.
2639         * sysdeps/unix/sysv/linux/ia64/Makefile: Likewise.
2640         * sysdeps/unix/sysv/linux/aarch64/Makefile [$(subdir) = elf]
2641         [$(build-shared) = yes] (sysdep_routines, sysdep-rtld-routines):
2642         Don't add dl-static to these; sysdep-dl-routines alone is enough.
2643         * sysdeps/unix/sysv/linux/m68k/Makefile: Likewise.
2644         * sysdeps/unix/sysv/linux/mips/Makefile: Likewise.
2645         * sysdeps/unix/sysv/linux/powerpc/Makefile: Likewise.
2646         * sysdeps/unix/sysv/linux/tile/Makefile: Likewise.
2647         * sysdeps/powerpc/Makefile [$(subdir) = elf]
2648         (sysdep_routines, sysdep-rtld-routines): Don't add dl-machine to
2649         these; sysdep-dl-routines alone is enough.
2651 2015-02-06  Joseph Myers  <joseph@codesourcery.com>
2653         [BZ #17932]
2654         * soft-fp/op-common.h (_FP_FMA): Set exponent of result in case
2655         where multiplication results in zero and third argument is finite
2656         and nonzero.
2657         * math/auto-libm-test-in: Add more tests of fma.
2658         * math/auto-libm-test-out: Regenerated.
2660         * soft-fp/op-common.h (_FP_CMP_CHECK_DENORM): New macro.
2661         (_FP_CMP_CHECK_FLUSH_ZERO): Likewise.
2662         (_FP_CMP): Use_FP_CMP_CHECK_DENORM and _FP_CMP_CHECK_FLUSH_ZERO.
2663         (_FP_CMP_EQ): Likewise.
2664         (_FP_CMP_UNORD): Use _FP_CMP_CHECK_DENORM.
2666         * soft-fp/op-common.h (FP_EXTEND): Rename to _FP_EXTEND_CNAN with
2667         extra argument CHECK_NAN.  Redefine as wrapper around
2668         _FP_EXTEND_CNAN.
2670 2015-02-06  Carlos O'Donell  <carlos@systemhalted.org>
2672         * version.h (RELEASE): Set to "stable".
2673         (VERSION): Set to "2.21"
2674         * include/features.h (__GLIBC_MINOR__): Set to 21.
2676         * sysdeps/unix/sysv/linux/hppa/pthread.h: Sync with pthread.h.
2678 2015-02-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
2679             Paul Eggert  <eggert@cs.ucla.edu>
2681         [BZ #16618]
2682         * stdio-common/tst-sscanf.c (main): Test for buffer overflow.
2683         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Compute needed
2684         size in bytes. Store needed elements in wpmax. Use needed size
2685         in bytes for extend_alloca.
2687 2015-02-05  Carlos O'Donell  <carlos@systemhalted.org>
2689         * manual/install.texi: Latest tested versions are GCC 4.9.2,
2690         binutls 2.25, and texinfo 5.2.
2691         * INSTALL: Regenerate.
2692         * sysdeps/nios2/configure: Regenerate.
2693         * sysdeps/unix/sysv/linux/nios2/configure: Regenerate.
2694         * manual/contrib.texi: Update.
2695         * po/be.po: Update.
2696         * po/bg.po: Update.
2697         * po/ca.po: Update.
2698         * po/cs.po: Update.
2699         * po/da.po: Update.
2700         * po/de.po: Update.
2701         * po/el.po: Update.
2702         * po/eo.po: Update.
2703         * po/es.po: Update.
2704         * po/fi.po: Update.
2705         * po/fr.po: Update.
2706         * po/gl.po: Update.
2707         * po/hr.po: Update.
2708         * po/hu.po: Update.
2709         * po/ia.po: Update.
2710         * po/id.po: Update.
2711         * po/it.po: Update.
2712         * po/ja.po: Update.
2713         * po/ko.po: Update.
2714         * po/lt.po: Update.
2715         * po/nb.po: Update.
2716         * po/nl.po: Update.
2717         * po/pl.po: Update.
2718         * po/pt_BR.po: Update.
2719         * po/ru.po: Update.
2720         * po/rw.po: Update.
2721         * po/sk.po: Update.
2722         * po/sl.po: Update.
2723         * po/sv.po: Update.
2724         * po/tr.po: Update.
2725         * po/uk.po: Update.
2726         * po/vi.po: Update.
2727         * po/zh_CN.po: Update.
2728         * po/zh_TW.po: Update.
2730         * sysdeps/hppa/Makefile (CFLAGS-dl-fptr.c): Add -Wno-error.
2731         * sysdeps/hppa/bits/setjmp.h: Union is named __jmp_buf_internal_tag.
2732         * sysdeps/hppa/dl-irel.h: Remove #warning.
2733         * sysdeps/hppa/entry.h: Provide prototype for
2734         __canonicalize_funcptr_for_compare and cast argument.
2735         * sysdeps/hppa/fpu/fegetexcept.c (fegetexcept): Add semicolon.
2736         * sysdeps/hppa/fpu/ftestexcept.c (fetestexcept): Likewise.
2737         * sysdeps/hppa/sotruss-lib.c: New file.
2738         * sysdeps/unix/sysv/linux/hppa/bits/atomic.h
2739         (atomic_compare_and_exchange_val_acq): Use __typeof__.
2740         (atomic_compare_and_exchange_bool_acq): Likewise.
2741         * sysdeps/unix/sysv/linux/hppa/mmap.c: Use weak alias.
2742         * sysdeps/unix/sysv/linux/hppa/pthread.h: Include pthread.h.
2744         * sysdeps/unix/sysv/linux/hppa/syscall.S: Delete file.
2745         * sysdeps/unix/sysv/linux/hppa/sysdep.c: Move syscall from here...
2746         * sysdeps/unix/sysv/linux/hppa/syscall.c: ... to here.
2748 2015-02-05  Chung-Lin Tang  <cltang@codesourcery.com>
2750         * sysdeps/nios2/machine-gmon.h (NIOS2_MCOUNT_CALL): Correct name of
2751         called function in non-PIC case.
2753 2015-01-31  David S. Miller  <davem@davemloft.net>
2755         * sysdeps/sparc/sparc32/bits/atomic.h
2756         (__sparc32_atomic_do_unlock24): Put the memory barrier before the
2757         unlock not after it.
2758         (__v9_compare_and_exchange_val_32_acq): Use unions to avoid getting
2759         volatile register usage warnings from the compiler.
2761         * sysdeps/sparc/nptl/sem_init.c: Delete.
2762         * sysdeps/sparc/nptl/sem_post.c: Delete.
2763         * sysdeps/sparc/nptl/sem_timedwait.c: Delete.
2764         * sysdeps/sparc/nptl/sem_wait.c: Delete.
2765         * sysdeps/sparc/sparc32/sem_init.c: New file.
2766         * sysdeps/sparc/sparc32/sem_waitcommon.c: New file.
2767         * sysdeps/sparc/sparc32/sem_open.c: Generic nptl version with
2768         padding explicitly initialized.
2769         * sysdeps/sparc/sparc32/sem_post.c: Generic nptl version using
2770         padding for in-semaphore spinlock.
2771         * sysdeps/sparc/sparc32/sem_wait.c: Likewise.
2772         * sysdeps/sparc/sparc32/sem_trywait.c: Delete.
2773         * sysdeps/sparc/sparc32/sem_timedwait.c: Delete.
2774         * sysdeps/sparc/sparc32/sparcv9/sem_init.c: New file.
2775         * sysdeps/sparc/sparc32/sparcv9/sem_open.c: New file.
2776         * sysdeps/sparc/sparc32/sparcv9/sem_post.c: New file.
2777         * sysdeps/sparc/sparc32/sparcv9/sem_waitcommon.c: New file.
2778         * sysdeps/sparc/sparc32/sparcv9/sem_wait.c: Redirect to nptl
2779         version.
2780         * sysdeps/sparc/sparc32/sparcv9/sem_timedwait.c: Delete.
2781         * sysdeps/sparc/sparc32/sparcv9/sem_trywait.c: Delete.
2783 2015-01-30  H.J. Lu  <hongjiu.lu@intel.com>
2785         [BZ #17801]
2786         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
2787         Set the bit_AVX_Fast_Unaligned_Load bit for AVX2.
2788         * sysdeps/x86_64/multiarch/init-arch.h (bit_AVX_Fast_Unaligned_Load):
2789         New.
2790         (index_AVX_Fast_Unaligned_Load): Likewise.
2791         (HAS_AVX_FAST_UNALIGNED_LOAD): Likewise.
2792         * sysdeps/x86_64/multiarch/memcpy.S (__new_memcpy): Check the
2793         bit_AVX_Fast_Unaligned_Load bit instead of the bit_AVX_Usable bit.
2794         * sysdeps/x86_64/multiarch/memcpy_chk.S (__memcpy_chk): Likewise.
2795         * sysdeps/x86_64/multiarch/mempcpy.S (__mempcpy): Likewise.
2796         * sysdeps/x86_64/multiarch/mempcpy_chk.S (__mempcpy_chk): Likewise.
2797         * sysdeps/x86_64/multiarch/memmove.c (__libc_memmove): Replace
2798         HAS_AVX with HAS_AVX_FAST_UNALIGNED_LOAD.
2799         * sysdeps/x86_64/multiarch/memmove_chk.c (__memmove_chk): Likewise.
2801 2015-01-29  Andreas Schwab  <schwab@suse.de>
2803         * sysdeps/nptl/allocrtsig.c: Include <signal.h>.
2805 2015-01-29  Siddhesh Poyarekar <siddhesh@redhat.com>
2807         [BZ #17892]
2808         * nscd/nscd_stat.c (send_stats): Initialize DATA.
2810 2015-01-28  Martin Sebor  <msebor@redhat.com>
2812         * math/README.libm-test: Clarify. Add "How to read the test output."
2814 2015-01-28  Chris Metcalf  <cmetcalf@ezchip.com>
2816         * sysdeps/tile/tilegx/bits/atomic.h [!_LP64] (__HAVE_64B_ATOMICS):
2817         Define to 0.
2819 2015-01-28  Joseph Myers  <joseph@codesourcery.com>
2821         * sysdeps/mips/bits/atomic.h [_MIPS_SIM == _ABIN32]
2822         (__HAVE_64B_ATOMICS): Define to 0.
2824 2015-01-28  Adhemerval Zanellla  <azanella@linux.vnet.ibm.com>
2826         [BZ #17885]
2827         * sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Fix correct
2828         value to set as new flag.
2830         [BZ #16576]
2831         * sysdeps/powerpc/fpu/math_private.h [__CPU_HAS_FSQRT]: Remove define
2832         and use _ARCH_PPCSQ instead.
2833         (__ieee754_sqrt): Likewise.
2834         (__ieee754_sqrtf): Likewise.
2835         * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrt): Build only if
2836         _ARCH_PPCSQ is defined.
2837         (__ieee754_sqrt): Use _ARCH_PPCSQ to select wheter to use hardware
2838         fsqrt instruction.
2839         * sysdeps/powerpc/fpu/e_sqrtf.c (__ieee754_sqrtf): Build only if
2840         _ARCH_PPCSQ is defined.
2841         (__ieee754_sqrtf): Use _ARCH_PPCSQ to select wheter to use hardware
2842         fsqrts instruction.
2843         * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: Remove file.
2845 2015-01-27  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
2847         * iconv/loop.c: Suppress array out of bound warning caused by GCC
2848         bug (GCC BZ #64739).
2850 2015-01-25  Andreas Schwab  <schwab@linux-m68k.org>
2852         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h (lll_futex_requeue):
2853         Mark _retval as used.
2854         (lll_futex_wake_unlock): Likewise.
2855         (lll_futex_timed_wait_requeue_pi): Likewise.
2857         * sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h
2858         (atomic_compare_and_exchange_val_acq): Use uint32_t for the
2859         register variables.
2861         * sysdeps/m68k/m680x0/fpu/fraiseexcpt.c (__feraiseexcept): Use
2862         libm_hidden_def.
2864         * sysdeps/m68k/bits/byteswap.h (__bswap_16, __bswap_32)
2865         (__bswap_64): Mark as __always_inline.
2867 2015-01-25  Bram  <bug_rh@spam.wizbit.be>
2869         [BZ #15378]
2870         * elf/dl-load.c (open_path): Avoid writing to 'env_path_list'
2871         when none of the search directories exist.
2873 2015-01-24  Adhemerval Zanellla  <azanella@linux.vnet.ibm.com>
2875         [BZ #17869]
2876         * sysdeps/powerpc/powerpc64/power8/memset.S: Use power7 instead of
2877         power8 in .machine directive.
2879         [BZ #17868]
2880         * sysdeps/powerpc/powerpc64/dl-machine.h (resolve_ifunc): Force value
2881         set dependency from opd value.
2883 2015-01-23  H.J. Lu  <hongjiu.lu@intel.com>
2885         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
2886         Treat model numbers 0x4a/0x4d/0x5a/0x5d as Intel Silvermont
2887         architecture.
2889 2015-01-23  H.J. Lu  <hongjiu.lu@intel.com>
2891         [BZ #17870]
2892         * nptl/sem_post.c (__new_sem_post): Replace unsigned long int
2893         with uint64_t.
2894         * nptl/sem_waitcommon.c (__sem_wait_cleanup): Replace 1UL with
2895         (uint64_t) 1.
2896         (__new_sem_wait_fast): Replace unsigned long with uint64_t.
2897         (__new_sem_wait_slow): Replace unsigned long int with uint64_t.
2898         Replace 1UL with (uint64_t) 1.
2899         * sysdeps/nptl/internaltypes.h (new_sem): Replace unsigned long
2900         int with uint64_t.
2902 2015-01-23  Roland McGrath  <roland@hack.frob.com>
2904         * inet/if_index.c (if_nameindex): Add missing libc_hidden_weak.
2905         (if_freenameindex): Likewise.
2907         * resource/getrlimit64.c: Add missing libc_hidden_def.
2909 2015-01-22  Joseph Myers  <joseph@codesourcery.com>
2911         * soft-fp/op-common.h (_FP_ADD_INTERNAL): Declare labels with
2912         __label__.
2913         (_FP_FMA): Likewise.
2914         (_FP_TO_INT_ROUND): Likewise.
2915         (_FP_FROM_INT): Likewise.
2917 2015-01-21  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
2919         [BZ #16418]
2920         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c (__get_clockfreq):
2921         Make code racy and cancel safe.
2923 2015-01-21  Carlos O'Donell  <carlos@redhat.com>
2925         * sysdeps/arm/unwind-resume.h: Fix copyright year.
2926         * dlfcn/tst-rec-dlopen.c: Fix incorrect copyright year and
2927         attribution.
2929         * pwd/tst-getpw.c: Rewrite.
2931         [BZ #17702]
2932         * dlfcn/Makefile (tests): Add tst-rec-dlopen.
2933         (modules-names): Add moddummy1 and moddummy2.
2934         ($(objpfx)tst-rec-dlopen): Define.
2935         * dlfcn/moddummy1.c: New file.
2936         * dlfcn/moddummy2.c: New file.
2937         * dlfcn/tst-rec-dlopen.c: New file.
2938         * elf/dl-cache.c (_dl_load_cache_lookup):
2939         Return char*. Copy result with alloca/strcpy/strdup.
2940         * elf/dl-load.c (_dl_map_object): _dl_load_cached_lookup
2941         returns char*. Free cached. If not saving realname
2942         free cached.
2943         * elf/dl-open.c (dl_open_worker): Do not assert that
2944         _r_debug->r_state is RT_CONSISTENT.
2945         * sysdeps/generic/ldsodefs.h: _dl_load_cache_lookup
2946         returns char*.
2948 2015-01-21  Torvald Riegel  <triegel@redhat.com>
2949             Carlos O'Donell  <carlos@redhat.com>
2951         [BZ #12674]
2952         * nptl/sem_waitcommon.c: New file.
2953         * nptl/sem_wait.c: Include sem_waitcommon.c.
2954         (__sem_wait_cleanup, do_futex_wait): Remove.
2955         (__new_sem_wait): Adapt.
2956         (__new_sem_trywait): New function.
2957         (__old_sem_trywait): Moved here from nptl/sem_trywait.c.
2958         * nptl/sem_timedwait.c: Include sem_waitcommon.c.
2959         (__sem_wait_cleanup, do_futex_timed_wait): Remove.
2960         (sem_timedwait): Adapt.
2961         * nptl/sem_post.c (__new_sem_post): Adapt.
2962         (futex_wake): New function.
2963         (__old_sem_post): Add release MO fence.
2964         * nptl/sem_open.c (sem_open): Adapt.
2965         * nptl/sem_init.c (__new_sem_init): Adapt.
2966         (futex_private_if_supported): New function.
2967         * nptl/sem_getvalue.c (__new_sem_getvalue): Adapt.
2968         (__old_sem_getvalue): Add using previous code.
2969         * sysdeps/nptl/internaltypes.h: Adapt.
2970         * nptl/tst-sem13.c (do_test): Adapt.
2971         * nptl/tst-sem11.c (main): Adapt.
2972         * nptl/sem_trywait.c: Remove.
2973         * nptl/DESIGN-sem.txt: Remove.
2974         * nptl/Makefile (libpthread-routines): Remove sem_trywait.
2975         (gen-as-const-headers): Remove structsem.sym.
2976         * nptl/structsem.sym: Remove.
2977         * sysdeps/unix/sysv/linux/alpha/sem_post.c: Remove.
2978         * sysdeps/unix/sysv/linux/i386/i486/sem_post.S: Remove.
2979         * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: Remove.
2980         * sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: Remove.
2981         * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: Remove.
2982         * sysdeps/unix/sysv/linux/i386/i586/sem_post.S: Remove.
2983         * sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: Remove.
2984         * sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: Remove.
2985         * sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: Remove.
2986         * sysdeps/unix/sysv/linux/i386/i686/sem_post.S: Remove.
2987         * sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: Remove.
2988         * sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: Remove.
2989         * sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: Remove.
2990         * sysdeps/unix/sysv/linux/powerpc/sem_post.c: Remove.
2991         * sysdeps/unix/sysv/linux/sh/sem_post.S: Remove.
2992         * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Remove.
2993         * sysdeps/unix/sysv/linux/sh/sem_trywait.S: Remove.
2994         * sysdeps/unix/sysv/linux/sh/sem_wait.S: Remove.
2995         * sysdeps/unix/sysv/linux/x86_64/sem_post.S: Remove.
2996         * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: Remove.
2997         * sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: Remove.
2998         * sysdeps/unix/sysv/linux/x86_64/sem_wait.S: Remove.
3000 2015-01-20  Carlos O'Donell  <carlos@redhat.com>
3002         * INSTALL: Regenerated.
3004         * po/libc.pot: Regenerated.
3006 2015-01-18  Chung-Lin Tang  <cltang@codesourcery.com>
3007             Sandra Loosemore  <sandra@codesourcery.com>
3008             Andrew Jenner  <andrew@codesourcery.com>
3009             Joseph Myers  <joseph@codesourcery.com>
3010             Nathan Sidwell  <nathan@codesourcery.com>
3012         * NEWS: Mention new Nios II port.
3013         * sysdeps/nios2/Implies: New file.
3014         * sysdeps/nios2/Makefile: New file.
3015         * sysdeps/nios2/Subdirs: New file.
3016         * sysdeps/nios2/Versions: New file.
3017         * sysdeps/nios2/__longjmp.S: New file.
3018         * sysdeps/nios2/abort-instr.h: New file.
3019         * sysdeps/nios2/backtrace.c: New file.
3020         * sysdeps/nios2/bits/endian.h: New file.
3021         * sysdeps/nios2/bits/fenv.h: New file.
3022         * sysdeps/nios2/bits/link.h: New file.
3023         * sysdeps/nios2/bits/setjmp.h: New file.
3024         * sysdeps/nios2/bsd-_setjmp.S: New file.
3025         * sysdeps/nios2/bsd-setjmp.S: New file.
3026         * sysdeps/nios2/configure: New generated file.
3027         * sysdeps/nios2/configure.ac: New file.
3028         * sysdeps/nios2/crti.S: New file.
3029         * sysdeps/nios2/crtn.S: New file.
3030         * sysdeps/nios2/dl-init.c: New file.
3031         * sysdeps/nios2/dl-machine.h: New file.
3032         * sysdeps/nios2/dl-sysdep.h: New file.
3033         * sysdeps/nios2/dl-tls.h: New file.
3034         * sysdeps/nios2/dl-trampoline.S: New file.
3035         * sysdeps/nios2/gccframe.h: New file.
3036         * sysdeps/nios2/gmp-mparam.h: New file.
3037         * sysdeps/nios2/jmpbuf-offsets.h: New file.
3038         * sysdeps/nios2/jmpbuf-unwind.h: New file.
3039         * sysdeps/nios2/ldsodefs.h: New file.
3040         * sysdeps/nios2/libc-tls.c: New file.
3041         * sysdeps/nios2/libm-test-ulps: New file.
3042         * sysdeps/nios2/machine-gmon.h: New file.
3043         * sysdeps/nios2/math-tests.h: New file.
3044         * sysdeps/nios2/math_private.h: New file.
3045         * sysdeps/nios2/memusage.h: New file.
3046         * sysdeps/nios2/nptl/Makefile: New file.
3047         * sysdeps/nios2/nptl/bits/pthreadtypes.h: New file.
3048         * sysdeps/nios2/nptl/bits/semaphore.h: New file.
3049         * sysdeps/nios2/nptl/pthread_spin_lock.c: New file.
3050         * sysdeps/nios2/nptl/pthreaddef.h: New file.
3051         * sysdeps/nios2/nptl/tcb-offsets.sym: New file.
3052         * sysdeps/nios2/nptl/tls.h: New file.
3053         * sysdeps/nios2/preconfigure: New file.
3054         * sysdeps/nios2/s_fma.c: New file.
3055         * sysdeps/nios2/s_fmaf.c: New file.
3056         * sysdeps/nios2/setjmp.S: New file.
3057         * sysdeps/nios2/sfp-machine.h: New file.
3058         * sysdeps/nios2/sotruss-lib.c: New file.
3059         * sysdeps/nios2/stackguard-macros.h: New file.
3060         * sysdeps/nios2/stackinfo.h: New file.
3061         * sysdeps/nios2/start.S: New file.
3062         * sysdeps/nios2/sysdep.h: New file.
3063         * sysdeps/nios2/tls-macros.h: New file.
3064         * sysdeps/nios2/tst-audit.h: New file.
3065         * sysdeps/unix/sysv/linux/nios2/Implies: New file.
3066         * sysdeps/unix/sysv/linux/nios2/Makefile: New file.
3067         * sysdeps/unix/sysv/linux/nios2/Versions: New file.
3068         * sysdeps/unix/sysv/linux/nios2/arch-fork.h: New file.
3069         * sysdeps/unix/sysv/linux/nios2/bits/atomic.h: New file.
3070         * sysdeps/unix/sysv/linux/nios2/bits/mman.h: New file.
3071         * sysdeps/unix/sysv/linux/nios2/cacheflush.c: New file.
3072         * sysdeps/unix/sysv/linux/nios2/clone.S: New file.
3073         * sysdeps/unix/sysv/linux/nios2/configure: New generated file.
3074         * sysdeps/unix/sysv/linux/nios2/configure.ac: New file.
3075         * sysdeps/unix/sysv/linux/nios2/getcontext.S: New file.
3076         * sysdeps/unix/sysv/linux/nios2/kernel-features.h: New file.
3077         * sysdeps/unix/sysv/linux/nios2/kernel_rt_sigframe.h: New file.
3078         * sysdeps/unix/sysv/linux/nios2/makecontext.c: New file.
3079         * sysdeps/unix/sysv/linux/nios2/profil-counter.h: New file.
3080         * sysdeps/unix/sysv/linux/nios2/setcontext.S: New file.
3081         * sysdeps/unix/sysv/linux/nios2/shlib-versions: New file.
3082         * sysdeps/unix/sysv/linux/nios2/sigcontextinfo.h: New file.
3083         * sysdeps/unix/sysv/linux/nios2/swapcontext.S: New file.
3084         * sysdeps/unix/sysv/linux/nios2/sys/cachectl.h: New file.
3085         * sysdeps/unix/sysv/linux/nios2/sys/procfs.h: New file.
3086         * sysdeps/unix/sysv/linux/nios2/sys/ucontext.h: New file.
3087         * sysdeps/unix/sysv/linux/nios2/sys/user.h: New file.
3088         * sysdeps/unix/sysv/linux/nios2/syscall.S: New file.
3089         * sysdeps/unix/sysv/linux/nios2/sysdep-cancel.h: New file.
3090         * sysdeps/unix/sysv/linux/nios2/sysdep.S: New file.
3091         * sysdeps/unix/sysv/linux/nios2/sysdep.h: New file.
3092         * sysdeps/unix/sysv/linux/nios2/ucontext_i.sym: New file.
3093         * sysdeps/unix/sysv/linux/nios2/vfork.S: New file.
3094         * sysdeps/unix/sysv/linux/nios2/c++-types.data: New file.
3095         * sysdeps/unix/sysv/linux/nios2/ld.abilist: New file.
3096         * sysdeps/unix/sysv/linux/nios2/libBrokenLocale.abilist: New file.
3097         * sysdeps/unix/sysv/linux/nios2/libanl.abilist: New file.
3098         * sysdeps/unix/sysv/linux/nios2/libc.abilist: New file.
3099         * sysdeps/unix/sysv/linux/nios2/libcrypt.abilist: New file.
3100         * sysdeps/unix/sysv/linux/nios2/libdl.abilist: New file.
3101         * sysdeps/unix/sysv/linux/nios2/libm.abilist: New file.
3102         * sysdeps/unix/sysv/linux/nios2/libnsl.abilist: New file.
3103         * sysdeps/unix/sysv/linux/nios2/libpthread.abilist: New file.
3104         * sysdeps/unix/sysv/linux/nios2/libresolv.abilist: New file.
3105         * sysdeps/unix/sysv/linux/nios2/librt.abilist: New file.
3106         * sysdeps/unix/sysv/linux/nios2/libthread_db.abilist: New file.
3107         * sysdeps/unix/sysv/linux/nios2/libutil.abilist: New file.
3108         * sysdeps/unix/sysv/linux/nios2/localplt.data: New file.
3110 2015-01-16  Stefan Liebler  <stli@linux.vnet.ibm.com>
3112         [BZ #17844]
3113         * sysdeps/unix/sysv/linux/s390/s390-32/getutent.c
3114         (getutent): Use weak_alias in non SHARED case
3115         and default_symbol_version in SHARED case.
3116         * sysdeps/unix/sysv/linux/s390/s390-32/getutent_r.c
3117         (getutent_r, pututline): Likewise.
3118         * sysdeps/unix/sysv/linux/s390/s390-32/getutid.c
3119         (getutid): Likewise.
3120         * sysdeps/unix/sysv/linux/s390/s390-32/getutid_r.c
3121         (getutid_r): Likewise.
3122         * sysdeps/unix/sysv/linux/s390/s390-32/getutline.c
3123         (getutline): Likewise.
3124         * sysdeps/unix/sysv/linux/s390/s390-32/getutline_r.c
3125         (getutline_r): Likewise.
3126         * sysdeps/unix/sysv/linux/s390/s390-32/updwtmp.c
3127         (updwtmp): Likewise.
3129 2015-01-16  Stefan Liebler  <stli@linux.vnet.ibm.com>
3131         [BZ #17848]
3132         * sysdeps/s390/s390-32/memcmp.S
3133         (memcmp_g5): Rename to __memcmp_g5.
3134         * sysdeps/s390/s390-32/memcpy.S
3135         (memcpy_g5): Rename to __memcpy_g5.
3136         Jump to __memcpy_mvcle instead of memcpy_mvcle.
3137         (memcpy_mvcle) Rename to __memcpy_mvcle.
3138         * sysdeps/s390/s390-32/memset.S
3139         (memset_g5): Rename to __memset_g5.
3140         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c
3141         (IFUNC_RESOLVE): Prefix ifunc-resolve function
3142         and use prefixed functions.
3143         * sysdeps/s390/s390-32/multiarch/memcmp.S
3144         (memcmp_z196): Rename to __memcmp_z196.
3145         (memcmp_z10): Rename to __memcmp_z10.
3146         (memcmp): Set alias to __memcmp_g5.
3147         (bcmp): Set alias to __memcmp_g5.
3148         * sysdeps/s390/s390-32/multiarch/memcpy.S
3149         (memcpy_z196): Rename to __memcpy_z196.
3150         Jump to __memcpy_mvcle instead of memcpy_mvcle.
3151         (memcpy_z10): Rename to __memcpy_z10.
3152         Jump to __memcpy_mvcle instead of memcpy_mvcle.
3153         (memcpy): Set alias to __memcpy_g5.
3154         * sysdeps/s390/s390-32/multiarch/memset.S
3155         (memset_z196): Rename to __memset_z196.
3156         Jump to __memset_mvcle instead of memset_mvcle.
3157         (memset_z10): Rename to __memset_z10.
3158         Jump to __memset_mvcle instead of memset_mvcle.
3159         (memset_mvcle) Rename to __memset_mvcle.
3160         (memset): Set alias to __memset_g5.
3161         * sysdeps/s390/s390-64/memcmp.S
3162         (memcmp_z900): Rename to __memcmp_z900.
3163         * sysdeps/s390/s390-64/memcpy.S
3164         (memcpy_z900): Rename to __memcpy_z900.
3165         Jump to __memcpy_mvcle instead of memcpy_mvcle.
3166         (memcpy_mvcle) Rename to __memcpy_mvcle.
3167         * sysdeps/s390/s390-64/memset.S
3168         (memset_z900): Rename to __memset_z900.
3169         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c
3170         (IFUNC_RESOLVE): Prefix ifunc-resolve function
3171         and use prefixed functions.
3172         * sysdeps/s390/s390-64/multiarch/memcmp.S
3173         (memcmp_z196): Rename to __memcmp_z196.
3174         (memcmp_z10): Rename to __memcmp_z10.
3175         (memcmp): Set alias to __memcmp_z900.
3176         (bcmp): Set alias to __memcmp_z900.
3177         * sysdeps/s390/s390-64/multiarch/memcpy.S
3178         (memcpy_z196): Rename to __memcpy_z196.
3179         Jump to __memcpy_mvcle instead of memcpy_mvcle.
3180         (memcpy_z10): Rename to __memcpy_z10.
3181         Jump to __memcpy_mvcle instead of memcpy_mvcle.
3182         (memcpy): Set alias to __memcpy_z900.
3183         * sysdeps/s390/s390-64/multiarch/memset.S
3184         (memset_z196): Rename to __memset_z196.
3185         Jump to __memset_mvcle instead of memset_mvcle.
3186         (memset_z10): Rename to __memset_z10.
3187         Jump to __memset_mvcle instead of memset_mvcle.
3188         (memset_mvcle) Rename to __memset_mvcle.
3189         (memset): Set alias to __memset_z900.
3191 2015-01-14  Joseph Myers  <joseph@codesourcery.com>
3193         [BZ #17748]
3194         * sysdeps/powerpc/nofpu/feholdexcpt.c (__feholdexcept): Call
3195         __fesetenv instead of fesetenv.
3197 2015-01-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
3199         * sysdeps/s390/dl-tls.h [IS_IN (rtld)]: Define __tls_get_addr
3200         macro.
3202 2015-01-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
3204         * sysdeps/powerpc/powerpc64/power7/memcmp.S (memcmp): Fix performance
3205         regression on LE.
3207         * sysdeps/powerpc/powerpc64/multiarch/strncmp-power8.S: New file.
3208         * sysdeps/powerpc/powerpc64/power8/strncmp.S: New file.
3209         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]: Add
3210         strncmp-power8 object.
3211         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
3212         (__libc_ifunc_impl_list): Add __strncmp_power8 implementation.
3213         * sysdeps/powerpc/powerpc64/multiarch/strncmp.c (strncmp): Likewise.
3214         * NEWS: Update.
3216 2015-01-13  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
3217             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
3219         * sysdeps/powerpc/powerpc64/power7/strcmp.S (strcmp): Optimize
3220         trailing byte check.
3222 2015-01-13  David S. Miller  <davem@davemloft.net>
3224         * include/signal.h (__sigreturn): Guard with __USE_MISC.
3226 2015-01-13  Roland McGrath  <roland@hack.frob.com>
3228         * login/logout.c (logout): Use memset rather than bzero.
3229         * nis/nss_compat/compat-pwd.c (getpwent_next_file): Likewise.
3230         * nis/nss_compat/compat-spwd.c (getspent_next_file): Likewise.
3231         * resolv/gethnamaddr.c (gethostbyaddr): Use memcmp rather than bcmp.
3232         (_gethtbyaddr): Likewise.
3233         * locale/programs/simple-hash.c (bcopy): Macro removed.
3235 2015-01-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
3237         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
3238         Add strcmp-power8 object.
3239         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
3240         (__libc_ifunc_impl_list): Add __strcmp_power8 implementation.
3241         * sysdeps/powerpc/powerpc64/multiarch/strcmp-power8.S: New file.
3242         * sysdeps/powerpc/powerpc64/multiarch/strcmp.c (strcmp): Add
3243         __strcmp_power8 implementation.
3244         * sysdeps/powerpc/powerpc64/power8/strcmp.S: New file.
3245         * NEWS: Update.
3247         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
3248         Add strncpy-power8 and stpncpy-power8 objects.
3249         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
3250         (__libc_ifunc_impl_list): Add __strncpy_power8 and stpncpy_power8
3251         implementations.
3252         * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S: New file.
3253         * sysdeps/powerpc/powerpc64/multiarch/stpncpy.c (__stpncpy): Add
3254         __stpncpy_power8 implementation.
3255         * sysdeps/powerpc/powerpc64/multiarch/strncpy-power8.S: New file.
3256         * sysdeps/powerpc/powerpc64/multiarch/strncpy.c (strncpy): Add
3257         __strncpy_power8 implementation.
3258         * sysdeps/powerpc/powerpc64/power8/stpncpy.S: New file.
3259         * sysdeps/powerpc/powerpc64/power8/strncpy.S: New file.
3260         * NEWS: Update.
3262         * sysdeps/powerpc/powerpc64/multiarch/strncat-power7.c: New file.
3263         * sysdeps/powerpc/powerpc64/multiarch/strncat-power7.S: Remove file.
3264         * sysdeps/powerpc/powerpc64/power7/strncat.S: Likewise.
3266         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]: Add
3267         strncat-power8 object.
3268         * sysdeps/powerpc/powerpc64/multiarch/strcat.c (strcat): Add
3269         __strcat_power8 implementation.
3270         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
3271         (__libc_ifunc_impl_list): Add __strcat_power8 implementation.
3272         * sysdeps/powerpc/powerpc64/multiarch/strcat-power8.c: New file:
3273         optimized strcat for power8.
3275         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]: Add
3276         strcpy-power8 and stpcpy-power8 objects.
3277         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
3278         (__libc_ifunc_impl_list): Add __strcpy_power8 and __stpcpy_power8
3279         implementations.
3280         * sysdeps/powerpc/powerpc64/multiarch/stpcpy-power8.S: New file:
3281         multiarch stpcpy implementation for POWER8.
3282         * sysdeps/powerpc/powerpc64/multiarch/strcpy-power8.S: New file;
3283         multiarch strcpy implementation for POWER8.
3284         * sysdeps/powerpc/powerpc64/multiarch/strcpy.c (strcpy): Add
3285         __strcpy_power8 function.
3286         * sysdeps/powerpc/powerpc64/power8/stpcpy.S: New file: optimized
3287         stpcpy for POWER8.
3288         * sysdeps/powerpc/powerpc64/power8/strcpy.S: New file: optimized
3289         strcpy for POWER8.
3290         * NEWS: Update.
3292 2015-01-13  Leonhard Holz  <leonhard.holz@web.de>
3294         [BZ #16009]
3295         * string/strxfrm_l.c (STRXFRM): Allocate fixed size cache for
3296         weights and rules. Use do_xfrm_cached if data fits in cache,
3297         do_xfrm otherwise.  Moved former main loop to...
3298         * (do_xfrm_cached): New function.
3299         * (do_xfrm): Non-caching version of do_xfrm_cached. Uses
3300         find_idx, find_position and stack_push.
3301         * (find_idx): New function.
3302         * (find_position): Likewise.
3303         * localedata/sort-test.sh: Added test run for do_xfrm.
3304         * localedata/xfrm-test.c (main): Added command line option
3305         -nocache to run the test with strings that are too large for
3306         the STRXFRM cache.
3308 2015-01-13  Torvald Riegel  <triegel@redhat.com>
3310         * sysdeps/nptl/fork.c (__libc_fork): Provide address of futex
3311         variable to lll_futex_wake call, not the value itself.
3313 2015-01-12  Joseph Myers  <joseph@codesourcery.com>
3315         [BZ #17803]
3316         * sysdeps/ieee754/ldbl-96/s_scalblnl.c (twom63): Rename to
3317         twom64.  Adjust value to 0x1p-64L.
3318         (__scalblnl): Only return standard underflowing result for K <=
3319         -64 not K <= -63; adjust exponent for underflowing result by 64
3320         not 63.
3321         * math/libm-test.inc (scalbn_test_data): Add more tests.
3322         (scalbln_test_data): Likewise.
3324         [BZ #17834]
3325         * sysdeps/ieee754/ldbl-96/s_scalblnl.c (two63): Change value to
3326         0x1p63L.
3327         (__scalblnl): Get new exponent of adjusted subnormal value from ES
3328         not HX.
3329         * math/libm-test.inc (scalbn_test_data): Add more tests.
3330         (scalbln_test_data): Likewise.
3332 2015-01-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
3333             Stefani Seibold  <stefani@seibold.net>
3335         * sysdeps/unix/sysv/linux/x86_64/Makefile [$(subdir) = elf]
3336         (sysdep_routines): Add dl-vdso here, ...
3337         * sysdeps/unix/sysv/linux/x86/Makefile [$(subdir) = elf]
3338         (sysdep_routines): ... not here.
3339         * sysdeps/unix/sysv/linux/i386/gettimeofday.c: New file: set syscall
3340         fallback when vDSO is not presented.
3341         * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_clock_gettime):
3342         Define with libc_hidden_proto/libc_hidden_data_def definitions.
3343         (_libc_vdso_platform_setup): Rename to __vdso_platform_setup.
3344         * sysdeps/unix/sysv/linux/i386/init-first.c: New file: likewise.
3345         * sysdeps/unix/sysv/linux/i386/time.c: New file: likewise.
3346         * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Moved to ...
3347         * sysdeps/unix/sysv/linux/x86/libc-vdso.h: ... here.
3348         * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c: Move to ...
3349         * sysdeps/unix/sysv/linux/x86/clock_gettime.c: ... here.
3350         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c: Move to ...
3351         * sysdeps/unix/sysv/linux/x86/gettimeofday.c: ... here.  Also added
3352         fallback configurable symbol when vDSO is not available.
3353         * sysdeps/unix/sysv/linux/x86_64/time.c: Move to ...
3354         * sysdeps/unix/sysv/linux/x86/time.c: ... here.  Also refactored to
3355         be able to redefine fallback symbol when vDSO is not available.
3356         * sysdeps/unix/sysv/linux/x86_64/timespec_get.c: Move to ...
3357         * sysdeps/unix/sysv/linux/x86/timespec_get.c: ... here.
3359 2015-01-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
3361         * sysdeps/powerpc/nptl/tls.h (tcbhead_t): Add tm_capable field.
3362         (TLS_INIT_TP): Add tm_capable initialization.
3363         (TLS_DEFINE_INIT_TP): Likewise.
3364         (THREAD_GET_TM_CAPABLE): New file: get tm_capable field value from
3365         TCB.
3366         (THREAD_SET_TM_CAPABLE): New file: set tm_capable field value in TCB.
3367         * sysdeps/powerpc/nptl/tcb-offsets.sym (TM_CAPABLE): Add field offset
3368         calculation.
3369         * sysdeps/powerpc/powerpc32/sysdep.h (DO_CALL): Abort hardware
3370         transactoion is lock elision is built and TCB tm_capable is set.
3371         * sysdeps/powerpc/powerpc64/sysdep.h (DO_CALL): Likewise.
3372         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
3373         (INTERNAL_SYSCALL_NCS): Likewise.
3374         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
3375         (INTERNAL_SYSCALL_NCS): Likewise.
3376         * sysdeps/powerpc/sysdep.h (ABORT_TRANSACTION): New define.
3378         * sysdeps/powerpc/nptl/elide.h: New file: generic lock elision support
3379         for powerpc.
3380         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
3381         [pthread_rwlock_t] (__pad1): Change size to 7 bytes in 64 bits case
3382         and remove it for 32 bits case.
3383         [pthread_rwlock_t] (__rwelision): New field for lock elision.
3384         (__PTHREAD_RWLOCK_ELISION_EXTRA): Adjust for new lock elision field
3385         initialization.
3386         * sysdeps/unix/sysv/linux/powerpc/elision-conf.c (elision_init):
3387         Disable lock elision with rdlocks if elision is not available.
3389         * sysdeps/unix/sysv/linux/powerpc/Makefile [nptl]
3390         (sysdep_routines): Add lock elision objects.
3391         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
3392         [pthread_mutex_t] (__spins): Rework to add lock elision field.
3393         [pthread_mutex_t] (__elision): Add field.
3394         [__PTHREAD_SPINS]: Adjust to init lock elision field.
3395         * sysdeps/unix/sysv/linux/powerpc/elision-conf.c: New file: lock
3396         elision definitions for powerpc.
3397         * sysdeps/unix/sysv/linux/powerpc/elision-lock.c: New file:
3398         implementation of lock elision for powerpc.
3399         * sysdeps/unix/sysv/linux/powerpc/elision-timed.c: New file:
3400         implementation of timed lock elision for powerpc.
3401         * sysdeps/unix/sysv/linux/powerpc/elision-trylock.c: New file:
3402         implementation of trylock with lock elision for powerpc.
3403         * sysdeps/unix/sysv/linux/powerpc/elision-unlock.c: New file:
3404         implementaion of unlock for lock elision for powerpc.
3405         * sysdeps/unix/sysv/linux/powerpc/force-elision.h: New file:
3406         automatic enable lock elision for mutexes.
3407         * sysdeps/unix/sysv/linux/powerpc/htm.h: New file: hardware
3408         transaction execution definitions for powerpc.
3409         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: New file: add TLE
3410         definitions.
3411         * sysdeps/unix/sysv/linux/powerpc/pthread_mutex_cond_lock.c: New file.
3412         * sysdeps/unix/sysv/linux/powerpc/pthread_mutex_lock.c: Likewise.
3413         * sysdeps/unix/sysv/linux/powerpc/pthread_mutex_timedlock.c: Likewise.
3414         * sysdeps/unix/sysv/linux/powerpc/pthread_mutex_trylock.c: Likewise.
3415         * NEWS: Update.
3417 2015-01-09  Roland McGrath  <roland@hack.frob.com>
3419         * sysdeps/posix/shm-directory.c: Use <> rather than ""
3420         for #include of <shm-directory.h>.
3422 2015-01-09  Chung-Lin Tang  <cltang@codesourcery.com>
3424         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Remove MIN() and
3425         assign raw DT_REL[A]COUNT value to ranges[0].nrelative.
3427 2015-01-09  Matthew Fortune <matthew.fortune@imgtec.com>
3429         [BZ #17791]
3430         * NEWS: Mention bug fix.
3431         * sysdepsysdeps/unix/sysv/linux/microblaze/sys/user.h
3432         (PAGE_SHIFT, PAGE_SIZE, PAGE_MASK, NBPG, UPAGES): Remove.
3433         (HOST_TEXT_START_ADDR, HOST_STACK_END_ADDR): Remove.
3435 2015-01-09  Torvald Riegel <triegel@redhat.com>
3437         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Delete file.
3439 2015-01-09  Torvald Riegel <triegel@redhat.com>
3441         * sysdeps/unix/sysv/linux/microblaze/pthread_once.c: Delete file.
3443 2015-01-09  David Holsgrove  <david.holsgrove@xilinx.com>
3445         * sysdeps/microblaze/jmpbuf-unwind.h (_jmpbuf_sp): Declare SP as void
3446         pointer and cast to uintptr_t.
3448 2015-01-09  David Holsgrove  <david.holsgrove@xilinx.com>
3450         * sysdeps/microblaze/nptl/tls.h (__microblaze_get_thread_area): Function
3451         removed.
3452         (READ_THREAD_POINTER): Use __microblaze_thread_area instead.
3454 2015-01-09  David Holsgrove  <david.holsgrove@xilinx.com>
3456         * sysdeps/microblaze/nptl/tls.h (TLS_INIT_TP): Use NULL instead
3457         of 0.
3459 2015-01-08  Roland McGrath  <roland@hack.frob.com>
3461         * sysdeps/pthread/timer_routines.c: Fix <pthreadP.h> include to use
3462         <nptl/pthreadP.h> instead.
3463         * sysdeps/pthread/aio_notify.c: Include <signal.h> for raise decl.
3465         * signal/allocrtsig.c (RESERVED_SIGRT): New macro, defined to 0 if not
3466         already defined.
3467         [__SIGRTMIN] (init): Function removed.
3468         [__SIGRTMIN] (initialized): Variable removed.
3469         [!__SIGRTMIN] (current_rtmin, current_rtmax): Variables removed.
3470         [__SIGRTMIN] (current_rtmin, current_rtmax): Initialize to
3471         __SIGRTMIN + RESERVED_SIGRT and __SIGRTMAX, respectively.
3472         (__libc_current_sigrtmin) [__SIGRTMIN]: Don't call init.
3473         (__libc_current_sigrtmin) [!__SIGRTMIN]: Just return -1.
3474         (__libc_current_sigrtmin): Add __libc_current_sigrtmin_private alias.
3475         (__libc_current_sigrtmax) [__SIGRTMIN]: Don't call init.
3476         (__libc_current_sigrtmax) [!__SIGRTMIN]: Just return -1.
3477         (__libc_current_sigrtmax): Add __libc_current_sigrtmax_private alias.
3478         (__libc_allocate_rtsig) [__SIGRTMIN]: Don't call init.
3479         (__libc_allocate_rtsig): Add __libc_allocate_rtsig_private alias.
3480         * sysdeps/nptl/allocrtsig.c: New file.
3481         * sysdeps/unix/sysv/linux/allocrtsig.c: File removed.
3482         * sysdeps/unix/sysv/linux/testrtsig.h: File removed.
3483         * sysdeps/generic/testrtsig.h: File removed.
3485         * nptl/pthread_sigmask.c [SIGCANCEL || SIGTIMER || SIGSETXID]: #error.
3486         (pthread_sigmask): Call sigprocmask, not __sigprocmask.
3488         * nptl/nptl-init.c (pthread_functions): Conditionalize
3489         .ptr__nptl_setxid initialization on [SIGSETXID].
3491         * sysdeps/nptl/sys/procfs.h: New file.
3492         * nptl_db/Makefile (headers): Add it.
3493         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Don't add it.
3495         * nptl/pthreadP.h (check_cpuset_attr): Moved ...
3496         * sysdeps/unix/sysv/linux/check-cpuset.h: ... to this new file.
3497         * nptl/pthread_attr_setaffinity.c: Include it.
3498         * nptl/pthread_setattr_default_np.c: Likewise.
3499         * nptl/check-cpuset.h: New file.
3501 2015-01-08  Richard Henderson  <rth@redhat.com>
3503         * elf/Makefile (CFLAGS-tst-execstack-mod.c): Add -Wno-trampolines
3504         (CFLAGS-tst-execstack-prog.c): Likewise.
3505         * nptl/Makefile (CFLAGS-tst-execstack-mod.c): Likewise.
3507 2015-01-08  Chung-Lin Tang  <cltang@codesourcery.com>
3508             Sandra Loosemore  <sandra@codesourcery.com>
3509             Andrew Jenner  <andrew@codesourcery.com>
3510             Joseph Myers  <joseph@codesourcery.com>
3511             Nathan Sidwell  <nathan@codesourcery.com>
3513         * elf/elf.h (EM_ALTERA_NIOS2): New machine number for Altera Nios II.
3514         (DT_NIOS2_GP): New dynamic entry type for Nios II _gp address.
3515         (R_NIOS2_NONE,R_NIOS2_S16,R_NIOS2_U16): Define Nios II relocations.
3516         (R_NIOS2_PCREL16,R_NIOS2_CALL26,R_NIOS2_IMM5): Likewise.
3517         (R_NIOS2_CACHE_OPX,R_NIOS2_IMM6,R_NIOS2_IMM8,R_NIOS2_HI16): Likewise.
3518         (R_NIOS2_LO16,R_NIOS2_HIADJ16,R_NIOS2_BFD_RELOC_32): Likewise.
3519         (R_NIOS2_BFD_RELOC_16,R_NIOS2_BFD_RELOC_8,R_NIOS2_GPREL): Likewise.
3520         (R_NIOS2_GNU_VTINHERIT,R_NIOS2_GNU_VTENTRY,R_NIOS2_UJMP): Likewise.
3521         (R_NIOS2_CJMP,R_NIOS2_CALLR,R_NIOS2_ALIGN,R_NIOS2_GOT16): Likewise.
3522         (R_NIOS2_CALL16,R_NIOS2_GOTOFF_LO,R_NIOS2_GOTOFF_HA): Likewise.
3523         (R_NIOS2_PCREL_LO,R_NIOS2_PCREL_HA,R_NIOS2_TLS_GD16): Likewise.
3524         (R_NIOS2_TLS_LDM16,R_NIOS2_TLS_LDO16,R_NIOS2_TLS_IE16): Likewise.
3525         (R_NIOS2_TLS_LE16,R_NIOS2_TLS_DTPMOD,R_NIOS2_TLS_DTPREL): Likewise.
3526         (R_NIOS2_TLS_TPREL,R_NIOS2_COPY,R_NIOS2_GLOB_DAT): Likewise.
3527         (R_NIOS2_JUMP_SLOT,R_NIOS2_RELATIVE,R_NIOS2_GOTOFF): Likewise.
3528         (R_NIOS2_CALL26_NOAT,R_NIOS2_GOT_LO,R_NIOS2_GOT_HA): Likewise.
3529         (R_NIOS2_CALL_LO,R_NIOS2_CALL_HA): Likewise.
3531 2015-01-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
3533         * sysdeps/unix/sysv/linux/futimens.c (futimens): Use address of first
3534         timespec struct member in syscall macro.
3535         * sysdeps/unix/sysv/linux/utimensat.c (utimensat): Likewise.
3536         * sysdeps/unix/sysv/linux/futimesat.c (futimesat): Use address of
3537         first timeval struct member in syscall macro.
3538         * sysdeps/unix/sysv/linux/utimes.c (__utimeS): Likewise.
3540 2015-01-07  Joseph Myers  <joseph@codesourcery.com>
3542         [BZ #17748]
3543         * include/fenv.h (__feupdateenv): Use libm_hidden_proto.
3544         * math/feupdateenv.c (__feupdateenv): Use libm_hidden_def.
3545         * sysdeps/aarch64/fpu/feupdateenv.c (feupdateenv): Rename to
3546         __feupdateenv and define as weak alias of __feupdateenv.  Use
3547         libm_hidden_weak.
3548         * sysdeps/alpha/fpu/feupdateenv.c (__feupdateenv): Use
3549         libm_hidden_def.
3550         * sysdeps/arm/feupdateenv.c (feupdateenv): Rename to __feupdateenv
3551         and define as weak alias of __feupdateenv.  Use libm_hidden_weak.
3552         * sysdeps/hppa/fpu/feupdateenv.c (feupdateenv): Likewise.
3553         * sysdeps/i386/fpu/feupdateenv.c (__feupdateenv): Use
3554         libm_hidden_def.
3555         * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Rename to
3556         __feupdateenv and define as weak alias of __feupdateenv.  Use
3557         libm_hidden_weak.
3558         * sysdeps/m68k/fpu/feupdateenv.c (__feupdateenv): Use
3559         libm_hidden_def.
3560         * sysdeps/mips/fpu/feupdateenv.c (feupdateenv): Rename to
3561         __feupdateenv and define as weak alias of __feupdateenv.  Use
3562         libm_hidden_weak.
3563         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Use
3564         libm_hidden_def.
3565         * sysdeps/powerpc/nofpu/feupdateenv.c (__feupdateenv): Likewise.
3566         * sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c
3567         (__feupdateenv): Likewise.
3568         * sysdeps/s390/fpu/feupdateenv.c (feupdateenv): Rename to
3569         __feupdateenv and define as weak alias of __feupdateenv.  Use
3570         libm_hidden_weak.
3571         * sysdeps/sh/sh4/fpu/feupdateenv.c (feupdateenv): Likewise.
3572         * sysdeps/sparc/fpu/feupdateenv.c (__feupdateenv): Use
3573         libm_hidden_def.
3574         * sysdeps/tile/math_private.h (__feupdateenv): New inline
3575         function.
3576         * sysdeps/x86_64/fpu/feupdateenv.c (__feupdateenv): Use
3577         libm_hidden_def.
3578         * sysdeps/generic/math_private.h (default_libc_feupdateenv): Call
3579         __feupdateenv instead of feupdateenv.
3580         (default_libc_feupdateenv_test): Likewise.
3581         (libc_feresetround_ctx): Likewise.
3583 2015-01-07  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
3585         * sysdeps/unix/sysv/linux/mips/pread.c (__libc_pread): Fix function
3586         prototype.
3588 2015-01-07  Chris Metcalf  <cmetcalf@ezchip.com>
3590         * posix/regcomp.c (parse_bracket_exp): Initialize type to
3591         COLL_SYM in a couple of places to avoid uninitialized variable
3592         wanings on tilegx gcc 4.8.2.
3594 2015-01-07  Richard Earnshaw  <rearnsha@arm.com>
3596         * sysdeps/aarch64/strcpy.S: New file.
3597         * sysdeps/aarch64/stpcpy.S: New file.
3598         * NEWS: Updated.
3600 2015-01-07  Richard Earnshaw  <rearnsha@arm.com>
3602         * sysdeps/aarch64/strrchr.S: New file.
3603         * NEWS: Updated.
3605 2015-01-07  Eric Biggers  <ebiggers3@gmail.com>
3607         [BZ #17658]
3608         * stdlib/setenv.c: Fix memory leak when setting large,
3609         duplicate string.
3611 2015-01-06  Vladimir A. Nazarenko  <naszar@ya.ru>
3613         [BZ #17273]
3614         * misc/mntent_r.c (__getmntent_r): Cut off trailing spaces
3615         and tabs from buffer before parsing fstab entry.
3616         * misc/tst-mntent.c (main): Add test for mount entry with
3617         trailing spaces and tabs.
3619 2015-01-06  Joseph Myers  <joseph@codesourcery.com>
3621         [BZ #17748]
3622         * include/fenv.h (__fesetround): Declare.  Use libm_hidden_proto.
3623         * math/fesetround.c (fesetround): Rename to __fesetround and
3624         define as weak alias of __fesetround.  Use libm_hidden_weak.
3625         * sysdeps/aarch64/fpu/fesetround.c (fesetround): Likewise.
3626         * sysdeps/alpha/fpu/fesetround.c (fesetround): Likewise.
3627         * sysdeps/arm/fesetround.c (fesetround): Likewise.
3628         * sysdeps/hppa/fpu/fesetround.c (fesetround): Likewise.
3629         * sysdeps/i386/fpu/fesetround.c (fesetround): Likewise.
3630         * sysdeps/ia64/fpu/fesetround.c (fesetround): Likewise.
3631         * sysdeps/m68k/fpu/fesetround.c (fesetround): Likewise.
3632         * sysdeps/mips/fpu/fesetround.c (fesetround): Likewise.
3633         * sysdeps/powerpc/fpu/fenv_libc.h (__fesetround): Rename to
3634         __fesetround_inline.
3635         * sysdeps/powerpc/fpu/fenv_private.h (libc_fesetround_ppc): Call
3636         __fesetround_inline instead of __fesetround.
3637         * sysdeps/powerpc/fpu/fesetround.c (fesetround): Rename to
3638         __fesetround and define as weak alias of __fesetround.  Use
3639         libm_hidden_weak.  Call __fesetround_inline instead of
3640         __fesetround.
3641         * sysdeps/powerpc/nofpu/fesetround.c (fesetround): Rename to
3642         __fesetround and define as weak alias of __fesetround.  Use
3643         libm_hidden_weak.
3644         * sysdeps/powerpc/powerpc32/e500/nofpu/fesetround.c (fesetround):
3645         Likewise.
3646         * sysdeps/s390/fpu/fesetround.c (fesetround): Likewise.
3647         * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Likewise.
3648         * sysdeps/sparc/fpu/fesetround.c (fesetround): Likewise.
3649         * sysdeps/tile/math_private.h (__fesetround): New inline function.
3650         * sysdeps/x86_64/fpu/fesetround.c (fesetround): Rename to
3651         __fesetround and define as weak alias of __fesetround.  Use
3652         libm_hidden_weak.
3653         * sysdeps/generic/math_private.h (default_libc_fesetround): Call
3654         __fesetround instead of fesetround.
3655         (default_libc_feholdexcept_setround): Likewise.
3656         (libc_feholdsetround_ctx): Likewise.
3657         (libc_feholdsetround_noex_ctx): Likewise.
3659         [BZ #17748]
3660         * include/fenv.h (__fesetenv): Use libm_hidden_proto.
3661         * math/fesetenv.c (__fesetenv): Use libm_hidden_def.
3662         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Rename to __fesetenv
3663         and define as weak alias of __fesetenv.  Use libm_hidden_weak.
3664         * sysdeps/alpha/fpu/fesetenv.c (__fesetenv): Use libm_hidden_def.
3665         * sysdeps/arm/fesetenv.c (fesetenv): Rename to __fesetenv and
3666         define as weak alias of __fesetenv.  Use libm_hidden_weak.
3667         * sysdeps/hppa/fpu/fesetenv.c (fesetenv): Likewise.
3668         * sysdeps/i386/fpu/fesetenv.c (__fesetenv): Use libm_hidden_def.
3669         * sysdeps/ia64/fpu/fesetenv.c (fesetenv): Rename to __fesetenv and
3670         define as weak alias of __fesetenv.  Use libm_hidden_weak.
3671         * sysdeps/m68k/fpu/fesetenv.c (__fesetenv): Use libm_hidden_def.
3672         * sysdeps/mips/fpu/fesetenv.c (fesetenv): Rename to __fesetenv and
3673         define as weak alias of __fesetenv.  Use libm_hidden_weak.
3674         * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Use
3675         libm_hidden_def.
3676         * sysdeps/powerpc/nofpu/fesetenv.c (__fesetenv): Likewise.
3677         * sysdeps/powerpc/powerpc32/e500/nofpu/fesetenv.c (__fesetenv):
3678         Likewise.
3679         * sysdeps/s390/fpu/fesetenv.c (fesetenv): Rename to __fesetenv and
3680         define as weak alias of __fesetenv.  Use libm_hidden_weak.
3681         * sysdeps/sh/sh4/fpu/fesetenv.c (fesetenv): Likewise.
3682         * sysdeps/sparc/fpu/fesetenv.c (__fesetenv): Use libm_hidden_def.
3683         * sysdeps/tile/math_private.h (__fesetenv): New inline function.
3684         * sysdeps/x86_64/fpu/fesetenv.c (fesetenv): Rename to __fesetenv
3685         and define as weak alias of __fesetenv.  Use libm_hidden_weak.
3686         * sysdeps/generic/math_private.h (default_libc_fesetenv): Use
3687         __fesetenv instead of fesetenv.
3688         (libc_feresetround_noex_ctx): Likewise.
3689         * sysdeps/alpha/fpu/feupdateenv.c (__feupdateenv): Likewise.
3690         * sysdeps/hppa/fpu/feupdateenv.c (feupdateenv): Likewise.
3691         * sysdeps/i386/fpu/feupdateenv.c (__feupdateenv): Likewise.
3692         * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Likewise.
3693         * sysdeps/m68k/fpu/feupdateenv.c (__feupdateenv): Likewise.
3694         * sysdeps/mips/fpu/feupdateenv.c (feupdateenv): Likewise.
3695         * sysdeps/powerpc/nofpu/feupdateenv.c (__feupdateenv): Likewise.
3696         * sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c
3697         (__feupdateenv): Likewise.
3698         * sysdeps/s390/fpu/feupdateenv.c (feupdateenv): Likewise.
3699         * sysdeps/sh/sh4/fpu/feupdateenv.c (feupdateenv): Likewise.
3700         * sysdeps/sparc/fpu/feupdateenv.c (__feupdateenv): Likewise.
3701         * sysdeps/x86_64/fpu/feupdateenv.c (__feupdateenv): Likewise.
3703 2015-01-06  Aurelien Jarno  <aurelien@aurel32.net>
3705         [BZ #17806]
3706         * resolv/res_init.c (__res_iclose): Only clear nsinit if the
3707         addresses have been freed.
3709 2015-01-06  Aurelien Jarno  <aurelien@aurel32.net>
3711         * resolv/res_init.c (__res_vinit): Improve comments about nserv
3712         and nservall.
3714 2015-01-06  Ondřej Bílka  <neleai@seznam.cz>
3716         * sysdeps/unix/sysv/linux/check_pf.c (make_request):
3717         Clean up check_pf allocation pattern. addresses
3719 2015-01-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
3721         * nptl/pthread_cancel.c (pthread_cancel): Use ANSI prototype.
3722         * nptl/pthread_cond_timedwait.c (__pthread_cond_timedwait): Likewise.
3723         * nptl/pthread_cond_wait.c (__pthread_cond_wait): Likewise.
3724         * nptl/pthread_exit.c (__pthread_exit): Likewise.
3725         * nptl/pthread_join.c (pthread_join): Likewise.
3726         * nptl/pthread_timedjoin.c (pthread_timedjoin_np): Likewise.
3727         * sysdeps/posix/waitid.c (__waitid): Likewise.
3728         * sysdeps/unix/sysv/linux/arm/pread.c (__libc_pread): Likewise.
3729         * sysdeps/unix/sysv/linux/arm/pread64.c (__libc_pread64): Likewise.
3730         * sysdeps/unix/sysv/linux/arm/pwrite.c (__libc_pwrite): Likewise.
3731         * sysdeps/unix/sysv/linux/arm/pwrite64.c (__libc_pwrite64): Likewise.
3732         * sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c (__libc_pread):
3733         Likewise.
3734         * sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c
3735         (__libc_pread64): Likewise.
3736         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c
3737         (__libc_pwrite): Likewise.
3738         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c
3739         (__libc_pwrite64): Likewsie.
3740         * sysdeps/unix/sysv/linux/mips/pread.c (__libc_pread): Likewise.
3741         * sysdeps/unix/sysv/linux/mips/pread64.c (__libc_pread64): Likewise.
3742         * sysdeps/unix/sysv/linux/mips/pwrite.c (__libc_pwrite): Likewise.
3743         * sysdeps/unix/sysv/linux/mips/pwrite64.c (__libc_pwrite64): Likewise.
3744         * sysdeps/unix/sysv/linux/msgrcv.c (__libc_msgrcv): Likewise.
3745         * sysdeps/unix/sysv/linux/msgsnd.c (__libc_msgsnd): Likewise.
3746         * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Likewise.
3747         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c (__libc_pread):
3748         Likewise.
3749         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c
3750         (__libc_pread64): Likewise.
3751         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c (__libc_pwrite):
3752         Likewise.
3753         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c
3754         (__libc_pwrite64): Likewise.
3755         * sysdeps/unix/sysv/linux/pread.c (__libc_pread): Likewise.
3756         * sysdeps/unix/sysv/linux/pread64.c (__libc_pread64): Likewise.
3757         * sysdeps/unix/sysv/linux/preadv.c (PREADV): Likewise.
3758         * sysdeps/unix/sysv/linux/pthread_kill.c (__pthread_kill): Likewise.
3759         * sysdeps/unix/sysv/linux/pwrite.c (__libc_pwrite): Likewise.
3760         * sysdeps/unix/sysv/linux/pwrite64.c (__libc_pwrite64): Likewise.
3761         * sysdeps/unix/sysv/linux/pwritev.c (__libc_pwritev): Likewise.
3762         * sysdeps/unix/sysv/linux/sh/pread.c (__libc_pread): Likewise.
3763         * sysdeps/unix/sysv/linux/sh/pread64.c (__libc_pread64): Likewise.
3764         * sysdeps/unix/sysv/linux/sh/pwrite.c (__libc_pwrite): Likewise.
3765         * sysdeps/unix/sysv/linux/sh/pwrite64.c (__libc_write64): Likewise.
3766         * sysdeps/unix/sysv/linux/sigsuspend.c (__sigsuspend): Likewise.
3767         * sysdeps/unix/sysv/linux/sigtimedwait.c (__sigtimedwait): Likewise.
3768         * sysdeps/unix/sysv/linux/sigwait.c (__sigwait): Likewise.
3769         * sysdeps/unix/sysv/linux/sigwaitinfo.c (__sigwaitinfo): Likewise.
3770         * sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c (__libc_msgrcv):
3771         Likewise.
3773 2015-01-06  Andrew Senkevich  <andrew.n.senkevich@gmail.com>
3775         * math/Makefile (CFLAGS-test-float.c): Remove -frounding-math.
3776         (CFLAGS-test-double.c): Likewise.
3777         (CFLAGS-test-ldouble.c): Likewise.
3778         (CPPFLAGS-test-ifloat.c): Likewise.
3779         (CPPFLAGS-test-idouble.c): Likewise.
3780         (CPPFLAGS-test-ildoubl.c): Likewise.
3781         (CFLAGS-test-test-fenv.c): Remove variable.
3782         (CFLAGS-test-misc.c): Likewise.
3784 2015-01-06  H.J. Lu  <hongjiu.lu@intel.com>
3786         [BZ #17797]
3787         * bits/time.h (CLOCKS_PER_SEC): Changed to ((clock_t) 1000000).
3788         * sysdeps/unix/sysv/linux/bits/time.h (CLOCKS_PER_SEC): Likewise.
3789         * sysdeps/unix/sysv/linux/clock.c (clock): _Static_assert
3790         CLOCKS_PER_SEC == 1000000.
3791         * time/clocktest.c (main): Replace %ld with %jd and cast to
3792         intmax_t.
3794 2015-01-05  Roland McGrath  <roland@hack.frob.com>
3796         * sysdeps/generic/unwind-resume.h: New file.
3797         * sysdeps/gnu/unwind-resume.c: Include it.
3798         (libgcc_s_personality): Use PERSONALITY_PROTO macro for the prototype.
3799         (__gcc_personality_v0): Likewise, and PERSONALITY_ARGS for the callee
3800         argument list.
3801         (libgcc_s_resume): Variable renamed to __libgcc_s_resume, made hidden
3802         global rather than static.
3803         (_Unwind_Resume): Update user.
3804         Conditionalize definition on [!HAVE_ARCH_UNWIND_RESUME].
3805         (init): Likewise.  Renamed to __libgcc_s_init, made hidden global
3806         rather than static.  Add __attribute__ ((cold)).
3807         (_Unwind_Resume, __gcc_personality_v0): Update callers.
3808         * sysdeps/nptl/unwind-forcedunwind.c: Likewise.
3809         * sysdeps/arm/arm-unwind-resume.S: New file.
3810         * sysdeps/arm/rt-arm-unwind-resume.S: New file.
3811         * sysdeps/arm/pt-arm-unwind-resume.S: New file.
3812         * sysdeps/arm/Makefile [$(subdir) = csu]
3813         (sysdep_routines, shared-only-routines): Add arm-unwind-resume.
3814         [$(subdir) = rt] (librt-sysdep_routines, librt-shared-only-routines):
3815         Add rt-arm-unwind-resume.
3816         [$(subdir) = nptl]
3817         (libpthread-sysdep_routines, libpthread-shared-only-routines):
3818         Add pt-arm-unwind-resume.
3819         * sysdeps/unix/sysv/linux/arm/unwind-resume.c: File removed.
3820         * sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c: File removed.
3822 2015-01-05  Joseph Myers  <joseph@codesourcery.com>
3824         [BZ #17748]
3825         * include/fenv.h (__feholdexcept): Declare.  Use
3826         libm_hidden_proto.
3827         * math/feholdexcpt.c (feholdexcept): Rename to __feholdexcept and
3828         define as weak alias of __feholdexcept.  Use libm_hidden_weak.
3829         * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept): Likewise.
3830         * sysdeps/alpha/fpu/feholdexcpt.c (feholdexcept): Likewise.
3831         * sysdeps/arm/feholdexcpt.c (feholdexcept): Likewise.
3832         * sysdeps/hppa/fpu/feholdexcpt.c (feholdexcept): Likewise.
3833         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Likewise.
3834         * sysdeps/ia64/fpu/feholdexcpt.c (feholdexcept): Likewise.
3835         * sysdeps/m68k/fpu/feholdexcpt.c (feholdexcept): Likewise.
3836         * sysdeps/mips/fpu/feholdexcpt.c (feholdexcept): Likewise.
3837         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Likewise.
3838         * sysdeps/powerpc/nofpu/feholdexcpt.c (feholdexcept): Likewise.
3839         * sysdeps/powerpc/powerpc32/e500/nofpu/feholdexcpt.c
3840         (feholdexcept): Likewise.
3841         * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Likewise.
3842         * sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Likewise.
3843         * sysdeps/sparc/fpu/feholdexcpt.c (feholdexcept): Likewise.
3844         * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Likewise.
3845         * sysdeps/generic/math_private.h (default_libc_feholdexcept): Use
3846         __feholdexcept instead of feholdexcept.
3847         (default_libc_feholdexcept_setround): Likewise.
3849 2015-01-05  Steve Ellcey  <sellcey@imgtec.com>
3851         * sysdeps/mips/memset.S (memset): Modify for mips32r6/mips64r6
3852         to avoid using stl/str to align destination.
3854 2015-01-05  Steve Ellcey  <sellcey@imgtec.com>
3856         * sysdeps/mips/memcpy.S: Add support for mips32r6/mips64r6.
3858 2015-01-05  Joseph Myers  <joseph@codesourcery.com>
3860         [BZ #17796]
3861         * sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise.c
3862         [!SHLIB_COMPAT(libc, GLIBC_2_2, GLIBC_2_3_3)] (posix_fadvise64):
3863         Define as weak alias not strong alias.
3865 2015-01-05  Steve Ellcey  <sellcey@imgtec.com>
3867         * sysdeps/mips/dl-machine.h (elf_machine_load_address): Replace
3868         bltzal with addiupc.
3869         (RTLD_START): Ditto.
3871 2015-01-05  Chris Metcalf  <cmetcalf@ezchip.com>
3873         * sysdeps/unix/sysv/linux/tile/bits/libc-vdso.h: Fix return type
3874         for __vdso_* functions in declarations.
3875         * sysdeps/unix/sysv/linux/tile/init-first.c: Likewise for
3876         definitions.
3877         * sysdeps/unix/sysv/linux/tile/sysdep.h (INLINE_VSYSCALL,
3878         INTERNAL_VSYSCALL): Use struct return types to check for error.
3880         * sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c [!defined _LP64
3881         && REGISTER_CAST_INT32_TO_INT64]: Provide explicit lround()
3882         function with cast from llround().
3883         * sysdeps/tile/sysdep.h (REGISTER_CAST_INT32_TO_INT64): Define.
3884         * sysdeps/x86_64/x32/sysdep.h (REGISTER_CAST_INT32_TO_INT64):
3885         Define.
3887 2015-01-05  Joseph Myers  <joseph@codesourcery.com>
3889         [BZ #17793]
3890         * sysdeps/unix/sysv/linux/arm/posix_fadvise64.c (posix_fadvise64):
3891         Define as weak alias not strong alias.
3893         [BZ #17635]
3894         * ctype/ctype-c99.c: New file.  isblank implementation moved from
3895         ...
3896         * ctype/ctype-extn.c: ... here.
3897         (__isblank_l): Move to ...
3898         * ctype/ctype-c99_l.c: ... here.  New file.
3899         * ctype/Makefile (routines): Add ctype-c99 and ctype-c99_l.
3900         * conform/Makefile (test-xfail-ISO99/ctype.h/linknamespace):
3901         Remove variable.
3902         (test-xfail-ISO11/ctype.h/linknamespace): Likewise.
3903         (test-xfail-XPG3/ctype.h/linknamespace): Likewise.
3904         (test-xfail-XPG4/ctype.h/linknamespace): Likewise.
3905         (test-xfail-UNIX98/ctype.h/linknamespace): Likewise.
3906         (test-xfail-POSIX2008/ctype.h/linknamespace): Likewise.
3908         [BZ #17777]
3909         * sysdeps/unix/sysv/linux/wordsize-64/posix_fadvise.c
3910         (posix_fadvise64): Define as weak alias not strong alias.
3911         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
3912         (posix_fallocate64): Likewise.
3913         * conform/Makefile (test-xfail-XOPEN2K/fcntl.h/linknamespace):
3914         Remove variable.
3915         (test-xfail-XOPEN2K/mqueue.h/linknamespace): Likewise.
3916         (test-xfail-POSIX2008/fcntl.h/linknamespace): Likewise.
3917         (test-xfail-POSIX2008/mqueue.h/linknamespace): Likewise.
3918         (test-xfail-XOPEN2K8/fcntl.h/linknamespace): Likewise.
3919         (test-xfail-XOPEN2K8/mqueue.h/linknamespace): Likewise.
3921 2015-01-05  Matthew Fortune  <matthew.fortune@imgtec.com>
3923         [BZ #16191]
3924         * NEWS: Mention bug fix.
3925         * sysdeps/unix/sysv/linux/mips/sys/user.h (PAGE_SHIFT): Remove.
3926         (PAGE_SIZE, PAGE_MASK, NBPG, UPAGES): Likewise.
3927         (HOST_TEXT_START_ADDR, HOST_DATA_START_ADDR): Likewise.
3928         (HOST_STACK_END_ADDR): Likewise.
3930 2015-01-02  Joseph Myers  <joseph@codesourcery.com>
3932         [BZ #17748]
3933         * include/fenv.h (__fegetround): Declare.  Use libm_hidden_proto.
3934         * math/fegetround.c (fegetround): Rename to __fegetround and
3935         define as weak alias of __fegetround.  Use libm_hidden_weak.
3936         * sysdeps/aarch64/fpu/fegetround.c (fegetround): Likewise.
3937         * sysdeps/alpha/fpu/fegetround.c (fegetround): Likewise.
3938         * sysdeps/arm/fegetround.c (fegetround): Likewise.
3939         * sysdeps/hppa/fpu/fegetround.c (fegetround): Likewise.
3940         * sysdeps/i386/fpu/fegetround.c (fegetround): Likewise.
3941         * sysdeps/ia64/fpu/fegetround.c (fegetround): Likewise.
3942         * sysdeps/m68k/fpu/fegetround.c (fegetround): Likewise.
3943         * sysdeps/mips/fpu/fegetround.c (fegetround): Likewise.
3944         * sysdeps/powerpc/fpu/fegetround.c (fegetround): Likewise.
3945         Undefine after rather than before function definition; use
3946         parentheses around function name in definition.
3947         (__fegetround): Also undefine macro after function definition.
3948         * sysdeps/powerpc/nofpu/fegetround.c (fegetround): Rename to
3949         __fegetround and define as weak alias of __fegetround.  Use
3950         libm_hidden_weak.  Do not undefine as macro.
3951         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c (fegetround):
3952         Likewise.
3953         * sysdeps/s390/fpu/fegetround.c (fegetround): Rename to
3954         __fegetround and define as weak alias of __fegetround.  Use
3955         libm_hidden_weak.
3956         * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Likewise.
3957         * sysdeps/sparc/fpu/fegetround.c (fegetround): Likewise.
3958         * sysdeps/tile/math_private.h (__fegetround): New inline function.
3959         * sysdeps/x86_64/fpu/fegetround.c (fegetround): Rename to
3960         __fegetround and define as weak alias of __fegetround.  Use
3961         libm_hidden_weak.
3962         * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Use
3963         __fegetround instead of fegetround.
3965         [BZ #17782]
3966         * sysdeps/unix/sysv/linux/mips/bits/termios.h (TIOCSER_TEMT):
3967         Condition macro definition on [__USE_MISC].
3969         [BZ #17781]
3970         * sysdeps/unix/sysv/linux/mips/bits/sigaction.h
3971         (struct sigaction): Change type of sa_flags field to int.
3973         [BZ #17780]
3974         * sysdeps/unix/sysv/linux/mips/bits/fcntl.h (struct flock)
3975         [!__USE_FILE_OFFSET64 && _MIPS_SIM != _ABI64]: Rename pad field to
3976         __glibc_reserved0.
3978         * nptl/version.c (banner): Use single year in copyright notice.
3980         * NEWS: Update copyright dates.
3981         * catgets/gencat.c (print_version): Likewise.
3982         * csu/version.c (banner): Likewise.
3983         * debug/catchsegv.sh: Likewise.
3984         * debug/pcprofiledump.c (print_version): Likewise.
3985         * debug/xtrace.sh (do_version): Likewise.
3986         * elf/ldconfig.c (print_version): Likewise.
3987         * elf/ldd.bash.in: Likewise.
3988         * elf/pldd.c (print_version): Likewise.
3989         * elf/sotruss.sh: Likewise.
3990         * elf/sprof.c (print_version): Likewise.
3991         * iconv/iconv_prog.c (print_version): Likewise.
3992         * iconv/iconvconfig.c (print_version): Likewise.
3993         * locale/programs/locale.c (print_version): Likewise.
3994         * locale/programs/localedef.c (print_version): Likewise.
3995         * login/programs/pt_chown.c (print_version): Likewise.
3996         * malloc/memusage.sh (do_version): Likewise.
3997         * malloc/memusagestat.c (print_version): Likewise.
3998         * malloc/mtrace.pl: Likewise.
3999         * manual/libc.texinfo: Likewise.
4000         * nptl/version.c (banner): Likewise.
4001         * nscd/nscd.c (print_version): Likewise.
4002         * nss/getent.c (print_version): Likewise.
4003         * nss/makedb.c (print_version): Likewise.
4004         * posix/getconf.c (main): Likewise.
4005         * scripts/test-installation.pl: Likewise.
4006         * sysdeps/unix/sysv/linux/lddlibc4.c (main): Likewise.
4008 2015-01-02  Will Newton  <will.newton@linaro.org>
4010         * sysdeps/arm/armv7/configure: Removed.
4011         * sysdeps/arm/armv7/configure.ac: Likewise.
4013 2015-01-02  Joseph Myers  <joseph@codesourcery.com>
4015         * All files with FSF copyright notices: Update copyright dates
4016         using scripts/update-copyrights.
4017         * intl/plural.c: Regenerated.
4018         * locale/programs/charmap-kw.h: Likewise.
4019         * locale/programs/locfile-kw.h: Likewise.
4021 2015-01-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
4023         * scripts/gen-posix-conf-vars.awk (END): Don't use sprintf.
4025 2014-12-31  Joseph Myers  <joseph@codesourcery.com>
4027         [BZ #17748]
4028         * include/fenv.h (__fegetenv): Use libm_hidden_proto.
4029         * math/fegetenv.c (__fegetenv): Use libm_hidden_def.
4030         * sysdeps/aarch64/fpu/fegetenv.c (fegetenv): Rename to __fegetenv
4031         and define as weak alias of __fegetenv.  Use libm_hidden_weak.
4032         * sysdeps/alpha/fpu/fegetenv.c (__fegetenv): Use libm_hidden_def.
4033         * sysdeps/arm/fegetenv.c (fegetenv): Rename to __fegetenv and
4034         define as weak alias of __fegetenv.  Use libm_hidden_weak.
4035         * sysdeps/hppa/fpu/fegetenv.c (fegetenv): Likewise.
4036         * sysdeps/i386/fpu/fegetenv.c (__fegetenv): Use libm_hidden_def.
4037         * sysdeps/ia64/fpu/fegetenv.c (fegetenv): Rename to __fegetenv and
4038         define as weak alias of __fegetenv.  Use libm_hidden_weak.
4039         * sysdeps/m68k/fpu/fegetenv.c (__fegetenv): Use libm_hidden_def.
4040         * sysdeps/mips/fpu/fegetenv.c (fegetenv): Rename to __fegetenv and
4041         define as weak alias of __fegetenv.  Use libm_hidden_weak.
4042         * sysdeps/powerpc/fpu/fegetenv.c (__fegetenv): Use
4043         libm_hidden_def.
4044         * sysdeps/powerpc/nofpu/fegetenv.c (__fegetenv): Likewise.
4045         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c (__fegetenv):
4046         Likewise.
4047         * sysdeps/s390/fpu/fegetenv.c (fegetenv): Rename to __fegetenv and
4048         define as weak alias of __fegetenv.  Use libm_hidden_weak.
4049         * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Likewise.
4050         * sysdeps/sparc/fpu/fegetenv.c (__fegetenv): Use libm_hidden_def.
4051         * sysdeps/tile/math_private.h (__fegetenv): New inline function.
4052         * sysdeps/x86_64/fpu/fegetenv.c (fegetenv): Rename to __fegetenv
4053         and define as weak alias of __fegetenv.  Use libm_hidden_weak.
4054         * sysdeps/generic/math_private.h (libc_feholdsetround_ctx): Use
4055         __fegetenv instead of fegetenv.
4056         (libc_feholdsetround_noex_ctx): Likewise.
4058 2014-12-31  Matthew Fortune  <matthew.fortune@imgtec.com>
4060         * elf/elf.h (PT_MIPS_ABIFLAGS): Define.
4061         (Elf_MIPS_ABIFlags_v0): New structure.
4062         (EF_MIPS_FP64): Define.
4063         (MIPS_AFL_REG_NONE, MIPS_AFL_REG_32, MIPS_AFL_REG_64): Likewise.
4064         (MIPS_AFL_REG_128, MIPS_AFL_ASE_DSP, MIPS_AFL_ASE_DSP64): Likewise.
4065         (MIPS_AFL_ASE_DSPR2, MIPS_AFL_ASE_EVA, MIPS_AFL_ASE_MCU): Likewise.
4066         (MIPS_AFL_ASE_MDMX, MIPS_AFL_ASE_MIPS3D, MIPS_AFL_ASE_MT): Likewise.
4067         (MIPS_AFL_ASE_SMARTMIPS, MIPS_AFL_ASE_VIRT): Likewise.
4068         (MIPS_AFL_ASE_VIRT64, MIPS_AFL_ASE_MSA, MIPS_AFL_ASE_MSA64): Likewise.
4069         (MIPS_AFL_ASE_MIPS16, MIPS_AFL_ASE_MICROMIPS): Likewise.
4070         (MIPS_AFL_ASE_XPA, MIPS_AFL_EXT_XLR, MIPS_AFL_EXT_OCTEON2): Likewise.
4071         (MIPS_AFL_EXT_OCTEONP, MIPS_AFL_EXT_LOONGSON_3A): Likewise.
4072         (MIPS_AFL_EXT_OCTEON, MIPS_AFL_EXT_5900, MIPS_AFL_EXT_4010): Likewise.
4073         (MIPS_AFL_EXT_4100, MIPS_AFL_EXT_3900, MIPS_AFL_EXT_10000): Likewise.
4074         (MIPS_AFL_EXT_SB1, MIPS_AFL_EXT_4111, MIPS_AFL_EXT_4120): Likewise.
4075         (MIPS_AFL_EXT_5400, MIPS_AFL_EXT_5500): Likewise.
4076         (MIPS_AFL_EXT_LOONGSON_2E, MIPS_AFL_EXT_LOONGSON_2F): Likewise.
4077         (Val_GNU_MIPS_ABI_FP_ANY, Val_GNU_MIPS_ABI_FP_DOUBLE): New enum values.
4078         (Val_GNU_MIPS_ABI_FP_SINGLE, Val_GNU_MIPS_ABI_FP_SOFT): Likewise.
4079         (Val_GNU_MIPS_ABI_FP_OLD_64, Val_GNU_MIPS_ABI_FP_XX): Likewise.
4080         (Val_GNU_MIPS_ABI_FP_64, Val_GNU_MIPS_ABI_FP_64A): Likewise.
4081         (Val_GNU_MIPS_ABI_FP_MAX): Likewise.
4082         * sysdeps/mips/Makefile [subdir=elf]: Add tst-abi-interlink,
4083         tst-mode-switch-1, tst-mode-switch-2, tst-mode-switch-3 tests.
4084         * sysdeps/mips/bits/linkmap.h (struct link_map_machine): Add fpmode
4085         field.
4086         * sysdeps/mips/dl-machine.h (elf_machine_matches_host): Reject
4087         EF_MIPS_FP64.
4088         * sysdeps/mips/dl-machine-reject-phdr.h: New file.
4089         * sysdeps/mips/tst-abi-fp32mod.c: Likewise.
4090         * sysdeps/mips/tst-abi-fpxxmod.c: Likewise.
4091         * sysdeps/mips/tst-abi-fpxxomod.c: Likewise.
4092         * sysdeps/mips/tst-abi-fp64mod.c: Likewise.
4093         * sysdeps/mips/tst-abi-fp64amod.c: Likewise.
4094         * sysdeps/mips/tst-abi-interlink.c: Likewise.
4095         * sysdeps/mips/tst-mode-switch-1.c: Likewise.
4096         * sysdeps/mips/tst-mode-switch-2.c: Likewise.
4097         * sysdeps/mips/tst-mode-switch-3.c: Likewise.
4098         * sysdeps/unix/sysv/linux/mips/configure.ac (o32-fpabi): Define to
4099         record the current FP ABI extension.
4100         (mips-mode-switch): Define to show if kernel headers support mode
4101         switching.
4102         * sysdeps/unix/sysv/linux/mips/configure: Regenerate.
4103         * sysdeps/unix/sysv/linux/mips/ldsodefs.h: Increase maximum
4104         supported SYSV ABI version to 3.
4105         * sysdeps/unix/sysv/linux/mips/libc-abis: Add new MIPS_O32_FP64
4106         feature.
4108 2014-12-31  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
4109             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
4111         * sysdeps/powerpc/powerpc64/power7/strcpy.S (strcpy): Optimize unaligned
4112         path.
4113         * benchtests/bench-strcpy.c (test_main): Add more unaligned inputs.
4115 2014-12-31  Joseph Myers  <joseph@codesourcery.com>
4117         * sysdeps/powerpc/bits/fenvinline.h (fegetround): Rename macro to
4118         __fegetround and redefine to call __fegetround.  Remove condition
4119         on [!__NO_MATH_INLINES].
4120         * sysdeps/powerpc/fpu/fenv_libc.h (__fegetround): Remove inline
4121         function.
4122         * sysdeps/powerpc/nofpu/fenv_libc.h: Remove file.
4123         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h (__fegetround):
4124         Remove macro.
4125         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Include <fenv.h>
4126         instead of <fenv_libc.h>.
4127         (__llrintl): Call fegetround instead of __fegetround.
4128         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Include <fenv.h>
4129         instead of <fenv_libc.h>.
4130         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Likewise.
4131         (__lrintl): Call fegetround instead of __fegetround.
4132         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Include <fenv.h>
4133         instead of <fenv_libc.h>.
4134         * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
4135         (__rintl): Call fegetround instead of __fegetround.
4137 2014-12-31  Siddhesh Poyarekar  <siddhesh@redhat.com>
4139         * scripts/gen-posix-conf-vars.awk: Don't use multi-dimensional
4140         arrays.
4142 2014-12-30  H.J. Lu  <hongjiu.lu@intel.com>
4144         [BZ #17775]
4145         * sysdeps/i386/dl-machine.h (PI_STATIC_AND_HIDDEN): Removed.
4146         (elf_machine_dynamic) [!PI_STATIC_AND_HIDDEN]: Likewise.
4147         (elf_machine_load_address) [!PI_STATIC_AND_HIDDEN]: Likewise.
4149 2014-12-30  Andrew Senkevich  <andrew.senkevich@intel.com>
4151         * sysdeps/i386/tls-macros.h: Include <features.h>.
4152         (TLS_LE): Use non-PIC version for GCC >= 5.0.
4153         (TLS_IE): Likewise.
4154         (TLS_LD): Likewise.
4155         (TLS_GD): Likewise.
4156         * sysdeps/unix/sysv/linux/i386/sysdep.h (check_consistency): Don't
4157         define for GCC >= 5.0.
4159 2014-12-30  Chris Metcalf  <cmetcalf@ezchip.com>
4161         * math/test-fenv.c (test_single_exception, set_single_exc,
4162         feenv_nomask_test, feenv_mask_test, feexcp_nomask_test,
4163         feexcp_mask_test, feenable_test, fe_single_test): Add
4164         [!FE_ALL_EXCEPT] test so these routines are not compiled in the
4165         case where they are not used.
4166         * math/libm-test.inc: Likewise.
4167         * setjmp/test-setjmp-fp.c: Mark attribute ((unused)) on variable
4168         unused in the absence of FP rounding/exception support.
4169         * stdio-common/tst-printf-round.c: Likewise.
4170         * stdlib/tst-strtod-round.c: Likewise.
4171         * stdlib/tst-strtod-underflow.c: Likewise.
4173 2014-12-30  Joseph Myers  <joseph@codesourcery.com>
4175         [BZ #17723]
4176         * include/fenv.h (__feraiseexcept): Use libm_hidden_proto.
4177         * math/fraiseexcpt.c (__feraiseexcept): Use libm_hidden_def.
4178         * sysdeps/aarch64/fpu/fraiseexcpt.c (feraiseexcept): Rename to
4179         __feraiseexcept and define as weak alias of __feraiseexcept.  Use
4180         libm_hidden_weak.
4181         * sysdeps/arm/fraiseexcpt.c (feraiseexcept): Likewise.
4182         * sysdeps/hppa/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
4183         * sysdeps/i386/fpu/fraiseexcpt.c (__feraiseexcept): Use
4184         libm_hidden_def.
4185         * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Rename to
4186         __feraiseexcept and define as weak alias of __feraiseexcept.  Use
4187         libm_hidden_weak.
4188         * sysdeps/m68k/coldfire/fpu/fraiseexcpt.c (feraiseexcept):
4189         Likewise.
4190         * sysdeps/microblaze/math_private.h (__feraiseexcept): New macro.
4191         * sysdeps/mips/fpu/fraiseexcpt.c (feraiseexcept): Rename to
4192         __feraiseexcept and define as weak alias of __feraiseexcept.  Use
4193         libm_hidden_weak.
4194         * sysdeps/powerpc/fpu/fraiseexcpt.c (__feraiseexcept): Use
4195         libm_hidden_def.
4196         * sysdeps/powerpc/nofpu/fraiseexcpt.c (__feraiseexcept): Likewise.
4197         * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcpt.c
4198         (__feraiseexcept): Likewise.
4199         * sysdeps/s390/fpu/fraiseexcpt.c (feraiseexcept): Rename to
4200         __feraiseexcept and define as weak alias of __feraiseexcept.  Use
4201         libm_hidden_weak.
4202         * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
4203         * sysdeps/sparc/fpu/fraiseexcpt.c (__feraiseexcept): Use
4204         libm_hidden_def.
4205         * sysdeps/tile/math_private.h (__feraiseexcept): New macro.
4206         * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S (__feraiseexcept):
4207         Use libm_hidden_def.
4208         * sysdeps/x86_64/fpu/fraiseexcpt.c (__feraiseexcept): Use
4209         libm_hidden_def.
4210         (feraiseexcept): Define as weak not strong alias.  Use
4211         libm_hidden_weak.
4212         * sysdeps/x86/fpu/bits/fenv.h (__feraiseexcept_invalid_divbyzero):
4213         New inline function.  Factored out of ...
4214         (feraiseexcept): ... here.  Use __feraiseexcept_invalid_divbyzero.
4215         * sysdeps/x86/fpu/include/bits/fenv.h: New file.
4216         * math/e_scalb.c (invalid_fn): Call __feraiseexcept instead of
4217         feraiseexcept.
4218         * math/w_acos.c (__acos): Likewise.
4219         * math/w_asin.c (__asin): Likewise.
4220         * math/w_ilogb.c (__ilogb): Likewise.
4221         * math/w_j0.c (y0): Likewise.
4222         * math/w_j1.c (y1): Likewise.
4223         * math/w_jn.c (yn): Likewise.
4224         * math/w_log.c (__log): Likewise.
4225         * math/w_log10.c (__log10): Likewise.
4226         * sysdeps/aarch64/fpu/feupdateenv.c (feupdateenv): Likewise.
4227         * sysdeps/aarch64/fpu/math_private.h
4228         (libc_feupdateenv_test_aarch64): Likewise.
4229         * sysdeps/alpha/fpu/feupdateenv.c (__feupdateenv): Likewise.
4230         * sysdeps/arm/fenv_private.h (libc_feupdateenv_test_vfp): Likewise.
4231         * sysdeps/arm/feupdateenv.c (feupdateenv): Likewise.
4232         * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Likewise.
4233         * sysdeps/m68k/fpu/feupdateenv.c (__feupdateenv): Likewise.
4234         * sysdeps/mips/fpu/feupdateenv.c (feupdateenv): Likewise.
4235         * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrt): Likewise.
4236         * sysdeps/s390/fpu/feupdateenv.c (feupdateenv): Likewise.
4237         * sysdeps/sh/sh4/fpu/feupdateenv.c (feupdateenv): Likewise.
4238         * sysdeps/sparc/fpu/feupdateenv.c (__feupdateenv): Likewise.
4240 2014-12-30  H.J. Lu  <hongjiu.lu@intel.com>
4242         [BZ #17732]
4243         * io/test-utime.c (main): Replace %ld with %jd and cast to
4244         intmax_t.
4245         * libio/tst-ftell-active-handler.c (do_append_test): Likewise.
4246         * nptl/tst-mutex5.c: Include <stdint.h>.
4247         (do_test): Replace %ld with %jd and cast to intmax_t.
4248         * posix/tst-regex.c (run_test): Likewise.
4249         (run_test_backwards): Likewise.
4250         * rt/tst-clock.c: Include <stdint.h>.
4251         (clock_test): Replace %ld with %jd and cast to intmax_t.
4252         * rt/tst-cpuclock1.c: Include <stdint.h>.
4253         (do_test): Replace %lu with %ju and cast to uintmax_t.
4254         * rt/tst-cpuclock2.c: Include <stdint.h>.
4255         (do_test): Replace %lu with %ju and cast to uintmax_t.
4256         * rt/tst-mqueue1.c: Include <stdint.h>.
4257         (check_attrs): Replace %ld with %jd and cast to intmax_t.
4258         * rt/tst-mqueue3.c (fct): Replace %ld with %jd and cast to
4259         intmax_t.
4260         * rt/tst-mqueue4.c (do_test): Likewise.
4261         * rt/tst-timer4.c: Include <stdint.h>.
4262         (check_ts): Replace %ld with %jd and cast to intmax_t.
4263         (do_test): Likewise.
4264         * stdio-common/tst-fmemopen2.c (do_test): Replace %ld with %jd
4265         and cast to intmax_t.
4266         * sysdeps/pthread/tst-timer.c (main): Likewise.
4267         * time/clocktest.c (main): Likewise.
4268         * time/tst-posixtz.c (do_test): Likewise.
4269         * timezone/tst-timezone.c (main): Likewise.
4271 2014-12-30  Andrew Senkevich  <andrew.senkevich@intel.com>
4272             H.J. Lu  <hongjiu.lu@intel.com>
4274         * sysdeps/i386/i686/multiarch/bcopy-sse2-unaligned.S: New file.
4275         * sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S: Likewise.
4276         * sysdeps/i386/i686/multiarch/memmove-sse2-unaligned.S: Likewise.
4277         * sysdeps/i386/i686/multiarch/mempcpy-sse2-unaligned.S: Likewise.
4278         * sysdeps/i386/i686/multiarch/bcopy.S: Select the sse2_unaligned
4279         version if bit_Fast_Unaligned_Load is set.
4280         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
4281         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
4282         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
4283         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
4284         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
4285         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
4286         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
4287         bcopy-sse2-unaligned, memcpy-sse2-unaligned,
4288         memmove-sse2-unaligned and mempcpy-sse2-unaligned.
4289         * sysdeps/i386/i686/multiarch/ifunc-impl-list.c (MAX_IFUNC): Set
4290         to 4.
4291         (__libc_ifunc_impl_list): Test __bcopy_sse2_unaligned,
4292         __memmove_chk_sse2_unaligned, __memmove_sse2_unaligned,
4293         __memcpy_chk_sse2_unaligned, __memcpy_sse2_unaligned,
4294         __mempcpy_chk_sse2_unaligned, and __mempcpy_sse2_unaligned.
4296 2014-12-29  Chris Metcalf  <cmetcalf@ezchip.com>
4298         * sysdeps/unix/sysv/linux/tst-setgetname.c (do_test): Use #ifndef
4299         instead of #if to avoid a Wundef warning.
4300         * stdlib/tst-limits.c (do_test): Likewise.
4302         * sysdeps/tile/math_private.h (fetestexcept): Add macro to
4303         parallel other exception macros.
4304         (fegetenv): Convert from macro to extern inline so that it applies
4305         retroactively to inline functions already seen by the compiler.
4306         (fesetenv, feupdateenv, fegetround, fesetround): Likewise.
4308         * posix/Makefile (before-compile): Use $(objpfx) for
4309         posix-conf-vars-def.h.
4311 2014-12-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
4313         * posix/getconf.c (main): Use size_t for type of I.
4314         * scripts-gen-posix-conf-vars.awk (END): Use size_t for type of
4315         NSPEC.
4317         * posix/posix-conf-vars.list (SPEC:XBS5): Add sysconf prefix.
4318         * posix/confstr.c: Define NEED_SPEC_ARRAY to 0.
4319         * posix/posix-envs.def: Likewise.
4320         * sysdeps/posix/sysconf.c: Likewise.
4321         * posix/getconf.c: Define NEED_SPEC_ARRAY to 1.
4322         (specs): Remove array.
4323         * scripts/gen-posix-conf-vars.awk: Support generation of specs
4324         array.
4326         * posix/posix-conf-vars.list: Add _POSIX sysconf namespace.
4327         * sysdeps/posix/sysconf.c: Include posix-conf-vars.h.
4328         (__sysconf): Use CONF_IS_* macros.
4330         * posix/Makefile (before-compile): Add posix-conf-vars-def.h.
4331         ($(objpfx)posix-conf-vars-def.h): New target.
4332         * posix/posix-conf-vars.list: New file.
4333         * posix/posix-conf-vars.h: New file.
4334         * posix/confstr.c: Include posix-conf-vars.h.
4335         (confstr): Use CONF_IS_* macros.
4336         * posix/posix-envs.def: Include posix-conf-vars.h.  Use
4337         CONF_IS_* macros.
4338         * scripts/gen-posix-conf-vars.awk: New file.
4340 2014-12-26  Chris Metcalf  <cmetcalf@ezchip.com>
4342         * sysdeps/tile/math_private.h (fegetenv, fesetenv, feupdateenv,
4343         fegetround): Add no-op macros to avoid linknamespace issues.
4345         * sysdeps/unix/sysv/linux/clock_settime.c (SYSDEP_SETTIME): Remove
4346         definitions of INTERNAL_VSYSCALL and INLINE_VSYSCALL.
4348         * sysdeps/unix/sysv/linux/tile/sysdep.h
4349         (HAVE_CLOCK_GETTIME_VSYSCALL): Move definition out of
4350         assembly-specific section to avoid a redefinition warning.
4352         * sysdeps/tile/jmpbuf-unwind.h (_JMPBUF_CFA_UNWINDS_ADJ): Cast to
4353         long before casting to pointer to avoid a cast warning.
4355 2014-12-23  Chris Metcalf  <cmetcalf@ezchip.com>
4357         * sysdeps/tile/tilegx/Implies: New file.
4359 2014-12-23  Richard Earnshaw  <rearnsha@arm.com>
4361         * string/stpcpy.c (__stpcpy): Rewrite using strlen and memcpy.
4363 2014-12-23  Florian Weimer  <fweimer@redhat.com>
4365         * iconvdata/run-iconv-test.sh: Actually test iconv modules.
4367 2014-12-22  Joseph Myers  <joseph@codesourcery.com>
4369         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES): Do
4370         not define.
4371         * sysdeps/unix/sysv/linux/utimes.c: Do not include
4372         <kernel-features.h>.
4373         (__utimes) [__NR_utimes]: Make code unconditional.
4374         (__utimes) [!__ASSUME_UTIMES]: Remove conditional code.
4375         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
4376         (__ASSUME_UTIMES): Do not undefine.
4377         * sysdeps/unix/sysv/linux/tile/kernel-features.h
4378         (__ASSUME_UTIMES): Likewise.
4379         * sysdeps/unix/sysv/linux/hppa/kernel-features.h
4380         (__ASSUME_UTIMES): Define for [__LINUX_KERNEL_VERSION >= 0x030e00]
4381         instead of undefining for [__LINUX_KERNEL_VERSION < 0x030e00].
4382         * sysdeps/unix/sysv/linux/hppa/utimes.c: New file.
4384 2014-12-22  Steve Ellcey  <sellcey@imgtec.com>
4386         * sysdeps/mips/memcpy.S: Fix preprocessor indentation.
4388 2014-12-22  Chris Metcalf  <cmetcalf@ezchip.com>
4390         [BZ #17747]
4391         * math/w_j0.c [defined NO_LONG_DOUBLE] (j0, y0): Convert strong
4392         alias to weak alias for j0l, y0l.
4393         * math/w_j1.c [defined NO_LONG_DOUBLE] (j1, y1): Likewise.
4394         * math/w_jn.c [defined NO_LONG_DOUBLE] (jn, yn): Likewise.
4396         [BZ #17746]
4397         * sysdeps/tile/tilegx/strstr.c (STRSTR2): Remove implicit boolean
4398         conversion.
4400 2014-12-22  Steve Ellcey  <sellcey@imgtec.com>
4402         * sysdeps/unix/mips/sysdep.h (__mips_isa_rev): Set
4403         to zero if not already defined.
4405 2014-12-22  Joseph Myers  <joseph@codesourcery.com>
4407         [BZ #17724]
4408         * sysdeps/ieee754/k_standard.c: Don't include <float.h>.
4409         (__kernel_standard_f): Remove.  Moved to k_standardf.c.
4410         (__kernel_standard_l): Remove.  Moved to k_standardl.c with
4411         (char *) casts added.
4412         * sysdeps/ieee754/k_standardf.c: New file.
4413         * sysdeps/ieee754/k_standardl.c: Likewise.
4414         * math/Makefile (libm-support): Remove k_standard.
4415         (libm-calls): Add k_standard.
4417 2014-12-22  Wilco Dijkstra  <wdijkstr@arm.com>
4419         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept):
4420         Optimize to avoid an unnecessary FPCR read.
4422 2014-12-22  Wilco Dijkstra  <wdijkstr@arm.com>
4424         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv):
4425         Optimize to reduce FPCR/FPSR accesses.
4427 2014-12-22  Wilco Dijkstra  <wdijkstr@arm.com>
4429         * sysdeps/aarch64/fpu/ftestexcept.c (fetestexcept):
4430         Call libc_fetestexcept_aarch64.
4432 2014-12-22  Wilco Dijkstra  <wdijkstr@arm.com>
4434         * sysdeps/aarch64/fpu/fesetround.c (fesetround):
4435         Call libc_fesetround_aarch64.
4437 2014-12-22  Joseph Myers  <joseph@codesourcery.com>
4439         [BZ #17733]
4440         * sysdeps/unix/sysv/linux/bind.S (NO_WEAK_ALIAS): Do not define.
4441         (__bind): Do not define as weak alias.
4442         * sysdeps/unix/sysv/linux/getsockname.S (NO_WEAK_ALIAS): Do not
4443         define.
4444         (__getsockname): Do not define as weak alias.
4446 2014-12-22  Will Newton  <will.newton@linaro.org>
4448         * manual/install.texi: Document that we require bison 2.7
4449         or above.
4450         * INSTALL: Regenerate.
4451         * configure.ac: Use AC_CHECK_PROG_VER instead of
4452         AC_PATH_PROG when checking for bison and check for
4453         version 2.7 or above.
4454         * configure: Regenerate.
4456 2014-12-21  Chris Metcalf  <cmetcalf@ezchip.com>
4458         [BZ #17745]
4459         * sysdeps/tile/ffs.c (__ffs): Moved ffsll definition...
4460         * sysdeps/tile/ffsll.c (ffsll): To here.
4462         * sysdeps/unix/sysv/linux/tile/localplt.data: Removed.
4464 2014-12-21  H.J. Lu  <hongjiu.lu@intel.com>
4466         * elf/dl-tls.c (__tls_get_addr): Provide the hidden definition
4467         if not defined.
4468         * sysdeps/i386/dl-tls.h (___tls_get_addr): Provide the hidden
4469         definition.
4470         * sysdeps/i386/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Call the
4471         hidden ___tls_get_addr.
4472         * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Call the
4473         hidden __tls_get_addr.
4474         * sysdeps/generic/localplt.data (__tls_get_addr): Removed.
4475         * sysdeps/unix/sysv/linux/i386/localplt.data (___tls_get_addr):
4476         Likewise.
4478 2014-12-21  Andreas Schwab  <schwab@linux-m68k.org>
4480         * sysdeps/m68k/dl-machine.h (RTLD_START): Remove @PLTPC from
4481         _dl_init call.
4483 2014-12-21  H.J. Lu  <hongjiu.lu@intel.com>
4485         * sysdeps/i386/dl-machine.h (_dl_start_user): Remove @PLT
4486         from "call _dl_init@PLT".
4487         * sysdeps/x86_64/dl-machine.h (_dl_start_user): Likewise.
4489 2014-12-21  Anders Kaseorg  <andersk@mit.edu>
4491         * manual/search.texi: (Array Sort Function): Clarify stable sorting
4492         guarantees.
4494 2014-12-20  Chris Metcalf  <cmetcalf@ezchip.com>
4496         * sysdeps/unix/sysv/linux/tile/localplt.data: New file.
4498 2014-12-19  Chris Metcalf  <cmetcalf@ezchip.com>
4500         [BZ #17744]
4501         * sysdeps/tile/tilegx/strstr.c (STRSTR): Call __strnlen, not
4502         strnlen.
4504 2014-12-19  Steve Ellcey  <sellcey@imgtec.com>
4506         * sysdeps/mips/addmul_1.S (__mpn_addmul_1): Use mulu/muhu instead
4507         of multu on MIPSr6.
4508         * sysdeps/mips/mul_1.S (__mpn_mul_1): Ditto.
4509         * sysdeps/mips/submul_1.S (__mpn_submul_1): Ditto.
4510         * sysdeps/mips/mips64/addmul_1.S (__mpn_addmul_1): Ditto.
4511         * sysdeps/mips/mips64/mul_1.S (__mpn_mul_1): Ditto.
4512         * sysdeps/mips/mips64/submul_1.S (__mpn_submul_1): Ditto.
4514 2014-12-19  Steve Ellcey  <sellcey@imgtec.com>
4516         * sysdeps/mips/sys/asm.h (PTR_ADDU): Use addu on mips32r6/mips64r6.
4517         (PTR_ADDIU): Use addiu for mips32r6/mips64r6.
4518         (PTR_SUBU): Use subu for mips32r6/mips64r6.
4519         (PTR_SUBIU): Use subu for mips32r6/mips64r6 (subiu does not exist).
4520         * sysdeps/mips/machine-gmon.h (PTR_ADDU_STRING) Use addu for
4521         mips32r6/mips64r6.
4522         (PTR_SUBU_STRING) Use subu for mips32r6/mips64r6.
4524 2014-12-19  Ondřej Bílka  <neleai@seznam.cz>
4526         * string/strncat.c (STRNCAT): Simplify implementation.
4528 2014-12-19  David S. Miller  <davem@davemloft.net>
4530         * sysdeps/sparc/sparc32/soft-fp/q_neg.c (_Q_neg): Use a union to
4531         access the quad as both a long double and as a series of 4 words.
4533         * get-dynamic-info.h (elf_get_dynamic_info): Ignore -Warray-bounds for a
4534         link_map->l_info array access.
4536 2014-12-19  Chris Metcalf  <cmetcalf@ezchip.com>
4538         * iconvdata/tst-loading.c (TIMEOUT): Increase timeout 10 sec.
4540         * math/atest-exp.c (TIMEOUT): Increase timeout to 10 sec.
4541         * math/atest-exp2.c (TIMEOUT): Likewise.
4542         * math/atest-sincos.c (TIMEOUT): Likewise.
4544 2014-12-19  H.J. Lu  <hongjiu.lu@intel.com>
4546         * sysdeps/x86_64/x32/Makefile (CFLAGS-s_llround.c): Replace
4547         -Wno-error with -fno-builtin-lround.
4549 2014-12-19  Torvald Riegel  <triegel@redhat.com>
4551         * sysdeps/unix/sysv/linux/i386/lowlevellock-futex.h: New file.
4552         Contains futex constants and functions moved over from ...
4553         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: ... here.  Include
4554         <lowlevellock-futex.h>.
4555         (lll_wait_tid): Use lll_futex_wait instead of assembly code.
4556         (lll_timedwait_tid): Add comments and parentheses around macro
4557         arguments.
4559 2014-12-19  Torvald Riegel  <triegel@redhat.com>
4561         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Include
4562         <lowlevellock-futex.h>.  Remove FUTEX_* constants defined there.
4563         (__lll_private_flag): Remove.
4564         (lll_futex_wait): Likewise.
4565         (lll_futex_timed_wait): Likewise.
4566         (lll_futex_wake): Likewise.
4567         (lll_futex_requeue): Likewise.
4568         (lll_wait_tid): Use lll_futex_wait instead of assembly code.
4569         (__lll_timedwait_tid): Spell out argument names.
4570         (lll_timedwait_tid): Add comments and parentheses around macro
4571         arguments.
4572         * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Make FUTEX_* constants,
4573         LLL_SHARED and LLL_PRIVATE usable from assembly code.
4575 2014-12-19  Torvald Riegel  <triegel@redhat.com>
4577         * sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: Remove file.
4578         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: Likewise.
4579         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
4580         * sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: Likewise.
4581         * sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: Likewise.
4582         * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: Likewise.
4583         * sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: Likewise.
4584         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Likewise.
4585         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Likewise.
4586         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S: Likewise.
4587         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S: Likewise.
4588         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: Likewise.
4589         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: Likewise.
4590         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Likewise.
4591         * sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: Likewise.
4592         * sysdeps/unix/sysv/linux/sh/sem_post.S: Likewise.
4593         * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Likewise.
4594         * sysdeps/unix/sysv/linux/sh/sem_trywait.S: Likewise.
4595         * sysdeps/unix/sysv/linux/sh/sem_wait.S: Likewise.
4597 2014-12-19  H.J. Lu  <hongjiu.lu@intel.com>
4599         * sysdeps/x86_64/x32/Makefile: New file.
4601 2014-12-19  H.J. Lu  <hongjiu.lu@intel.com>
4603         * sysdeps/i386/ldbl2mpn.c (__mpn_extract_long_double): Replace
4604         1L with (mp_limb_t) 1.
4606 2014-12-17  Roland McGrath  <roland@hack.frob.com>
4608         * sysdeps/nptl/fork.c (__fork_generation_pointer): Variable moved ...
4609         * nptl/libc_pthread_init.c: ... here.
4610         * sysdeps/nptl/fork.c (__fork_handlers): Variable moved ...
4611         * nptl/register-atfork.c: ... here.
4613         * sysdeps/nptl/gai_misc.h (__gai_start_notify_thread):
4614         Use pthread_sigmask rather than INTERNAL_SYSCALL.
4615         Use assert_perror to check its return value.
4616         (__gai_create_helper_thread): Likewise.
4618         * inet/if_index.c (__if_freenameindex): Add libc_hidden_def.
4620         * malloc/malloc.c (alloc_perturb, free_perturb): Remove inline keyword.
4622 2014-12-17  Joseph Myers  <joseph@codesourcery.com>
4624         [BZ #17725]
4625         * sysdeps/generic/profil-counter.h (profil_counter): Rename to
4626         __profil_counter.
4627         * sysdeps/unix/sysv/linux/hppa/profil-counter.h (profil_counter):
4628         Likewise.
4629         * sysdeps/unix/sysv/linux/i386/profil-counter.h (profil_counter):
4630         Likewise.
4631         * sysdeps/unix/sysv/linux/ia64/profil-counter.h (profil_counter):
4632         Likewise.
4633         * sysdeps/unix/sysv/linux/s390/s390-32/profil-counter.h
4634         (profil_counter): Likewise.
4635         * sysdeps/unix/sysv/linux/s390/s390-64/profil-counter.h
4636         (profil_counter): Likewise.
4637         * sysdeps/unix/sysv/linux/sh/profil-counter.h (profil_counter):
4638         Likewise.
4639         * sysdeps/unix/sysv/linux/tile/profil-counter.h (profil_counter):
4640         Likewise.
4641         * sysdeps/unix/sysv/linux/x86_64/profil-counter.h
4642         (profil_counter): Likewise.
4643         * sysdeps/unix/sysv/linux/arm/profil-counter.h (profil_counter):
4644         Likewise.
4645         [!__profil_counter] (profil_counter): Define as weak alias of
4646         __profil_counter.
4647         * sysdeps/unix/sysv/linux/sparc/sparc32/profil-counter.h
4648         (profil_counter): Rename to __profil_counter.
4649         [!__profil_counter] (profil_counter): Define as weak alias of
4650         __profil_counter.
4651         * sysdeps/unix/sysv/linux/sparc/sparc64/profil-counter.h
4652         (profil_counter): Rename to __profil_counter.
4653         [!__profil_counter] (profil_counter): Define as weak alias of
4654         __profil_counter.
4655         * sysdeps/posix/profil.c: Update comment referring to
4656         profil_counter.
4657         (__profil): Use __profil_counter instead of profil_counter.
4658         * sysdeps/posix/sprofil.c (profil_counter): Rename to
4659         __profil_counter.  Use __profil_counter_ushort and
4660         __profil_counter_uint in definitions.
4661         (__sprofil): Use __profil_counter_uint and __profil_counter_ushort
4662         instead of profil_counter_uint and profil_counter_ushort.
4664         [BZ #17722]
4665         * inet/inet_mkadr.c (inet_makeaddr): Rename to __inet_makeaddr and
4666         define as weak alias of __inet_makeaddr.
4667         * resolv/inet_addr.c (inet_addr): Rename to __inet_addr and define
4668         as weak alias of __inet_addr.
4669         * resolv/inet_pton.c (inet_pton): Rename to __inet_pton and define
4670         as weak alias of __inet_pton.  Use libc_hidden_weak.
4671         * include/arpa/inet.h (__inet_pton): Declare.  Use
4672         libc_hidden_proto.
4673         (inet_makeaddr): Don't use libc_hidden_proto.
4674         (__inet_makeaddr): Declare.  Use libc_hidden_proto.
4675         * resolv/res_init.c (__res_vinit): Use __inet_pton instead of
4676         inet_pton.  Use __inet_makeaddr instead of inet_makeaddr.
4677         * conform/Makefile (test-xfail-POSIX/pthread.h/linknamespace):
4678         Remove variable.
4679         (test-xfail-POSIX/sched.h/linknamespace): Likewise.
4680         (test-xfail-POSIX/time.h/linknamespace): Likewise.
4682 2014-12-17  Steve Ellcey  <sellcey@imgtec.com>
4684         * inet/getnetgrent_r.c: Move while loop to be inside if statement.
4686 2014-12-17  Stefan Liebler  <stli@linux.vnet.ibm.com>
4688         * stdio-common/bug-vfprintf-nargs.c (do_test):
4689         Cast value to intptr_t to avoid format warning
4690         for usage with PRIdPTR printing macro.
4692 2014-12-17  Stefan Liebler  <stli@linux.vnet.ibm.com>
4694         * libio/tst-widetext.c (do_test):
4695         Use format type %td instead of %Zd for ptrdiff_t
4696         in order to avoid format warning.
4698 2014-12-17  Andreas Schwab  <schwab@suse.de>
4700         * nscd/mem.c (gc): Add size_t cast to match printf format.
4702 2014-12-16  Roland McGrath  <roland@hack.frob.com>
4704         * sysdeps/gnu/unwind-resume.c: #include <sysdep.h>.
4705         (init): Apply PTR_MANGLE to pointers before storing them.
4706         (_Unwind_Resume, __gcc_personality_v0): Apply PTR_DEMANGLE to pointers
4707         before using them.
4709 2014-12-16  Joseph Myers  <joseph@codesourcery.com>
4711         [BZ #17719]
4712         * sysdeps/x86_64/memrchr.S (memrchr): Rename to __memrchr and
4713         define as weak alias of __memrchr.
4714         (__memrchr): Do not define as strong alias of memrchr.
4715         * conform/Makefile (test-xfail-XPG4/libgen.h/linknamespace):
4716         Remove variable.
4717         (test-xfail-UNIX98/libgen.h/linknamespace): Likewise.
4718         (test-xfail-XOPEN2K/libgen.h/linknamespace): Likewise.
4719         (test-xfail-XOPEN2K8/libgen.h/linknamespace): Likewise.
4721         [BZ #17717]
4722         * inet/if_index.c (if_nametoindex): Rename to __if_nametoindex and
4723         define as weak alias of __if_nametoindex.  Use libc_hidden_weak.
4724         (if_indextoname): Rename to __if_indextoname and define as weak
4725         alias of __if_indextoname.  Use libc_hidden_weak.
4726         (if_freenameindex): Rename to __if_freenameindex and define as
4727         weak alias of __if_freenameindex.
4728         (if_nameindex): Rename to __if_nameindex and define as weak alias
4729         of __if_nameindex.
4730         * sysdeps/mach/hurd/if_index.c (if_nametoindex): Rename to
4731         __if_nametoindex and define as weak alias of __if_nametoindex.
4732         Use libc_hidden_weak.
4733         (if_freenameindex): Rename to __if_freenameindex and define as
4734         weak alias of __if_freenameindex.
4735         (if_nameindex): Rename to __if_nameindex and define as weak alias
4736         of __if_nameindex.
4737         (if_indextoname): Rename to __if_indextoname and define as weak
4738         alias of __if_indextoname.  Use libc_hidden_weak.
4739         * sysdeps/unix/sysv/linux/if_index.c (if_nametoindex): Rename to
4740         __if_nametoindex and define as weak alias of __if_nametoindex.
4741         Use libc_hidden_weak.
4742         (if_freenameindex): Rename to __if_freenameindex and define as
4743         weak alias of __if_freenameindex.  Use libc_hidden_weak.
4744         (if_nameindex_netlink): Use __if_freenameindex instead of
4745         if_freenameindex.
4746         (if_nameindex): Rename to __if_nameindex and define as weak alias
4747         of __if_nameindex.  Use libc_hidden_weak.
4748         (if_indextoname): Rename to __if_indextoname and define as weak
4749         alias of __if_indextoname.  Use libc_hidden_weak.
4750         * include/net/if.h [!_ISOMAC] (__if_nametoindex): Declare and use
4751         libc_hidden_proto.
4752         [!_ISOMAC] (__if_freenameindex): Likewise.
4753         * resolv/res_init.c (__res_vinit): Use __if_nametoindex instead of
4754         if_nametoindex.
4755         * conform/Makefile (test-xfail-XPG4/grp.h/linknamespace): Remove
4756         variable.
4757         (test-xfail-XPG4/pwd.h/linknamespace): Likewise.
4758         (test-xfail-UNIX98/aio.h/linknamespace): Likewise.
4759         (test-xfail-UNIX98/grp.h/linknamespace): Likewise.
4760         (test-xfail-UNIX98/pthread.h/linknamespace): Likewise.
4761         (test-xfail-UNIX98/pwd.h/linknamespace): Likewise.
4762         (test-xfail-UNIX98/sched.h/linknamespace): Likewise.
4763         (test-xfail-UNIX98/time.h/linknamespace): Likewise.
4765         * conform/Makefile (test-xfail-UNIX98/semaphore.h/linknamespace):
4766         Remove variable.
4767         (test-xfail-XOPEN2K/semaphore.h/linknamespace): Likewise.
4768         (test-xfail-XOPEN2K8/semaphore.h/linknamespace): Likewise.
4770 2014-12-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
4772         * resolv/res_send.c (__libc_res_nsend): Disable warning 'array
4773         subscript above bounds'
4775         * resolv/res_send.c (__libc_res_nsend): Fix check for nsmap
4776         bounds.
4778 2014-12-16  Arjun Shankar  <arjun.is@lostca.se>
4780         * libio/tst-fopenloc.c: Use test-skeleton.c.
4782         * stdlib/tst-bsearch.c: Use test-skeleton.c.
4783         (entry): Rename to ITEM.
4784         (do_test, comp): Adjust.
4786         * stdio-common/tst-fseek.c: Use test-skeleton.c.
4788 2014-12-16  Torvald Riegel  <triegel@redhat.com>
4790         * string/tester.c: Include <libc-internal.h>.
4791         (test_memset): Ignore -Wmemset-transposed-args.
4793 2014-12-16  Torvald Riegel  <triegel@redhat.com>
4795         * misc/tst-mntent2.c (do_test): Fix warning.
4797 2014-12-16  Torvald Riegel  <triegel@redhat.com>
4799         * elf/tst-unique4lib.cc(a): Mark as used.
4801 2014-12-16  Florian Weimer  <fweimer@redhat.com>
4803         [BZ #17630]
4804         * resolv/nss_dns/dns-network.c (getanswer_r): Iterate over alias
4805         names.
4807 2014-12-16  Allan McRae  <allan@archlinux.org>
4809         * stdio-common/Makefile (tests): Re-add bug26.
4811 2014-12-15  Ondřej Bílka  <neleai@seznam.cz>
4813         [BZ #17657]
4814         * locale/programs/ld-ctype.c (find_translit2, read_widestring): Return
4815         static array.
4817 2014-12-15  Bernard Ogden  <bernie.ogden@linaro.org>
4819         * nptl/lowlevellock.c (__lll_lock_wait_private): Add comments.
4820         (__lll_lock_wait): Likewise.
4821         (__lll_timedlock_wait): Likewise.
4822         (__lll_timedwait_tid): Likewise.
4823         * nptl/lowlevelrobustlock.c (__lll_robust_lock_wait): Likewise.
4824         (__lll_robust_timedlock_wait): Likewise.
4825         * sysdeps/nptl/lowlevellock.h (lll_trylock): Likewise.
4826         (lll_cond_trylock): Likewise.
4827         (__lll_lock): Likewise.
4828         (__lll_robust_lock): Likewise.
4829         (__lll_cond_lock): Likewise.
4830         (lll_robust_cond_lock): Likewise.
4831         (__lll_timedlock): Likewise.
4832         (__lll_robust_timedlock): Likewise.
4833         (__lll_unlock): Likewise.
4834         (__lll_robust_unlock): Likewise.
4835         (lll_wait_tid): Likewise.
4836         (lll_timedwait_tid): Likewise.
4838 2014-12-15  Torvald Riegel  <triegel@redhat.com>
4840         * nptl/tst-sem4.c (do_test): Start with a fresh semaphore state.
4842 2014-12-15  Torvald Riegel  <triegel@redhat.com>
4844         * nptl/tst-mutex5.c (do_test): Do not skip tests if elision is enabled.
4846 2014-12-15  Adhemerval Zanella  <Azanella@linux.vnet.ibm.com>
4848         * stdio-common/test-vfprintf.c: Include <libc-internal.h>.
4849         * stdio-common/tst-sprintf.c: Likewise.
4851 2014-12-15  Torvald Riegel  <triegel@redhat.com>
4853         * sysdeps/unix/sysv/linux/s390/pthread_once.c: Remove file.
4855 2014-12-15  Jeff Law  <law@redhat.com>
4857         [BZ #16617]
4858         * stdio-common/vfprintf.c (vfprintf): Allocate large specs array
4859         on the heap.  (CVE-2012-3406)
4860         * stdio-common/bug23-2.c, stdio-common/bug23-3.c: New file.
4861         * stdio-common/bug23-4.c: New file.  Test case by Joseph Myers.
4862         * stdio-common/Makefile (tests): Add bug23-2, bug23-3, bug23-4.
4864 2014-12-15  Will Newton  <will.newton@linaro.org>
4866         * manual/install.texi: Bump required version of texinfo
4867         to 4.7 from 4.5.
4868         * INSTALL: Regenerated.
4869         * configure.ac: Check for makeinfo version 4.7 and above.
4870         * configure: Regenerated.
4872 2014-12-12  Roland McGrath  <roland@hack.frob.com>
4874         * sysdeps/posix/shm-directory.h (SHM_GET_NAME): Take new argument
4875         PREFIX, string constant to insert between directory and name.
4876         * sysdeps/posix/shm_open.c: Update caller.
4877         * sysdeps/posix/shm_unlink.c: Likewise.
4878         * nptl/semaphoreP.h (struct mountpoint_info): Type removed.
4879         (__where_is_shmfs, mountpoint, __namedsem_once): Declarations removed.
4880         (SEM_SHM_PREFIX): New macro.
4881         * sysdeps/posix/Makefile (librt-routines): Add shm-directory only if
4882         [$(have-thread-library) = no].
4883         * nptl/Makefile (libpthread-routines): Add shm-directory.
4884         * nptl/Versions (GLIBC_PRIVATE): Add __shm_directory.
4885         * sysdeps/nptl/shm-directory.h: New file.
4886         * sysdeps/posix/shm-directory.c
4887         [IS_IN (libpthread)] (__shm_directory): Add hidden_def.
4888         * sysdeps/unix/sysv/linux/shm-directory.c: Likewise.
4889         * nptl/sem_open.c (check_add_mapping): Use munmap function rather than
4890         INTERNAL_SYSCALL.
4891         (__where_is_shmfs): Function removed.
4892         (mountpoint, defaultmount, defaultdir, __namedsem_once):
4893         Variables removed.
4894         (sem_open): Use __libc_close function rather than INTERNAL_SYSCALL.
4895         Use SHM_GET_NAME.
4896         * nptl/sem_unlink.c: Prototypify.  Use SHM_GET_NAME.
4898         * sysdeps/nptl/bits/libc-lockP.h [IS_IN (libpthread)]
4899         (PTFAVAIL, __libc_ptf_call, __libc_ptf_call_always): Define as
4900         unconditional for use inside libpthread.
4901         [IS_IN (libpthread)]: Include <nptl/pthreadP.h>.
4903 2014-12-12  Roland McGrath  <roland@hack.frob.com>
4905         * nptl/pthread_getaffinity.c: New file.
4906         * nptl/pthread_setaffinity.c: New file.
4907         * nptl/pthread_getname.c: New file.
4908         * nptl/pthread_setname.c: New file.
4910         * nptl/pthread_create.c (START_THREAD_DEFN)
4911         [! __ASSUME_SET_ROBUST_LIST]: Add missing & in lll_futex_wake argument.
4913 2014-12-12  Stefan Liebler  <stli@linux.vnet.ibm.com>
4914             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
4916         * resolv/res_send.c (send_vc): Disable warning resplen may
4917         be used uninitialized.
4919 2014-12-12  Stefan Liebler  <stli@linux.vnet.ibm.com>
4921         * nptl/tst-mutex6.c
4922         (ATTR_NULL): New define checks ATTR against NULL.
4923         (do_test): Use !ATTR_NULL instead of ATTR != NULL.
4924         * nptl/tst-mutexpp6.c (ATTR_NULL): New define.
4926 2014-12-11  James Lemke  <jwlemke@codesourcery.com>
4928         [BZ #17581]
4929         * malloc/hooks.c
4930         (mem2mem_check): Revert my previous change.
4931         (malloc_check_get_size): Revert my previous change.
4932         (mem2chunk_check): Revert my previous change.
4934 2014-12-11  Roland McGrath  <roland@hack.frob.com>
4936         * sysdeps/posix/shm-directory.c: New file.
4937         * sysdeps/posix/shm-directory.h: New file.
4938         * sysdeps/posix/Makefile [($(subdir) = rt] (librt-routines): Add it.
4939         * sysdeps/posix/shm_open.c: Use SHM_GET_NAME.
4940         Use O_NOFOLLOW and O_CLOEXEC if available.  Transmute EISDIR to EINVAL.
4941         * sysdeps/posix/shm_unlink.c: Use SHM_GET_NAME.
4942         Transmute EPERM to EACCES.
4943         * sysdeps/unix/sysv/linux/shm-directory.c: New file, most code taken
4944         from ...
4945         * sysdeps/unix/sysv/linux/shm_open.c: ... here.  File removed.
4946         * sysdeps/unix/sysv/linux/shm_unlink.c: File removed.
4948 2014-12-11  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
4950         * sysdeps/sh/jmpbuf_unwind.h (_jmpbuf_sp): Declare SP as void
4951         pointer and cast to uintptr_t.
4952         * sysdeps/sh/nptl/tls.h (TLS_INIT_TP): Use NULL instead of 0.
4953         * sysdeps/unix/sysv/linux/sh/lowlevellock.h (lll_futex_timed_wait):
4954         Add cast to avoid warning.
4955         * sysdeps/unix/sysv/linux/sh/register-dump.h: Use 0 instead of NULL.
4957 2014-12-11  Joseph Myers  <joseph@codesourcery.com>
4959         * nptl/semaphore.h: Move to ...
4960         * sysdeps/pthread/semaphore.h: ... here.
4961         * Makefile (installed-headers): Change nptl/semaphore.h to
4962         sysdeps/pthread/semaphore.h.
4964 2014-12-11  Roland McGrath  <roland@hack.frob.com>
4966         * misc/tst-error1.c (do_test): Ignore -Wformat-security for
4967         generated error format strings.
4969         * stdio-common/tstdiomisc.c (t2): Ignore -Wformat and
4970         -Wformat-extra-args warnings for scanf formats.
4971         * stdio-common/scanf4.c (main): Ignore -Wformat-zero-length around
4972         test of zero-length format (duh).
4973         * stdio-common/scanf7.c (main): Ignore -Wformat warnings for
4974         corner-case scanf format test.
4975         * stdio-common/test-vfprintf.c (do_test): Ignore -Wformat-security for
4976         generated fprintf format string.
4977         * stdio-common/tst-sprintf.c (do_test): Ignore -Wformat warnings for
4978         corner-case sprintf format tests.
4979         * stdio-common/tst-printf.c: Ignore -Wformat throughout.
4980         * stdio-common/tst-printfsz.c (main): Ignore -Wformat and
4981         -Wformat-extra-args warnings throughout.
4982         * stdio-common/Makefile (CFLAGS-tstdiomisc.c): Variable removed.
4983         (CFLAGS-scanf4.c): Likewise.
4984         (CFLAGS-scanf7.c): Likewise.
4985         (CFLAGS-tst-sprintf.c): Likewise.
4986         (CFLAGS-tst-printf.c): Likewise.
4987         (CFLAGS-tst-printfsz.c): Likewise.
4989 2014-12-11  Joseph Myers  <joseph@codesourcery.com>
4991         * include/cpio.h: New file.
4992         * include/fmtmsg.h: Likewise.
4994         * tst-mbswcs1.c (show): Use %zu format instead of %Zd.  Cast
4995         corresponding format argument to size_t.
4996         * tst-mbswcs2.c (show): Likewise.  Use %td format for ptrdiff_t
4997         arguments.
4998         * tst-mbswcs3.c (show): Use %zu format instead of %Zd.  Cast
4999         corresponding format argument to size_t.
5000         * tst-mbswcs4.c (show): Likewise.  Use %td format for ptrdiff_t
5001         arguments.
5002         * tst-mbswcs5.c (show): Use %zu format instead of %Zd.  Cast
5003         corresponding format argument to size_t.
5004         * tst-trans.c (do_test): Use %lc format for wint_t arguments.
5005         * Makefile (CFLAGS-tst-mbswcs1.c): Remove variable.
5006         (CFLAGS-tst-mbswcs2.c): Likewise.
5007         (CFLAGS-tst-mbswcs3.c): Likewise.
5008         (CFLAGS-tst-mbswcs4.c): Likewise.
5009         (CFLAGS-tst-mbswcs5.c): Likewise.
5010         (CFLAGS-tst-trans.c): Likewise
5012 2014-12-11  Roland McGrath  <roland@hack.frob.com>
5014         * posix/regexbug1.c (main): Use "%s" format with regerror results,
5015         rather than assuming they won't contain any '%'s.
5017 2014-12-11  Chris Metcalf  <cmetcalf@ezchip.com>
5019         * sysdeps/tile/tilegx/memset.c (__memcpy): Add
5020         inhibit_loop_to_libcall to avoid recursive calls.
5021         * sysdeps/tile/tilegx/memcpy.c (__memcpy): Likewise.
5022         * sysdeps/tile/tilepro/memcpy.c (__memcpy): Likewise.
5024 2014-12-11  Adhemerval Zanella  <Azanella@linux.vnet.ibm.com>
5026         * include/sys/socket.h (__sendmmsg): Add __USE_GNU guards on function
5027         prototype.
5029 2014-12-11  Steve Ellcey  <sellcey@imgtec.com>
5031         * sysdeps/mips/dl-trampoline.c: Modify switch expression to have
5032         integer value instead of boolean.
5034 2014-12-11  Steve Ellcey  <sellcey@imgtec.com>
5036         * malloc/malloc.c: Fix powerof2 check.
5038 2014-12-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
5040         * locale/programs/locfile.h (maybe_swap_uint32):
5041         Remove inline and add unused attribute.
5043 2014-12-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
5045         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_load_address):
5046         Truncating assembler expression to a .long expression.
5048 2014-12-11  Andreas Schwab  <schwab@suse.de>
5050         * elf/rtld.c (struct map_args): Constify str member.
5051         (do_preload): Constify fname argument.
5053 2014-12-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5055         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Remove overflow warnings for
5056         constants definition.
5058 2014-12-11  Andreas Schwab  <schwab@suse.de>
5060         [BZ #16657]
5061         * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock): Use
5062         FORCE_ELISION instead of DO_ELISION.
5063         * sysdeps/unix/sysv/linux/x86/force-elision.h (DO_ELISION):
5064         Remove.
5065         * sysdeps/unix/sysv/linux/s390/force-elision.h (DO_ELISION):
5066         Likewise.
5068         * iconvdata/gconv-modules: Remove duplicate entry.
5070 2014-12-11  Will Newton  <will.newton@linaro.org>
5072         Merge gettext 0.19.3 into intl/.
5074         This involves a number of cosmetic changes to comments
5075         and ANSI function definitions and prototypes throughout
5076         all the files. The gettext copyright header is used but
5077         with the date ranges taken from the glibc copy.
5079         * NEWS: Add gettext merge to 2.21.
5080         * intl/bindtextdom.c: Switch to gettext copyright.
5081         Use ANSI definitions and prototypes.
5082         Use gl_* locking primitives rather than __libc_* ones.
5083         Use __builtin_expect rather than __glibc_likely/unlikely.
5084         * intl/dcgettext.c: Switch to gettext copyright.
5085         Use ANSI definitions and prototypes.
5086         * intl/dcigettext.c: Switch to gettext copyright.
5087         Use ANSI definitions and prototypes.
5088         (INTDIV0_RAISES_SIGFPE): New define.
5089         Use gl_* locking primitives rather than __libc_* ones.
5090         Include eval-plural.h instead of plural-eval.c.
5091         Use __builtin_expect rather than __glibc_likely/unlikely.
5092         * intl/dcngettext.c: Switch to gettext copyright.
5093         Use ANSI definitions and prototypes.
5094         * intl/dgettext.c: Likewise.
5095         * intl/dngettext.c: Likewise.
5096         * intl/plural-eval.c: Renamed to...
5097         * intl/eval-plural.h: ...this.
5098         * intl/explodename.c: Switch to gettext copyright.
5099         Use ANSI definitions and prototypes.
5100         (_nl_explode_name): Use strchr instead of __rawmemchr.
5101         * intl/finddomain.c: Switch to gettext copyright.
5102         Use ANSI definitions and prototypes.
5103         Use gl_* locking primitives rather than __libc_* ones.
5104         (_nl_find_domain): Use malloc rather than alloca for
5105         allocation of temporary locale name.
5106         * intl/gettext.c: Switch to gettext copyright.
5107         Use ANSI definitions and prototypes.
5108         * intl/gettextP.h: Switch to gettext copyright.
5109         Use ANSI definitions and prototypes.
5110         Use gl_* locking primitives rather than __libc_* ones.
5111         * intl/gmo.h: Switch to gettext copyright.
5112         (struct sysdep_string): Move struct segment_pair outside of
5113         struct definition.
5114         * intl/hash-string.c: Use ANSI definitions and prototypes.
5115         * intl/hash-string.h: Switch to gettext copyright.
5116         Use ANSI definitions and prototypes.
5117         * intl/l10nflist.c: Switch to gettext copyright.
5118         Use ANSI definitions and prototypes.
5119         (_nl_normalize_codeset): Avoid integer overflow.
5120         * intl/loadinfo.h: Switch to gettext copyright.
5121         Use ANSI definitions and prototypes.
5122         (LIBINTL_DLL_EXPORTED): New define.
5123         (PATH_SEPARATOR): New define.
5124         * intl/loadmsgcat.c: Switch to gettext copyright.
5125         * intl/localealias.c: Switch to gettext copyright.
5126         Use ANSI definitions and prototypes.
5127         (_nl_expand_alias): Use PATH_SEPARATOR.
5128         * intl/ngettext.c: Switch to gettext copyright.
5129         Use ANSI definitions and prototypes.
5130         * intl/plural-exp.c: Likewise.
5131         * intl/plural-exp.h: Switch to gettext copyright.
5132         Use ANSI definitions and prototypes.
5133         (struct expression): Move definition of enum operator outside
5134         of struct definition.
5135         * intl/plural.c: Regenerate.
5136         * intl/plural.y: Switch to gettext copyright.
5137         Use ANSI definitions and prototypes.
5138         Port to bison 3.0.
5139         * intl/textdomain.c: Switch to gettext copyright.
5140         Use ANSI definitions and prototypes.
5141         Use gl_* locking primitives rather than __libc_* ones.
5143 2014-12-10  Steve Ellcey  <sellcey@imgtec.com>
5145         * debug/warning-nop.c: Add used atrribute.
5147 2014-12-10  Joseph Myers  <joseph@codesourcery.com>
5149         * sysdeps/unix/sysv/linux/mips/mips32/waitid.c: New file.
5151         * sysdeps/unix/sysv/linux/mips/mips64/Makefile
5152         [$(subdir) == signal] (CFLAGS-sigaction.c): New variable.
5153         [$(subdir) == nptl] (CFLAGS-sigaction.c): Likewise.
5155 2014-12-10  Joseph Myers  <joseph@codesourcery.com>
5156             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5158         [BZ #17634]
5159         * wcsmbs/wcschr.c [!WCSCHR] (wcschr): Define as __wcschr.
5160         Undefine after defining function.  Define as weak alias of
5161         __wcschr.  Use libc_hidden_weak.
5162         * include/wchar.h (__wcschr): Declare.  Use libc_hidden_proto.
5163         * sysdeps/i386/i686/multiarch/wcschr-c.c [IS_IN (libc) && SHARED]
5164         (libc_hidden_def): Also define __GI___wcschr alias.
5165         * sysdeps/i386/i686/multiarch/wcschr.S (wcschr): Rename to
5166         __wcschr and define as weak alias of __wcschr.
5167         * sysdeps/powerpc/power6/wcschr.c [!WCSCHR] (WCSCHR): Define as
5168         __wcschr.
5169         [!WCSCHR] (DEFAULT_WCSCHR): Define.
5170         [DEFAULT_WCSCHR] (__wcschr): Use libc_hidden_def.
5171         [DEFAULT_WCSCHR] (wcschr): Define as weak alias of __wcschr.  Use
5172         libc_hidden_weak.  Do not use libc_hidden_def.
5173         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c
5174         [IS_IN (libc) && SHARED] (libc_hidden_def): Also define
5175         __GI___wcschr alias.
5176         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c
5177         [IS_IN (libc)] (wcschr): Define as macro expanding to
5178         __redirect_wcschr.
5179         [IS_IN (libc)] (__wcschr_ppc): Use __redirect_wcschr in typeof.
5180         [IS_IN (libc)] (__wcschr_power6): Likewise.
5181         [IS_IN (libc)] (__wcschr_power7): Likewise.
5182         [IS_IN (libc)] (__libc_wcschr): New.  Define with libc_ifunc
5183         instead of wcschr.
5184         [IS_IN (libc)] (wcschr): Undefine and define as weak alias of
5185         __libc_wcschr.
5186         [!IS_IN (libc)] (libc_hidden_def): Do not undefine and redefine.
5187         * sysdeps/powerpc/powerpc64/multiarch/wcschr.c (wcschr): Rename to
5188         __wcschr and define as weak alias of __wcschr.  Use
5189         libc_hidden_builtin_def.
5190         * sysdeps/x86_64/wcschr.S (wcschr): Rename to __wcschr and define
5191         as weak alias of __wcschr.  Use libc_hidden_weak.
5192         * time/alt_digit.c (_nl_get_walt_digit): Use __wcschr instead of
5193         wcschr.
5194         * time/era.c (_nl_init_era_entries): Likewise.
5195         * conform/Makefile (test-xfail-ISO/time.h/linknamespace): Remove
5196         variable.
5197         (test-xfail-XPG3/time.h/linknamespace): Likewise.
5198         (test-xfail-XPG4/time.h/linknamespace): Likewise.
5200 2014-12-10  Joseph Myers  <joseph@codesourcery.com>
5202         * libio/tst-ftell-active-handler.c (do_ftruncate_test): Use %ld
5203         format for long int variable.
5205 2014-12-10  Anders Kaseorg  <andersk@MIT.EDU>
5207         [BZ #10672]
5208         * manual/search.texi: (Array Sort Function): Remove claim how to make
5209         qsort stable.
5211 2014-12-10  Andreas Schwab  <schwab@suse.de>
5213         [BZ #12847]
5214         * sysdeps/nptl/fork.c (fresetlockfiles): Skip files with
5215         user-controlled locks.
5217 2014-12-10  Richard Earnshaw  <rearnsha@arm.com>
5219         * sysdeps/aarch64/strchrnul.S (vrepmask): Use a call-clobbered
5220         register.
5222 2014-12-10  Joseph Myers  <joseph@codesourcery.com>
5224         * configure.ac (--disable-werror): New configure option.
5225         (enable_werror): New AC_SUBST.
5226         * configure: Regenerated.
5227         * config.make.in (enable-werror): New variable.
5228         * Makeconfig [$(enable-werror) = yes] (+gccwarn): Add -Werror
5229         -Wno-error=undef.
5230         (+gccwarn-c): Do not use -Werror=implicit-function-declaration.
5231         * manual/install.texi (Configuring and compiling): Document
5232         --disable-werror.
5233         * INSTALL: Regenerated.
5234         * debug/Makefile (CFLAGS-tst-chk1.c): Add -Wno-error.
5235         (CFLAGS-tst-chk2.c): Likewise.
5236         (CFLAGS-tst-chk3.c): Likewise.
5237         (CFLAGS-tst-chk4.cc): Likewise.
5238         (CFLAGS-tst-chk5.cc): Likewise.
5239         (CFLAGS-tst-chk6.cc): Likewise.
5240         (CFLAGS-tst-lfschk1.c): Likewise.
5241         (CFLAGS-tst-lfschk2.c): Likewise.
5242         (CFLAGS-tst-lfschk3.c): Likewise.
5243         (CFLAGS-tst-lfschk4.cc): Likewise.
5244         (CFLAGS-tst-lfschk5.cc): Likewise.
5245         (CFLAGS-tst-lfschk6.cc): Likewise.
5247         * stdio-common/tst-printfsz.c: Include <libc-internal.h>.
5248         (main): Disable -Wdeprecated-declarations around calls to
5249         register_printf_function.
5251         * stdio-common/tst-unlockedio.c: Include <libc-internal.h>.
5252         (do_test): Disable -Wdiv-by-zero around some calls to
5253         fwrite_unlocked and fread_unlocked.
5255         * include/libc-internal.h (DIAG_PUSH_NEEDS_COMMENT): New macro.
5256         (DIAG_POP_NEEDS_COMMENT): Likewise.
5257         (_DIAG_STR1): Likewise.
5258         (_DIAG_STR): Likewise.
5259         (DIAG_IGNORE_NEEDS_COMMENT): Likewise.
5260         * stdio-common/bug21.c: Include <libc-internal.h>.
5261         (do_test): Disable -Wformat around call to sscanf.
5262         * stdio-common/scanf14.c: Include <libc-internal.h>.
5263         (main): Disable -Wformat around some calls to scanf functions.
5265 2014-12-09  Torvald Riegel  <triegel@redhat.com>
5267         * sysdeps/unix/sysv/linux/sh/pthread_once.S: Remove file.
5269 2014-12-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5271         * libio/tst-ftell-active-handler.c (do_ftell_test): Fix wide-character
5272         stack variable alignment.
5274 2014-12-06  Joseph Myers  <joseph@codesourcery.com>
5276         [BZ #17682]
5277         * resource/Versions (libc): Add __getrlimit at GLIBC_PRIVATE.
5278         * resource/getrlimit.c (__getrlimit): Use libc_hidden_def.
5279         * sysdeps/mach/hurd/getrlimit.c (__getrlimit): Likewise.
5280         * include/sys/resource.h (__getrlimit): Use libc_hidden_proto.
5281         * nptl/nptl-init.c (__pthread_initialize_minimal_internal): Use
5282         __getrlimit instead of getrlimit.
5283         * nptl/pthread_cond_timedwait.c (__pthread_cond_timedwait): Use
5284         __gettimeofday instead of gettimeofday.
5285         * nptl/pthread_rwlock_timedrdlock.c (pthread_rwlock_timedrdlock):
5286         Likewise.
5287         * nptl/pthread_rwlock_timedwrlock.c (pthread_rwlock_timedwrlock):
5288         Likewise.
5289         * sysdeps/pthread/aio_misc.c (handle_fildes_io): Likewise.
5290         * conform/Makefile (test-xfail-POSIX2008/aio.h/linknamespace):
5291         Remove variable.
5292         (test-xfail-POSIX2008/pthread.h/linknamespace): Likewise.
5293         (test-xfail-POSIX2008/time.h/linknamespace): Likewise.
5295 2014-12-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5297         * libio/tst-ftell-active-handler.c (do_ftell_test): Fix buffer overrun
5298         for wide-character tests.
5300 2014-12-04  Roland McGrath  <roland@hack.frob.com>
5302         * io/openat64.c: #include <libc-internal.h>
5303         (__openat64): Prototypify.  Use ignore_value on MODE.
5304         * io/openat.c: Likewise.
5305         * misc/reboot.c: #include <libc-internal.h>
5306         (reboot): Prototypify.  Use ignore_value on HOWTO.
5307         * misc/ptrace.c: #include <libc-internal.h>
5308         (ptrace): Prototypify.  Use ignore_value for va_arg'd parameters.
5310 2014-12-04  Joseph Myers  <joseph@codesourcery.com>
5312         * conform/list-header-symbols.pl (%extra_syms): Add h_errno for
5313         XPG4, UNIX98 and XOPEN2K.
5314         * conform/Makefile (test-xfail-XOPEN2K/grp.h/linknamespace):
5315         Remove variable.
5316         (test-xfail-XOPEN2K/pwd.h/linknamespace): Likewise.
5318 2014-12-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
5320         * libio/fileops.c: Use ISO C style for function definitions.
5321         * libio/iofopen.c: Likewise.
5322         * libio/wfileops.c: Likewise.
5324         [BZ #17653]
5325         * libio/fileops.c (_IO_new_file_underflow): Unset cached
5326         offset on EOF.
5327         * libio/wfileops.c (_IO_wfile_underflow): Likewise.
5328         * libio/tst-ftell-active-handler.c (fgets_func_t): New type.
5329         (fgets_func): Function pointer to fgets and fgetws.
5330         (do_ftell_test): Add test to verify ftell value after read
5331         EOF.
5332         (do_test): Set fgets_func.
5334         * libio/tst-ftell-active-handler.c (do_ftruncate_test): Add
5335         O_TRUNC flag for w and w+ modes.
5336         (do_rewind_test): Likewise.
5337         (do_ftell_test): Likewise.
5338         (do_write_test): Likewise.
5340         [BZ #17647]
5341         * libio/fileops.c (do_ftell): Seek only when there are
5342         unflushed writes.
5343         * libio/wfileops.c (do_ftell_wide): Likewise.
5344         * libio/tst-ftell-active-handler.c (do_ftruncate_test): New
5345         test case.
5346         (do_one_test): Call it.
5348 2014-12-03  Joseph Myers  <joseph@codesourcery.com>
5350         * conform/list-header-symbols.pl (%extra_syms): Add getdate_err
5351         for XPG4, UNIX98, XOPEN2K and XOPEN2K8.
5352         * conform/Makefile (test-xfail-XOPEN2K/pthread.h/linknamespace):
5353         Remove variable.
5354         (test-xfail-XOPEN2K/time.h/linknamespace): Likewise.
5355         (test-xfail-XOPEN2K8/pthread.h/linknamespace): Likewise.
5356         (test-xfail-XOPEN2K8/time.h/linknamespace): Likewise.
5358 2014-12-02  Joseph Myers  <joseph@codesourcery.com>
5360         * conform/Makefile (test-xfail-XOPEN2K/aio.h/linknamespace):
5361         Remove variable.
5362         (test-xfail-XOPEN2K8/aio.h/linknamespace): Likewise.
5364         [BZ #17668]
5365         * inet/ifaddrs.c (getifaddrs): Rename to __getifaddrs and define
5366         as weak alias of __getifaddrs.  Use libc_hidden_weak.
5367         (freeifaddrs): Rename to __freeifaddrs and define as weak alias of
5368         __freeifaddrs.  Use libc_hidden_weak.
5369         * sysdeps/gnu/ifaddrs.c (getifaddrs): Rename to __getifaddrs and
5370         define as weak alias of __getifaddrs.  Use libc_hidden_weak.
5371         (freeifaddrs): Rename to __freeifaddrs and define as weak alias of
5372         __freeifaddrs.  Use libc_hidden_weak.
5373         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs): Rename to
5374         __getifaddrs and define as weak alias of __getifaddrs.  Use
5375         libc_hidden_weak.
5376         (freeifaddrs): Rename to __freeifaddrs and define as weak alias of
5377         __freeifaddrs.  Use libc_hidden_weak.
5378         * conform/Makefile (test-xfail-XOPEN2K/net/if.h/linknamespace):
5379         Remove variable.
5380         (test-xfail-POSIX2008/net/if.h/linknamespace): Likewise.
5381         (test-xfail-XOPEN2K8/net/if.h/linknamespace): Likewise.
5383 2014-12-02  Petar Jovanovic  <petar.jovanovic@rt-rk.com>
5385         [BZ #17601]
5386         * sysdeps/mips/start.S (__start): Use indirect jump to call
5387         __libc_start_main.
5389 2014-12-02  Joseph Myers  <joseph@codesourcery.com>
5391         * nptl/tst-stack4.c (dso_process): Use int not uintptr_t for t.
5393         * nptl/tst-mutex1.c: Include <stdbool.h>.
5394         [!ATTR] (ATTR_NULL): New macro.
5395         (do_test): Test !ATTR_NULL instead of ATTR != NULL.
5396         * nptl/tst-mutexpi1.c (ATTR_NULL): New macro.
5397         * nptl/tst-mutexpp1.c (ATTR_NULL): New macro.
5399         * posix/tst-getopt_long1.c (do_test): Cast elements of argv array
5400         to char *.
5402         [BZ #17665]
5403         * posix/unistd.h [__USE_MISC || (__USE_XOPEN && !__USE_UNIX98)]:
5404         Change conditional to [__USE_MISC].
5406         [BZ #17664]
5407         * misc/mntent_r.c (__getmntent_r): Use __fgets_unlocked instead of
5408         fgets_unlocked.
5409         * resolv/res_hconf.c [IS_IN (libc)] (fgets_unlocked): Define to
5410         __fgets_unlocked.
5411         * resolv/res_init.c (__res_vinit): Use __fgets_unlocked instead of
5412         fgets_unlocked.
5413         * conform/Makefile (test-xfail-XPG4/sys/statvfs.h/linknamespace):
5414         Remove variable.
5415         (test-xfail-POSIX/sys/mman.h/linknamespace): Likewise.
5416         (test-xfail-UNIX98/sys/mman.h/linknamespace): Likewise.
5417         (test-xfail-UNIX98/sys/statvfs.h/linknamespace): Likewise.
5418         (test-xfail-XOPEN2K/sys/mman.h/linknamespace): Likewise.
5419         (test-xfail-XOPEN2K/sys/statvfs.h/linknamespace): Likewise.
5420         (test-xfail-POSIX2008/sys/mman.h/linknamespace): Likewise.
5421         (test-xfail-POSIX2008/sys/statvfs.h/linknamespace): Likewise.
5422         (test-xfail-XOPEN2K8/sys/mman.h/linknamespace): Likewise.
5423         (test-xfail-XOPEN2K8/sys/statvfs.h/linknamespace): Likewise.
5425         * elf/tst-unique4lib.cc (b): Mark with __attribute__ ((used)).
5427 2014-12-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5429         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
5430         Remove strpbrk objects.
5431         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
5432         (__libc_ifunc_impl_list): Remove strpbrk implementation.
5433         * sysdeps/powerpc/powerpc64/multiarch/strpbrk-ppc64.c: Remove file.
5434         * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: Remove file.
5435         * sysdeps/powerpc/powerpc64/power7/strpbrk.S: Remove file.
5436         * sysdeps/powerpc/powerpc64/strpbrk.S: New file.
5438         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
5439         Remove strcspn objects.
5440         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
5441         (__libc_ifunc_impl_list): Remove strcspn implementation.
5442         * sysdeps/powerpc/powerpc64/multiarch/strcspn-ppc64.c: Remove file.
5443         * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: Remove file.
5444         * sysdeps/powerpc/powerpc64/power7/strcspn.S: Remove file.
5445         * sysdeps/powerpc/powerpc64/strcspn.S: New file.
5447         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
5448         Remove strspn objetcs.
5449         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
5450         (__libc_ifunc_impl_list): Remove strspn implementation.
5451         * sysdeps/powerpc/powerpc64/multiarch/strspn-power7.S: Remove file.
5452         * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: Likewise.
5453         * sysdeps/powerpc/powerpc64/power7/strspn.S: Remove file.
5454         * sysdeps/powerpc/powerpc64/strspn.S: New file.
5456 2014-12-01  James Lemke  <jwlemke@codesourcery.com>
5458         [BZ #17581]
5459         * malloc/hooks.c
5460         (mem2mem_check): Add a terminator to the chain of checking blocks.
5461         (malloc_check_get_size): Use it here.
5462         (mem2chunk_check): Ditto.
5464 2014-12-01  Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
5466         * sysdeps/powerpc/powerpc64/strtok.S: New file.
5467         * sysdeps/powerpc/powerpc64/strtok_r.S: New file.
5469 2014-11-29  Carlos O'Donell  <carlos@redhat.com>
5471         * bits/ioctl-types.h: Indent preprocessor directives correctly.
5473         * nptl/nptl-init.c: Include libc-internal.h.
5474         (__pthread_initialize_minimal_internal): Use ROUND_UP.
5476         * elf/ldconfig.c (search_dir): Expand comment.
5478 2014-11-29  Joseph Myers  <joseph@codesourcery.com>
5480         * conform/Makefile (linknamespace-symlist-stdlibs-base): New
5481         variable.
5482         (linknamespace-symlist-stdlibs-tests): Likewise.
5483         (tests-special): Append $(linknamespace-symlist-stdlibs-tests)
5484         instead of $(objpfx)symlist-stdlibs.
5485         (linknamespace-libs-isoc): New variable.
5486         (linknamespace-libs): Use $(linknamespace-libs-isoc).
5487         (linknamespace-libs-ISO): New variable.
5488         (linknamespace-libs-ISO99): Likewise.
5489         (linknamespace-libs-ISO11): Likewise.
5490         (linknamespace-libs-XPG3): Likewise.
5491         (linknamespace-libs-XPG4): Likewise.
5492         (linknamespace-libs-POSIX): Likewise.
5493         (linknamespace-libs-UNIX98): Likewise.
5494         (linknamespace-libs-XOPEN2K): Likewise.
5495         (linknamespace-libs-POSIX2008): Likewise.
5496         (linknamespace-libs-XOPEN2K8): Likewise.
5497         ($(objpfx)symlist-stdlibs): Replace by
5498         $(linknamespace-symlist-stdlibs-tests).  Use
5499         $(linknamespace-libs-$*) as set of libraries.
5500         ($(linknamespace-header-tests)): Update dependencies.  Use
5501         $(objpfx)symlist-stdlibs-$$std for --libsyms argument.
5502         (test-xfail-XPG4/sys/mman.h/linknamespace): Remove.
5503         * conform/linknamespace.pl: Remove comment about considering
5504         definitions of symbols from irrelevant libraries.
5506 2014-11-28  H.J. Lu  <hongjiu.lu@intel.com>
5508         [BZ #13862]
5509         * elf/dl-tls.c: Include <atomic.h>.
5510         (oom): Remove #ifdef SHARED/#endif.
5511         (_dl_static_dtv, _dl_initial_dtv): Moved before ...
5512         (_dl_resize_dtv): This.  Extracted from _dl_update_slotinfo.
5513         (_dl_allocate_tls_init): Resize DTV if the current DTV isn't
5514         big enough.
5515         (_dl_update_slotinfo): Call _dl_resize_dtv to resize DTV.
5516         * nptl/Makefile (tests): Add tst-stack4.
5517         (modules-names): Add tst-stack4mod.
5518         ($(objpfx)tst-stack4): New.
5519         (tst-stack4mod.sos): Likewise.
5520         ($(objpfx)tst-stack4.out): Likewise.
5521         ($(tst-stack4mod.sos)): Likewise.
5522         (clean): Likewise.
5523         * nptl/tst-stack4.c: New file.
5524         * nptl/tst-stack4mod.c: Likewise.
5526 2014-11-27  J. Brown  <jb999@gmx.de>
5528         * sysdeps/x86/bits/string.h: Add recent CPUs.
5530 2014-11-27  Joseph Myers  <joseph@codesourcery.com>
5532         * misc/tst-pselect.c (do_test): Use sigprocmask instead of
5533         sigblock.
5535         * libio/bug-ungetwc1.c (do_test): Verify results of getwc and
5536         feof.
5538         * dlfcn/failtestmod.c (constr): Do not store result of dlsym in a
5539         variable.
5541 2014-11-27  Stefan Liebler  <stli@linux.vnet.ibm.com>
5543         * nscd/connections.c: Include libc-internal.h because of macro
5544         usage ignore_value.
5546 2014-11-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
5548         * string/bits/string3.h (__warn_memset_zero_len): Don't
5549         declare for gcc newer than 5.0.
5550         (memset): Don't test for zero-length __LEN for gcc newer than
5551         5.0.
5553 2014-11-27  Joseph Myers  <joseph@codesourcery.com>
5555         * stdio-common/tst-fmemopen.c (do_test): Cast st_size values to
5556         size_t for %zu format.
5558         * nss/tst-nss-test1.c (do_test): Use %td printf format for pointer
5559         difference, not %ju.
5561 2014-11-26  Joseph Myers  <joseph@codesourcery.com>
5563         * include/libc-internal.h (ignore_value): New macro.
5564         * nscd/connections.c (restart): Wrap calls to setuid and setgid
5565         with ignore_value.
5567         * sysdeps/mips/__longjmp.c (____longjmp): Use prototype
5568         definition.
5570         * nptl/tst-cancel-self-cancelstate.c (do_test): Cast argument of
5571         pthread_cleanup_push to void *.
5573         * sysdeps/unix/sysv/linux/arm/libc-do-syscall.S (_FORTIFY_SOURCE):
5574         Undefine.
5576         [BZ #16619]
5577         [BZ #16740]
5578         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Use 1LL << 52
5579         instead of 1L << 52.
5581         * libio/bug-rewind.c (do_test): Check fwscanf return values.
5582         * libio/bug-rewind2.c (do_test): Likewise.
5584         * debug/test-stpcpy_chk-ifunc.c: Remove file.
5585         * debug/test-strcpy_chk-ifunc.c: Likewise.
5586         * wcsmbs/test-wcschr-ifunc.c: Likewise.
5587         * wcsmbs/test-wcscmp-ifunc.c: Likewise.
5588         * wcsmbs/test-wcscpy-ifunc.c: Likewise.
5589         * wcsmbs/test-wcslen-ifunc.c: Likewise.
5590         * wcsmbs/test-wcsrchr-ifunc.c: Likewise.
5591         * wcsmbs/test-wmemcmp-ifunc.c: Likewise.
5592         * Rules [$(multi-arch) = no] (tests): Do not filter out
5593         $(tests-ifunc).
5594         [$(multi-arch) = no] (xtests): Do not filter out $(xtests-ifunc).
5595         * debug/Makefile (tests-ifunc): Remove variable.
5596         (tests): Do not add $(tests-ifunc).
5597         * wcsmbs/Makefile (tests-ifunc): Remove variable.
5598         (tests): Do not add $(tests-ifunc).
5599         * benchtests/bench-string.h (TEST_IFUNC): Remove macro.
5600         [TEST_IFUNC]: Remove conditionals.
5601         * string/test-string.h (TEST_IFUNC): Remove macro.
5602         [TEST_IFUNC]: Remove conditionals.
5604         * string/test-strchr.c [!WIDE] (L): New macro.
5605         [WIDE] (L): Likewise.
5606         (check1): Use CHAR instead of char.  Use L on string and character
5607         constants.
5609 2014-11-26  Adhemerval Zanella  <azanella@linux.ibm.com>
5611         * csu/tst-atomic.c (do_test): Add atomic_exchange_and_add_{acq,rel}
5612         tests.
5613         * sysdeps/powerpc/bits/atomic.h
5614         (__arch_atomic_exchange_and_add_32_acq): Add definition.
5615         (__arch_atomic_exchange_and_add_32_rel): Likewise.
5616         (atomic_exchange_and_add_acq): Likewise.
5617         (atomic_exchange_and_add_rel): Likewise.
5618         * sysdeps/powerpc/powerpc32/bits/atomic.h
5619         (__arch_atomic_exchange_and_add_64_acq): Add definition.
5620         (__arch_atomic_exchange_and_add_64_rel): Likewise.
5621         * sysdeps/powerpc/powerpc64/bits/atomic.h
5622         (__arch_atomic_exchange_and_add_64_acq): Add definition.
5623         (__arch_atomic_exchange_and_add_64_rel): Likewise.
5625 2014-11-26  Torvald Riegel  <triegel@redhat.com>
5627         * nptl/tpp.c (__init_sched_fifo_prio, __pthread_tpp_change_priority):
5628         Change synchronization of __sched_fifo_min_prio and
5629         __sched_fifo_max_prio.
5630         * nptl/pthread_mutexattr_getprioceiling.c
5631         (pthread_mutexattr_getprioceiling): Likewise.
5632         * nptl/pthread_mutexattr_setprioceiling.c
5633         (pthread_mutexattr_setprioceiling): Likewise.
5634         * nptl/pthread_mutex_init.c (__pthread_mutex_init): Likewise.
5635         * nptl/pthread_mutex_setprioceiling.c (pthread_mutex_setprioceiling):
5636         Likewise.
5638 2014-11-26  Joseph Myers  <joseph@codesourcery.com>
5640         * setjmp/jmpbug.c (test): Make foo volatile and cast it to
5641         void.
5643 2014-11-25  Joseph Myers  <joseph@codesourcery.com>
5645         * stdio-common/tst-printf-round.c (test_hex_in_one_mode): Make
5646         third argument const.
5648 2014-11-25  Paul Eggert  <eggert@cs.ucla.edu>
5650         fnmatch: work around GCC compiler warning bug with uninit var
5651         * posix/fnmatch_loop.c (FCT): Use a scalar not a one-item array.
5652         This works around a bug with x86-64 GCC 4.9.2 and earlier
5653         where 'gcc -O2 -Wmaybe-uninitialized' incorrectly complains
5654         "../locale/weightwc.h:93:7: warning: '*((void *)&str+4)' may be
5655         used uninitialized in this function [-Wmaybe-uninitialized]".
5657 2014-11-25  Joseph Myers  <joseph@codesourcery.com>
5659         * posix/bug-regex31.c (main): Return RES not 0.
5661 2014-11-25  Anton Blanchard <anton@samba.org>
5663         * sysdeps/powerpc/bits/atomic.h
5664         (__arch_compare_and_exchange_bool_64_rel): Load from mem.
5666 2014-11-24  Sterling Augustine  <saugustine@google.com>
5668         * sysdeps/x86_64/start.S (_start): Use ENTRY and END macros.
5670 2014-11-24  Ryan Cumming  <etaoins@gmail.com>
5672         [BZ #17608]
5673         * sysdeps/unix/sysv/linux/bits/time.h: Define CLOCK_TAI.
5675 2014-11-24  Joseph Myers  <joseph@codesourcery.com>
5677         [BZ #17633]
5678         * stdio-common/perror.c (perror): Call __fileno instead of fileno.
5679         * conform/Makefile (test-xfail-ISO/stdio.h/linknamespace): Remove
5680         variable.
5681         (test-xfail-ISO99/stdio.h/linknamespace): Likewise.
5682         (test-xfail-ISO11/stdio.h/linknamespace): Likewise.
5684 2014-11-24  Wilco Dijkstra  <wdijkstr@arm.com>
5686         * string/strncpy.c (strncpy): Improve performance by using memset.
5688 2014-11-24  Wilco Dijkstra  <wdijkstr@arm.com>
5690         * string/strcpy.c (strcpy):
5691         Improve performance by using strlen and memcpy.
5693 2014-11-24  Leonhard Holz  <leonhard.holz@web.de>
5695         * string/strcoll_l.c (get_next_seq): __always_inline.
5696         * string/strcoll_l.c (do_compare): __always_inline.
5698 2014-11-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
5700         * include/bits/stdlib-float.h: Use IS_IN only if _ISOMAC is
5701         defined.
5702         * include/mqueue.h: Likewise.
5703         * include/stdlib.h: Likewise.
5705         * stdlib/isomac.c (fmt): Replace NOT_IN_libc with IN_MODULE.
5706         (get_null_defines): Adjust.
5707         * sunrpc/Makefile: Adjust comment.
5708         * Makerules (CPPFLAGS-nonlib): Remove NOT_IN_libc.
5709         * elf/Makefile (CPPFLAGS-sotruss-lib): Likewise.
5710         (CFLAGS-interp.c): Likewise.
5711         (CFLAGS-ldconfig.c): Likewise.
5712         (CPPFLAGS-.os): Likewise.
5713         * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
5714         * extra-lib.mk (CPPFLAGS-$(lib)): Likewise.
5715         * extra-modules.mk (extra-modules.mk): Likewise.
5716         * iconv/Makefile (CPPFLAGS-iconvprogs): Likewise.
5717         * locale/Makefile (CPPFLAGS-locale_programs): Likewise.
5718         * malloc/Makefile (CPPFLAGS-memusagestat): Likewise.
5719         * nscd/Makefile (CPPFLAGS-nscd): Likewise.
5720         * nss/Makefile (CPPFLAGS-nss_test1): Likewise.
5721         * stdlib/Makefile (CFLAGS-tst-putenvmod.c): Likewise.
5722         * sysdeps/gnu/Makefile ($(objpfx)errlist-compat.c): Likewise.
5723         * sysdeps/unix/sysv/linux/Makefile (CPPFLAGS-lddlibc4): Likewise.
5724         * iconvdata/Makefile (CPPFLAGS): Likewise.
5725         (cpp-srcs-left): Add libof for all iconvdata routines.
5726         * bits/stdio-lock.h: Replace NOT_IN_libc with IS_IN.
5727         * include/assert.h: Likewise.
5728         * include/ctype.h: Likewise.
5729         * include/errno.h: Likewise.
5730         * include/libc-symbols.h: Likewise.
5731         * include/math.h: Likewise.
5732         * include/netdb.h: Likewise.
5733         * include/resolv.h: Likewise.
5734         * include/stdio.h: Likewise.
5735         * include/stdlib.h: Likewise.
5736         * include/string.h: Likewise.
5737         * include/sys/stat.h: Likewise.
5738         * include/wctype.h: Likewise.
5739         * intl/l10nflist.c: Likewise.
5740         * libidn/idn-stub.c: Likewise.
5741         * libio/libioP.h: Likewise.
5742         * nptl/libc_multiple_threads.c: Likewise.
5743         * nptl/pthreadP.h: Likewise.
5744         * posix/regex_internal.h: Likewise.
5745         * resolv/res_hconf.c: Likewise.
5746         * sysdeps/arm/armv7/multiarch/memcpy.S: Likewise.
5747         * sysdeps/arm/memmove.S: Likewise.
5748         * sysdeps/arm/sysdep.h: Likewise.
5749         * sysdeps/generic/_itoa.h: Likewise.
5750         * sysdeps/generic/symbol-hacks.h: Likewise.
5751         * sysdeps/gnu/errlist.awk: Likewise.
5752         * sysdeps/gnu/errlist.c: Likewise.
5753         * sysdeps/i386/i586/memcpy.S: Likewise.
5754         * sysdeps/i386/i586/memset.S: Likewise.
5755         * sysdeps/i386/i686/memcpy.S: Likewise.
5756         * sysdeps/i386/i686/memmove.S: Likewise.
5757         * sysdeps/i386/i686/mempcpy.S: Likewise.
5758         * sysdeps/i386/i686/memset.S: Likewise.
5759         * sysdeps/i386/i686/multiarch/bcopy.S: Likewise.
5760         * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
5761         * sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S: Likewise.
5762         * sysdeps/i386/i686/multiarch/memchr-sse2.S: Likewise.
5763         * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
5764         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
5765         * sysdeps/i386/i686/multiarch/memcmp-ssse3.S: Likewise.
5766         * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
5767         * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Likewise.
5768         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
5769         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
5770         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
5771         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
5772         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
5773         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
5774         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
5775         * sysdeps/i386/i686/multiarch/memrchr-c.c: Likewise.
5776         * sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S: Likewise.
5777         * sysdeps/i386/i686/multiarch/memrchr-sse2.S: Likewise.
5778         * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
5779         * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
5780         * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
5781         * sysdeps/i386/i686/multiarch/memset.S: Likewise.
5782         * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
5783         * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
5784         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
5785         * sysdeps/i386/i686/multiarch/strcat-ssse3.S: Likewise.
5786         * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
5787         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Likewise.
5788         * sysdeps/i386/i686/multiarch/strchr-sse2.S: Likewise.
5789         * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
5790         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
5791         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
5792         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
5793         * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
5794         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Likewise.
5795         * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
5796         * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
5797         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
5798         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
5799         * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
5800         * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
5801         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
5802         * sysdeps/i386/i686/multiarch/strrchr-sse2.S: Likewise.
5803         * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
5804         * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
5805         * sysdeps/i386/i686/multiarch/wcschr-c.c: Likewise.
5806         * sysdeps/i386/i686/multiarch/wcschr-sse2.S: Likewise.
5807         * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
5808         * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: Likewise.
5809         * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
5810         * sysdeps/i386/i686/multiarch/wcscpy-c.c: Likewise.
5811         * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: Likewise.
5812         * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
5813         * sysdeps/i386/i686/multiarch/wcslen-c.c: Likewise.
5814         * sysdeps/i386/i686/multiarch/wcslen-sse2.S: Likewise.
5815         * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
5816         * sysdeps/i386/i686/multiarch/wcsrchr-c.c: Likewise.
5817         * sysdeps/i386/i686/multiarch/wcsrchr-sse2.S: Likewise.
5818         * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
5819         * sysdeps/i386/i686/multiarch/wmemcmp-c.c: Likewise.
5820         * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
5821         * sysdeps/ia64/fpu/libm-symbols.h: Likewise.
5822         * sysdeps/nptl/bits/libc-lock.h: Likewise.
5823         * sysdeps/nptl/bits/libc-lockP.h: Likewise.
5824         * sysdeps/nptl/bits/stdio-lock.h: Likewise.
5825         * sysdeps/posix/closedir.c: Likewise.
5826         * sysdeps/posix/opendir.c: Likewise.
5827         * sysdeps/posix/readdir.c: Likewise.
5828         * sysdeps/posix/rewinddir.c: Likewise.
5829         * sysdeps/powerpc/novmx-sigjmp.c: Likewise.
5830         * sysdeps/powerpc/powerpc32/__longjmp.S: Likewise.
5831         * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Likewise.
5832         * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
5833         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
5834         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: Likewise.
5835         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c: Likewise.
5836         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S: Likewise.
5837         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c: Likewise.
5838         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S: Likewise.
5839         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c: Likewise.
5840         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove.c: Likewise.
5841         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c: Likewise.
5842         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c: Likewise.
5843         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c: Likewise.
5844         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S: Likewise.
5845         * sysdeps/powerpc/powerpc32/power4/multiarch/memset.c: Likewise.
5846         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c: Likewise.
5847         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c: Likewise.
5848         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c: Likewise.
5849         * sysdeps/powerpc/powerpc32/power4/multiarch/strchr.c: Likewise.
5850         * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c: Likewise.
5851         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S: Likewise.
5852         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c: Likewise.
5853         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c: Likewise.
5854         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c: Likewise.
5855         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S: Likewise.
5856         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c: Likewise.
5857         * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c: Likewise.
5858         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c: Likewise.
5859         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c: Likewise.
5860         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c: Likewise.
5861         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c: Likewise.
5862         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c: Likewise.
5863         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c: Likewise.
5864         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c: Likewise.
5865         * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
5866         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
5867         * sysdeps/powerpc/powerpc64/__longjmp.S: Likewise.
5868         * sysdeps/powerpc/powerpc64/multiarch/bzero.c: Likewise.
5869         * sysdeps/powerpc/powerpc64/multiarch/memchr.c: Likewise.
5870         * sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c: Likewise.
5871         * sysdeps/powerpc/powerpc64/multiarch/memcmp.c: Likewise.
5872         * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S: Likewise.
5873         * sysdeps/powerpc/powerpc64/multiarch/memcpy.c: Likewise.
5874         * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: Likewise.
5875         * sysdeps/powerpc/powerpc64/multiarch/memmove.c: Likewise.
5876         * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c: Likewise.
5877         * sysdeps/powerpc/powerpc64/multiarch/memrchr.c: Likewise.
5878         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S: Likewise.
5879         * sysdeps/powerpc/powerpc64/multiarch/memset.c: Likewise.
5880         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c: Likewise.
5881         * sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.S: Likewise.
5882         * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c: Likewise.
5883         * sysdeps/powerpc/powerpc64/multiarch/stpncpy.c: Likewise.
5884         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c: Likewise.
5885         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c: Likewise.
5886         * sysdeps/powerpc/powerpc64/multiarch/strcat.c: Likewise.
5887         * sysdeps/powerpc/powerpc64/multiarch/strchr.c: Likewise.
5888         * sysdeps/powerpc/powerpc64/multiarch/strchrnul.c: Likewise.
5889         * sysdeps/powerpc/powerpc64/multiarch/strcmp-ppc64.S: Likewise.
5890         * sysdeps/powerpc/powerpc64/multiarch/strcmp.c: Likewise.
5891         * sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.S: Likewise.
5892         * sysdeps/powerpc/powerpc64/multiarch/strcpy.c: Likewise.
5893         * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: Likewise.
5894         * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S: Likewise.
5895         * sysdeps/powerpc/powerpc64/multiarch/strlen.c: Likewise.
5896         * sysdeps/powerpc/powerpc64/multiarch/strncase.c: Likewise.
5897         * sysdeps/powerpc/powerpc64/multiarch/strncase_l.c: Likewise.
5898         * sysdeps/powerpc/powerpc64/multiarch/strncat.c: Likewise.
5899         * sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S: Likewise.
5900         * sysdeps/powerpc/powerpc64/multiarch/strncmp.c: Likewise.
5901         * sysdeps/powerpc/powerpc64/multiarch/strncpy-ppc64.c: Likewise.
5902         * sysdeps/powerpc/powerpc64/multiarch/strncpy.c: Likewise.
5903         * sysdeps/powerpc/powerpc64/multiarch/strnlen.c: Likewise.
5904         * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: Likewise.
5905         * sysdeps/powerpc/powerpc64/multiarch/strrchr-ppc64.c: Likewise.
5906         * sysdeps/powerpc/powerpc64/multiarch/strrchr.c: Likewise.
5907         * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: Likewise.
5908         * sysdeps/powerpc/powerpc64/multiarch/strspn.c: Likewise.
5909         * sysdeps/powerpc/powerpc64/multiarch/wcschr.c: Likewise.
5910         * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c: Likewise.
5911         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c: Likewise.
5912         * sysdeps/powerpc/powerpc64/multiarch/wordcopy.c: Likewise.
5913         * sysdeps/powerpc/powerpc64/setjmp.S: Likewise.
5914         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Likewise.
5915         * sysdeps/s390/s390-32/multiarch/memcmp.S: Likewise.
5916         * sysdeps/s390/s390-32/multiarch/memcpy.S: Likewise.
5917         * sysdeps/s390/s390-32/multiarch/memset.S: Likewise.
5918         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
5919         * sysdeps/s390/s390-64/multiarch/memcmp.S: Likewise.
5920         * sysdeps/s390/s390-64/multiarch/memcpy.S: Likewise.
5921         * sysdeps/s390/s390-64/multiarch/memset.S: Likewise.
5922         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S: Likewise.
5923         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
5924         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: Likewise.
5925         * sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: Likewise.
5926         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
5927         * sysdeps/sparc/sparc64/multiarch/memset-niagara1.S: Likewise.
5928         * sysdeps/sparc/sparc64/multiarch/memset-niagara4.S: Likewise.
5929         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
5930         * sysdeps/unix/alpha/sysdep.S: Likewise.
5931         * sysdeps/unix/alpha/sysdep.h: Likewise.
5932         * sysdeps/unix/make-syscalls.sh: Likewise.
5933         * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
5934         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
5935         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
5936         * sysdeps/unix/sysv/linux/alpha/vfork.S: Likewise.
5937         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
5938         * sysdeps/unix/sysv/linux/arm/sysdep.h: Likewise.
5939         * sysdeps/unix/sysv/linux/getpid.c: Likewise.
5940         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
5941         * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
5942         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Likewise.
5943         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
5944         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
5945         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
5946         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Likewise.
5947         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
5948         * sysdeps/unix/sysv/linux/ia64/sysdep.S: Likewise.
5949         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
5950         * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Likewise.
5951         * sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h: Likewise.
5952         * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
5953         * sysdeps/unix/sysv/linux/m68k/sysdep.h: Likewise.
5954         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
5955         * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
5956         * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
5957         * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
5958         * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
5959         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
5960         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Likewise.
5961         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
5962         * sysdeps/unix/sysv/linux/s390/longjmp_chk.c: Likewise.
5963         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
5964         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
5965         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise.
5966         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
5967         * sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Likewise.
5968         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
5969         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
5970         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
5971         * sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Likewise.
5972         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: Likewise.
5973         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
5974         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
5975         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
5976         * sysdeps/unix/sysv/linux/sh/vfork.S: Likewise.
5977         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
5978         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
5979         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
5980         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
5981         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
5982         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
5983         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
5984         * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
5985         * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
5986         * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
5987         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Likewise.
5988         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
5989         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
5990         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
5991         * sysdeps/wordsize-32/symbol-hacks.h: Likewise.
5992         * sysdeps/x86_64/memcpy.S: Likewise.
5993         * sysdeps/x86_64/memmove.c: Likewise.
5994         * sysdeps/x86_64/memset.S: Likewise.
5995         * sysdeps/x86_64/multiarch/init-arch.h: Likewise.
5996         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
5997         * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Likewise.
5998         * sysdeps/x86_64/multiarch/memcmp.S: Likewise.
5999         * sysdeps/x86_64/multiarch/memcpy-avx-unaligned.S: Likewise.
6000         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
6001         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
6002         * sysdeps/x86_64/multiarch/memcpy.S: Likewise.
6003         * sysdeps/x86_64/multiarch/memcpy_chk.S: Likewise.
6004         * sysdeps/x86_64/multiarch/memmove.c: Likewise.
6005         * sysdeps/x86_64/multiarch/mempcpy.S: Likewise.
6006         * sysdeps/x86_64/multiarch/mempcpy_chk.S: Likewise.
6007         * sysdeps/x86_64/multiarch/memset-avx2.S: Likewise.
6008         * sysdeps/x86_64/multiarch/memset.S: Likewise.
6009         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
6010         * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: Likewise.
6011         * sysdeps/x86_64/multiarch/strcat-ssse3.S: Likewise.
6012         * sysdeps/x86_64/multiarch/strcat.S: Likewise.
6013         * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: Likewise.
6014         * sysdeps/x86_64/multiarch/strchr.S: Likewise.
6015         * sysdeps/x86_64/multiarch/strcmp-ssse3.S: Likewise.
6016         * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
6017         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
6018         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Likewise.
6019         * sysdeps/x86_64/multiarch/strcpy.S: Likewise.
6020         * sysdeps/x86_64/multiarch/strcspn.S: Likewise.
6021         * sysdeps/x86_64/multiarch/strspn.S: Likewise.
6022         * sysdeps/x86_64/multiarch/wcscpy-c.c: Likewise.
6023         * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: Likewise.
6024         * sysdeps/x86_64/multiarch/wcscpy.S: Likewise.
6025         * sysdeps/x86_64/multiarch/wmemcmp-c.c: Likewise.
6026         * sysdeps/x86_64/multiarch/wmemcmp.S: Likewise.
6027         * sysdeps/x86_64/strcmp.S: Likewise.
6029         * extra-lib.mk (CPPFLAGS-$(lib)): Remove IS_IN_$(lib).
6031         * elf/Makefile (CPPFLAGS-.os): Remove IS_IN_rtld.
6032         * elf/dl-open.c: Use IS_IN (rtld) instead if IS_IN_rtld.
6033         * elf/rtld-Rules: Likewise.
6034         * elf/setup-vdso.h: Likewise.
6035         * include/assert.h: Likewise.
6036         * include/bits/stdlib-float.h: Likewise.
6037         * include/errno.h: Likewise.
6038         * include/sys/stat.h: Likewise.
6039         * include/unistd.h: Likewise.
6040         * sysdeps/aarch64/setjmp.S: Likewise.
6041         * sysdeps/alpha/setjmp.S: Likewise.
6042         * sysdeps/arm/__longjmp.S: Likewise.
6043         * sysdeps/arm/aeabi_unwind_cpp_pr1.c: Likewise.
6044         * sysdeps/arm/setjmp.S: Likewise.
6045         * sysdeps/arm/sysdep.h: Likewise.
6046         * sysdeps/generic/_itoa.h: Likewise.
6047         * sysdeps/generic/dl-sysdep.h: Likewise.
6048         * sysdeps/generic/ldsodefs.h: Likewise.
6049         * sysdeps/i386/dl-tls.h: Likewise.
6050         * sysdeps/i386/setjmp.S: Likewise.
6051         * sysdeps/m68k/setjmp.c: Likewise.
6052         * sysdeps/mach/hurd/dl-execstack.c: Likewise.
6053         * sysdeps/mach/hurd/opendir.c: Likewise.
6054         * sysdeps/posix/getcwd.c: Likewise.
6055         * sysdeps/posix/opendir.c: Likewise.
6056         * sysdeps/posix/profil.c: Likewise.
6057         * sysdeps/powerpc/dl-procinfo.h: Likewise.
6058         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
6059         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
6060         * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h: Likewise.
6061         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
6062         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Likewise.
6063         * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
6064         * sysdeps/s390/dl-tls.h: Likewise.
6065         * sysdeps/s390/s390-32/setjmp.S: Likewise.
6066         * sysdeps/s390/s390-64/setjmp.S: Likewise.
6067         * sysdeps/sh/sh3/setjmp.S: Likewise.
6068         * sysdeps/sh/sh4/setjmp.S: Likewise.
6069         * sysdeps/unix/alpha/sysdep.h: Likewise.
6070         * sysdeps/unix/arm/sysdep.S: Likewise.
6071         * sysdeps/unix/i386/sysdep.S: Likewise.
6072         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
6073         * sysdeps/unix/sysv/linux/getcwd.c: Likewise.
6074         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
6075         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
6076         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
6077         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Likewise.
6078         * sysdeps/unix/sysv/linux/ia64/setjmp.S: Likewise.
6079         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
6080         * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Likewise.
6081         * sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h: Likewise.
6082         * sysdeps/unix/sysv/linux/m68k/m68k-helpers.S: Likewise.
6083         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
6084         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
6085         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
6086         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
6087         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
6088         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
6089         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
6090         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
6091         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
6092         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
6093         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
6094         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
6095         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
6096         * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
6097         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
6098         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
6099         * sysdeps/unix/x86_64/sysdep.S: Likewise.
6100         * sysdeps/x86_64/setjmp.S: Likewise.
6102         * include/math.h: Use IS_IN instead of IS_IN_libm.
6103         * sysdeps/alpha/fpu/s_copysign.c: Likewise.
6104         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
6105         * sysdeps/ieee754/ldbl-128ibm/s_finitel.c: Likewise.
6106         * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: Likewise.
6107         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
6108         * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c: Likewise.
6109         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c: Likewise.
6110         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
6111         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
6112         * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c: Likewise.
6113         * sysdeps/ieee754/ldbl-64-128/s_copysignl.c: Likewise.
6114         * sysdeps/ieee754/ldbl-64-128/s_finitel.c: Likewise.
6115         * sysdeps/ieee754/ldbl-64-128/s_frexpl.c: Likewise.
6116         * sysdeps/ieee754/ldbl-64-128/s_isinfl.c: Likewise.
6117         * sysdeps/ieee754/ldbl-64-128/s_isnanl.c: Likewise.
6118         * sysdeps/ieee754/ldbl-64-128/s_modfl.c: Likewise.
6119         * sysdeps/ieee754/ldbl-64-128/s_scalbnl.c: Likewise.
6120         * sysdeps/ieee754/ldbl-64-128/s_signbitl.c: Likewise.
6121         * sysdeps/ieee754/ldbl-64-128/w_scalblnl.c: Likewise.
6122         * sysdeps/ieee754/ldbl-opt/s_copysign.c: Likewise.
6123         * sysdeps/ieee754/ldbl-opt/s_finite.c: Likewise.
6124         * sysdeps/ieee754/ldbl-opt/s_frexp.c: Likewise.
6125         * sysdeps/ieee754/ldbl-opt/s_isinf.c: Likewise.
6126         * sysdeps/ieee754/ldbl-opt/s_isnan.c: Likewise.
6127         * sysdeps/ieee754/ldbl-opt/s_ldexp.c: Likewise.
6128         * sysdeps/ieee754/ldbl-opt/s_ldexpl.c: Likewise.
6129         * sysdeps/ieee754/ldbl-opt/s_modf.c: Likewise.
6130         * sysdeps/ieee754/ldbl-opt/s_scalbln.c: Likewise.
6131         * sysdeps/ieee754/ldbl-opt/s_scalbn.c: Likewise.
6132         * sysdeps/powerpc/power5+/fpu/s_modf.c: Likewise.
6133         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Likewise.
6134         * sysdeps/powerpc/powerpc32/fpu/s_copysignl.S: Likewise.
6135         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: Likewise.
6136         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c:
6137         Likewise.
6138         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c:
6139         Likewise.
6140         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c:
6141         Likewise.
6142         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c:
6143         Likewise.
6144         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c:
6145         Likewise.
6146         * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: Likewise.
6147         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Likewise.
6148         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: Likewise.
6149         * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
6150         * sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
6151         * sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
6152         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: Likewise.
6153         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c: Likewise.
6154         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c: Likewise.
6155         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c: Likewise.
6156         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c: Likewise.
6157         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
6158         * sysdeps/powerpc/powerpc64/fpu/s_copysignl.S: Likewise.
6159         * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: Likewise.
6160         * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: Likewise.
6161         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Likewise.
6162         * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: Likewise.
6163         * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: Likewise.
6164         * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Likewise.
6165         * sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S: Likewise.
6166         * sysdeps/powerpc/powerpc64/power7/fpu/s_isnan.S: Likewise.
6167         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S: Likewise.
6168         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S: Likewise.
6169         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S: Likewise.
6170         * sysdeps/sparc/sparc32/fpu/s_signbitl.S: Likewise.
6171         * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: Likewise.
6172         * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S: Likewise.
6174         * nptl/lowlevellock.c: Use IS_IN instead of IS_IN_libpthread.
6175         * nptl/pthreadP.h: Likewise.
6176         * nptl_db/structs.def: Likewise.
6177         * sysdeps/arm/sysdep.h: Likewise.
6178         * sysdeps/nptl/bits/libc-lock.h: Likewise.
6179         * sysdeps/nptl/bits/libc-lockP.h: Likewise.
6180         * sysdeps/sparc/sparc32/lowlevellock.c: Likewise.
6181         * sysdeps/unix/alpha/sysdep.h: Likewise.
6182         * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
6183         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
6184         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
6185         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
6186         * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
6187         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
6188         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
6189         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
6190         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
6191         * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
6192         * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
6193         * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
6194         * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
6195         * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
6196         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Likewise.
6197         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
6198         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
6199         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
6200         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
6201         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
6202         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
6203         * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
6204         * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
6205         * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
6206         * sysdeps/unix/sysv/linux/x86_64/cancellation.S: Likewise.
6207         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
6209         * include/mqueue.h: Use IS_IN instead of IS_IN_librt.
6210         * nptl/pthreadP.h: Likewise.
6211         * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
6212         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
6213         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
6214         * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
6215         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
6216         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
6217         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
6218         * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
6219         * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
6220         * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
6221         * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
6222         * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
6223         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h:
6224         Likewise.
6225         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h:
6226         Likewise.
6227         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
6228         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
6229         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
6230         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
6231         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
6232         * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
6233         * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
6234         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
6236         * dlfcn/dladdr.c: Use IS_IN.
6237         * dlfcn/dladdr1.c: Likewise.
6238         * dlfcn/dlclose.c: Likewise.
6239         * dlfcn/dlerror.c: Likewise.
6240         * dlfcn/dlinfo.c: Likewise.
6241         * dlfcn/dlmopen.c: Likewise.
6242         * dlfcn/dlopen.c: Likewise.
6243         * dlfcn/dlsym.c: Likewise.
6244         * dlfcn/dlvsym.c: Likewise.
6246         * include/ifaddrs.h: Use IS_IN.
6247         * inet/check_pf.c: Likewise.
6248         * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
6249         * nscd/Makefile (CPPFLAGS-nscd): Remove IS_IN_nscd.
6251         * elf/Makefile (CFLAGS-ldconfig.c): Remove definition of
6252         IS_IN_ldconfig.
6253         * sysdeps/unix/sysv/linux/x86_64/dl-procinfo.c: Use IS_IN.
6254         * sysdeps/unix/sysv/linux/x86_64/dl-procinfo.h: Likewise.
6256         * include/shlib-compat.h [!NOT_IN_libc]: Remove.
6257         * nss/nss_files/files-parse.c (IS_IN_libc): Replace with
6258         IS_IN (libc).
6260         * elf/Makefile (libof-sotruss-lib): Set as extramodules.
6262         * elf/Makefile (CPPFLAGS-.os): Remove IN_LIB.
6263         * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
6264         * extra-lib.mk (CPPFLAGS-$(lib)): Likewise.
6265         * include/libc-symbols.h (IS_IN_LIB): New macro.
6266         * include/errno.h: Use IS_IN_LIB instead of IN_LIB.
6267         * include/netdb.h: Likewise.
6268         * include/stap-probe.h: Remove all uses of IN_LIB.
6270         * Makeconfig (module-cppflags-real): Define MODULE_NAME
6271         instead of IN_MODULE.
6272         * include/libc-symbols.h (IN_MODULE): Define using
6273         MODULE_NAME.
6274         (PASTE_NAME, PASTE_NAME1): New macros.
6275         * include/stap-probe.h (LIBC_PROBE_1): Use MODULE_NAME instead
6276         of IN_LIB.
6277         (STAP_PROBE_ASM): Likewise.
6279 2014-11-23  Samuel Thibault  <samuel.thibault@ens-lyon.org>
6281         * sysdeps/mach/hurd/i386/init-first.c (posixland_init): Call
6282         __mach_init in dlopened libc.
6284 2014-11-22  Mike Frysinger  <vapier@gentoo.org>
6286         * sysdeps/arm/preconfigure.ac: Delete EABI check.
6287         * sysdeps/arm/preconfigure: Regenerate.
6289 2014-11-21  Roland McGrath  <roland@hack.frob.com>
6291         * nptl/pthread_create.c (__pthread_create_2_1): Set
6292         ATTR_FLAG_POLICY_SET and/or ATTR_FLAG_SCHED_SET in PD->flags
6293         when copying values from IATTR into PD.
6295 2014-11-21  Will Newton  <will.newton@linaro.org>
6296             Andrew Pinski  <andrew.pinski@caviumnetworks.com>
6298         * sysdeps/aarch64/dl-machine.h (elf_machine_load_address):
6299         Refactor inline-asm.  Also add comment.
6301         * sysdeps/aarch64/bits/link.h (la_aarch64_gnu_pltenter): Use
6302         ElfW macro instead of hardcoded Elf64 types.
6303         (la_aarch64_gnu_pltenter): Likewise.
6304         * sysdeps/aarch64/dl-machine.h
6305         (elf_machine_runtime_setup): Use ElfW(Addr).
6307         * elf/elf.h (R_AARCH64_P32_ABS32, R_AARCH64_P32_COPY,
6308         R_AARCH64_P32_GLOB_DAT, R_AARCH64_P32_JUMP_SLOT,
6309         R_AARCH64_P32_RELATIVE, R_AARCH64_P32_TLS_DTPMOD,
6310         R_AARCH64_P32_TLS_DTPREL, R_AARCH64_P32_TLS_TPREL,
6311         R_AARCH64_P32_TLSDESC, R_AARCH64_P32_IRELATIVE): Define.
6312         (R_AARCH64_TLS_DTPMOD64): Rename to ..
6313         (R_AARCH64_TLS_DTPMOD): This.
6314         (R_AARCH64_TLS_DTPREL64): Rename to ...
6315         (R_AARCH64_TLS_DTPREL): This.
6316         (R_AARCH64_TLS_TPREL64): Rename to ...
6317         (R_AARCH64_TLS_TPREL): This.
6318         * sysdeps/aarch64/dl-machine.h (elf_machine_type_class): Update
6319         R_AARCH64_TLS_DTPMOD64, R_AARCH64_TLS_DTPREL64, and
6320         R_AARCH64_TLS_TPREL64.
6321         (elf_machine_rela): Likewise.
6323 2014-11-21  Torvald Riegel  <triegel@redhat.com>
6325         * sysdeps/microblaze/bits/atomic.h (__HAVE_64B_ATOMICS): Fix value
6326         by setting it to 0.  64b atomics are not supported currently.
6328 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
6330         [BZ #16469]
6331         * resolv/res_query.c (__libc_res_nsearch): Skip leading dot in
6332         search domain names.
6334 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
6336         [BZ #16469]
6337         * NEWS: Update.
6338         * resolv/res_query.c (__libc_res_nquerydomain): Retain
6339         trailing dot.
6340         * posix/tst-getaddrinfo5.c: New.
6341         * posix/Makefile (tests): Add it.
6343 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
6345         [BZ #14498]
6346         * NEWS: Fixed.
6347         * nss/nss_db/db-XXX.c (_nss_db_get##name##_r): Update hidx
6348         after parsing line but before break_if_match.
6349         * nss/nss_files/files-service (DB_LOOKUP): Don't "continue;"
6350         if there is a protocol mismatch.
6352 2014-11-21  Ma Shimiao <mashimiao.fnst@cn.fujitsu.com>
6354         * manual/sysinfo.texi (addmntent): It is actually MT-Safe,
6355         because the potential race is on the user-supplied stream.
6357 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
6359         * sysdeps/posix/ctermid.c (ctermid): Return a pointer to a
6360         string literal if not passed a buffer.
6361         * manual/job.texi (ctermid): Update reasoning, note deviation
6362         from posix, suggest mtasurace when not passed a buffer, for
6363         future non-preliminary safety notes.
6365 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
6367         * manual/users.texi (cuserid): Fix MT-Safety note for the case
6368         of not passing it a buffer.
6369         Reported by Peng Haitao.
6371 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
6373         * manual/Makefile ($(objpfx)stamp-summary): Require
6374         check-safety.sh to pass.
6375         * manual/check-safety.sh: Wish for verification that every
6376         @deftypefn and @deftypefun is followed by a @safety remark.
6378 2014-11-20  Roland McGrath  <roland@hack.frob.com>
6380         * nptl/unwind.c (unwind_cleanup): Use __libc_fatal.
6382         * nptl/pthread_setcanceltype.c [!SIGCANCEL]: Return ENOTSUP early for
6383         PTHREAD_CANCEL_ASYNCHRONOUS.
6384         * nptl/pthread_cancel.c [!SIGCANCEL]: Just abort rather than trying to
6385         send SIGCANCEL.
6387         * nptl/default-sched.h: New file.
6388         * sysdeps/unix/sysv/linux/default-sched.h: New file.
6389         * nptl/pthread_create.c: Include it.
6390         (__pthread_create_2_1): Use collect_default_sched instead of making
6391         Linux syscalls here directly.
6393 2014-11-20  Torvald Riegel  <triegel@redhat.com>
6395         * nptl/pthread_once.c (clear_once_control, __pthread_once_slow,
6396         __pthread_once): Use C11 atomics.
6398 2014-11-20  Torvald Riegel  <triegel@redhat.com>
6400         * csu/tst-atomic.c (do_test): Add tests for C11-like atomics.
6402 2014-11-20  Torvald Riegel  <triegel@redhat.com>
6404         * include/atomic.h (__atomic_link_error, __atomic_check_size,
6405         atomic_thread_fence_acquire, atomic_thread_fence_release,
6406         atomic_thread_fence_seq_cst, atomic_load_relaxed,
6407         atomic_load_acquire, atomic_store_relaxed, atomic_store_release,
6408         atomic_compare_exchange_weak_relaxed,
6409         atomic_compare_exchange_weak_acquire,
6410         atomic_compare_exchange_weak_release,
6411         atomic_exchange_acquire, atomic_exchange_release,
6412         atomic_fetch_add_relaxed, atomic_fetch_add_acquire,
6413         atomic_fetch_add_release, atomic_fetch_add_acq_rel,
6414         atomic_fetch_and_acquire,
6415         atomic_fetch_or_relaxed, atomic_fetch_or_acquire): New.
6417 2014-11-20  Torvald Riegel  <triegel@redhat.com>
6419         * sysdeps/aarch64/bits/atomic.h (__HAVE_64B_ATOMICS,
6420         USE_ATOMIC_COMPILER_BUILTINS): Define.
6421         * sysdeps/alpha/bits/atomic.h (__HAVE_64B_ATOMICS,
6422         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6423         * sysdeps/arm/bits/atomic.h (__HAVE_64B_ATOMICS,
6424         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6425         * sysdeps/i386/i486/bits/atomic.h (__HAVE_64B_ATOMICS,
6426         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6427         * sysdeps/ia64/bits/atomic.h (__HAVE_64B_ATOMICS,
6428         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6429         * sysdeps/m68k/coldfire/bits/atomic.h (__HAVE_64B_ATOMICS,
6430         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6431         * sysdeps/m68k/m680x0/m68020/bits/atomic.h (__HAVE_64B_ATOMICS,
6432         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6433         * sysdeps/microblaze/bits/atomic.h (__HAVE_64B_ATOMICS,
6434         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6435         * sysdeps/mips/bits/atomic.h (__HAVE_64B_ATOMICS,
6436         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6437         * sysdeps/powerpc/powerpc32/bits/atomic.h (__HAVE_64B_ATOMICS,
6438         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6439         * sysdeps/powerpc/powerpc64/bits/atomic.h (__HAVE_64B_ATOMICS,
6440         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6441         * sysdeps/s390/bits/atomic.h (__HAVE_64B_ATOMICS,
6442         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6443         * sysdeps/sparc/sparc32/bits/atomic.h (__HAVE_64B_ATOMICS,
6444         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6445         * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h (__HAVE_64B_ATOMICS,
6446         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6447         * sysdeps/sparc/sparc64/bits/atomic.h (__HAVE_64B_ATOMICS,
6448         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6449         * sysdeps/tile/tilegx/bits/atomic.h (__HAVE_64B_ATOMICS,
6450         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6451         * sysdeps/tile/tilepro/bits/atomic.h (__HAVE_64B_ATOMICS,
6452         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6453         * sysdeps/unix/sysv/linux/hppa/bits/atomic.h (__HAVE_64B_ATOMICS,
6454         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6455         * sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h
6456         (__HAVE_64B_ATOMICS, USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6457         * sysdeps/unix/sysv/linux/sh/bits/atomic.h (__HAVE_64B_ATOMICS,
6458         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6459         * sysdeps/x86_64/bits/atomic.h (__HAVE_64B_ATOMICS,
6460         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
6462 2014-11-19  Roland McGrath  <roland@hack.frob.com>
6464         * nptl/pthread_create.c (__pthread_create_2_1): Don't try to validate
6465         the sched_priority value here.  It was already checked when the user
6466         called pthread_attr_setschedparam.
6468         * nptl/tst-bad-schedattr.c: New file.
6469         * nptl/Makefile (tests): Add it.
6471 2014-11-19  Carlos O'Donell  <carlos@redhat.com>
6472             Florian Weimer  <fweimer@redhat.com>
6473             Joseph Myers  <joseph@codesourcery.com>
6474             Adam Conrad  <adconrad@0c3.net>
6475             Andreas Schwab  <schwab@suse.de>
6476             Brooks  <bmoses@google.com>
6478         [BZ #17625]
6479         * wordexp-test.c (__dso_handle): Add prototype.
6480         (__register_atfork): Likewise.
6481         (__app_register_atfork): New function.
6482         (registered_forks): New global.
6483         (register_fork): New function.
6484         (test_case): Add 3 new tests for WRDE_CMDSUB.
6485         (main): Call __app_register_atfork.
6486         (testit): If WRDE_NOCMD set registered_forks to zero, run test, and if
6487         fork count is non-zero fail the test.
6488         * posix/wordexp.c (exec_comm): Return WRDE_CMDSUB if WRDE_NOCMD flag
6489         is set.
6490         (parse_dollars): Remove check for WRDE_NOCMD.
6491         (parse_dquote): Likewise.
6493 2014-11-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
6495         * Makeconfig (built-modules): List non-library modules to be
6496         built.
6497         (module-cppflags): Include libc-modules.h for
6498         everything except shlib-versions.v.i.
6499         (CPPFLAGS): Use it.
6500         (before-compile): Add libc-modules.h.
6501         ($(common-objpfx)libc-modules.h,
6502         $(common-objpfx)libc-modules.stmp): New targets.
6503         (common-generated): Add libc-modules.h and libc-modules.stmp.
6504         ($(common-objpfx)Versions.v.i): Depend on libc-modules.h.
6505         * include/libc-symbols.h: Don't include libc-modules.h.
6506         * include/libc-modules.h: Remove file.
6507         * scripts/gen-libc-modules.awk: New script to generate
6508         libc-modules.h.
6509         * sysdeps/unix/Makefile ($(common-objpfx)sysd-syscalls):
6510         Depend on libc-modules.stmp.
6512         * include/shlib-compat.h (_SHLIB_COMPAT): Use IS_IN.
6514         * Makeconfig (in-module): Get value of libof set for the
6515         translation unit.
6516         (CPPFLAGS): Use $(in-module).
6517         * Makerules: Don't suffix routine names for nonlib.
6518         * include/libc-modules.h: New file.
6519         * include/libc-symbols.h: Include libc-modules.h
6520         (IS_IN): New macro to replace IS_IN_* macros.
6521         * elf/Makefile: Set libof-* for each routine.
6522         * elf/rtld-Rules: Likewise.
6523         * extra-modules.mk: Likewise.
6524         * iconv/Makefile: Likewise.
6525         * iconvdata/Makefile: Likewise.
6526         * locale/Makefile: Likewise.
6527         * malloc/Makefile: Likewise.
6528         * nss/Makefile: Likewise.
6529         * sysdeps/gnu/Makefile: Likewise.
6530         * sysdeps/ieee754/ldbl-opt/Makefile: Likewise.
6531         * sysdeps/unix/sysv/linux/Makefile: Likewise.
6532         * sysdeps/s390/s390-64/Makefile: Likewise.
6533         * nscd/Makefile: Set libof-* for each routine.  Set CFLAGS and
6534         CPPFLAGS for nscd instead of nonlib.
6536 2014-11-18  Roland McGrath  <roland@hack.frob.com>
6538         * nptl/createthread.c: New file.
6540         * nptl/createthread.c: Moved ...
6541         * sysdeps/unix/sysv/linux/createthread.c: ... here.
6543         * nptl/createthread.c: Add proper top-line comment.
6544         (do_clone): Folded into ...
6545         (create_thread): ... here.  Take new arguments STOPPED_START and
6546         THREAD_RAN.  Always set PD->stopped_start to something here.  Don't
6547         increment __nptl_threads, do event-reporting logic, do
6548         CHECK_THREAD_SYSINFO, or set THREAD_SELF->header.multiple_threads
6549         here.  Set *THREAD_RAN after ARCH_CLONE call succeeds.  Don't do any
6550         resource cleanup if sched_setaffinity or sched_setscheduler fails,
6551         just send SIGCANCEL.
6552         * nptl/pthread_create.c: Forward-declare create_thread before
6553         including createthread.c.
6554         (start_thread): Use new macro START_THREAD_DEFN to replace defining
6555         declaration, and new macro START_THREAD_SELF to replace argument.
6556         Remove return statement.
6557         (report_thread_creation): New function.
6558         (__pthread_create_2_1): Use it.  Do TD_CREATE reporting,
6559         synchronization logic, and __nptl_nthreads increment here, around
6560         calling create_thread.  Do CHECK_THREAD_SYSINFO and initialize
6561         PD->parent_cancelhandling here, before create_thread.  When
6562         create_thread fails, do __nptl_nthreads decrement, setxid_futex wake,
6563         __deallocate_stack, and ENOMEM translation here.
6565 2014-11-18  Joseph Myers  <joseph@codesourcery.com>
6567         [BZ #17616]
6568         * sysdeps/ieee754/dbl-64/mpa.c (mpone): Rename to __mpone.
6569         (mptwo): Rename to __mptwo.
6570         (__inv): Use __mptwo instead of mptwo.
6571         * sysdeps/ieee754/dbl-64/mpa.h (mpone): Rename to __mpone.
6572         (mptwo): Rename to __mptwo.
6573         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Use __mpone instead
6574         of mpone and __mptwo instead of mptwo.
6575         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Use __mpone
6576         instead of mpone.
6577         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
6578         * sysdeps/ieee754/dbl-64/mplog.c (__mplog): Likewise.
6579         * sysdeps/ieee754/dbl-64/sincos32.c (__c32): Use __mpone instead
6580         of mpone and __mptwo instead of mptwo.
6581         (__mpranred): Use __mpone instead of mpone.
6582         * conform/Makefile (test-xfail-ISO/math.h/linknamespace): Remove
6583         variable.
6584         (test-xfail-ISO99/complex.h/linknamespace): Likewise.
6585         (test-xfail-ISO99/math.h/linknamespace): Likewise.
6586         (test-xfail-ISO99/tgmath.h/linknamespace): Likewise.
6587         (test-xfail-ISO11/complex.h/linknamespace): Likewise.
6588         (test-xfail-ISO11/math.h/linknamespace): Likewise.
6589         (test-xfail-ISO11/tgmath.h/linknamespace): Likewise.
6590         (test-xfail-XPG3/math.h/linknamespace): Likewise.
6591         (test-xfail-XPG4/math.h/linknamespace): Likewise.
6592         (test-xfail-POSIX/math.h/linknamespace): Likewise.
6593         (test-xfail-UNIX98/math.h/linknamespace): Likewise.
6594         (test-xfail-XOPEN2K/complex.h/linknamespace): Likewise.
6595         (test-xfail-XOPEN2K/math.h/linknamespace): Likewise.
6596         (test-xfail-XOPEN2K/tgmath.h/linknamespace): Likewise.
6597         (test-xfail-POSIX2008/complex.h/linknamespace): Likewise.
6598         (test-xfail-POSIX2008/math.h/linknamespace): Likewise.
6599         (test-xfail-POSIX2008/tgmath.h/linknamespace): Likewise.
6600         (test-xfail-XOPEN2K8/complex.h/linknamespace): Likewise.
6601         (test-xfail-XOPEN2K8/math.h/linknamespace): Likewise.
6602         (test-xfail-XOPEN2K8/tgmath.h/linknamespace): Likewise.
6604 2014-11-18  Tom de Vries  <tom@codesoucery.com>
6606         * manual/signal.texi (Primitives Interrupted by Signals): In section,
6607         replace BSD Handler xref with BSD Signal Handling.
6609 2014-11-17  Richard Henderson  <rth@redhat.com>
6611         * sysdeps/alpha/soft-fp/local-soft-fp.h (_FP_UNPACK_RAW_2): Remove.
6612         (_FP_PACK_RAW_2): Remove.
6613         (AXP_DECL_RETURN_Q): Rename from FP_DECL_RETURN, use _FP_UNION_Q.
6614         (AXP_RETURN_Q): Rename from FP_RETURN, use _FP_UNION_Q.
6615         (AXP_UNPACK_RAW_Q, AXP_UNPACK_SEMIRAW_Q, AXP_UNPACK_Q): New.
6616         (AXP_PACK_RAW_Q, AXP_PACK_SEMIRAW_Q, AXP_PACK_Q): New.
6617         * sysdeps/alpha/soft-fp/ots_add.c (_OtsAddX): Update to match.
6618         * sysdeps/alpha/soft-fp/ots_cmp.c (internal_equality): Likewise.
6619         * sysdeps/alpha/soft-fp/ots_cmpe.c (internal_compare): Likewise.
6620         * sysdeps/alpha/soft-fp/ots_cvtqux.c (_OtsCvtQUX): Likewise.
6621         * sysdeps/alpha/soft-fp/ots_cvtqx.c (_OtsCvtQX): Likewise.
6622         * sysdeps/alpha/soft-fp/ots_cvttx.c (_OtsConvertFloatTX): Likewise.
6623         * sysdeps/alpha/soft-fp/ots_cvtxq.c (_OtsCvtXQ): Likewise.
6624         * sysdeps/alpha/soft-fp/ots_cvtxt.c (_OtsConvertFloatXT): Likewise.
6625         * sysdeps/alpha/soft-fp/ots_div.c (_OtsDivX): Likewise.
6626         * sysdeps/alpha/soft-fp/ots_mul.c (_OtsMulX): Likewise.
6627         * sysdeps/alpha/soft-fp/ots_nintxq.c (_OtsNintXQ): Likewise.
6628         * sysdeps/alpha/soft-fp/ots_sub.c (_OtsSubX): Likewise.
6630 2014-11-14  Roland McGrath  <roland@hack.frob.com>
6632         * signal/signal.h [__USE_MISC]
6633         (struct sigvec): Remove type.
6634         (SV_ONSTACK, SV_INTERRUPT, SV_RESETHAND): Remove macros.
6635         (sigvec): Remove declaration.
6636         * sysdeps/posix/sigvec.c: Moved ...
6637         * signal/sigvec.c: ... here, replacing old file.
6638         (struct sigvec): New type, copied from old signal.h definition.
6639         (SV_ONSTACK, SV_INTERRUPT, SV_RESETHAND): New macros, likewise copied.
6640         (__sigvec): Convert definition to prototype.
6641         (sigvec): Replace weak_alias with compat_symbol.
6642         * signal/Versions (libc: GLIBC_2.21): New version set.
6643         * include/signal.h: Remove __sigvec declaration.
6644         * sysdeps/unix/bsd/sigvec.c: Remove file.
6645         * sysdeps/unix/bsd/syscalls.list: Remove sigvec.
6646         * manual/signal.texi (BSD Handler): Remove subsection.
6647         Move siginterrupt up to ...
6648         (BSD Signal Handling): ... here.  Mark it as XPG rather than BSD.
6649         (Blocking in BSD): Fold subsection into its parent.
6650         * NEWS: Mention sigvec removal.
6652 2014-11-14  Joseph Myers  <joseph@codesourcery.com>
6654         * sysdeps/x86_64/fpu/dla.h [__FMA4__ && __GNUC_PREREQ (4, 6)]
6655         (DLA_FMS): Make definition conditional only on [__FMA4__].
6656         [__FMA4__ && !__GNUC_PREREQ (4, 6)] (DLA_FMS): Remove conditional
6657         definition.
6659         * sysdeps/arm/sysdep.h [PROF && __GNUC_PREREQ(4,4)] (CALL_MCOUNT):
6660         Make definition conditional only on [PROF].
6661         [PROF && !__GNUC_PREREQ(4,4)] (CALL_MCOUNT): Remove conditional
6662         definition.
6663         [__GNUC_PREREQ(4,4)] (mcount): Make definition unconditional.
6664         [!__GNUC_PREREQ(4,4)] (mcount): Remove conditional definition.
6666         * signal/signal.h (__sigpause): Only declare if [__USE_XOPEN &&
6667         !__GNUC__].
6668         * include/signal.h (__sigpause): Move declaration above call to
6669         libc_hidden_proto.
6670         * conform/Makefile (test-xfail-ISO/signal.h/linknamespace): Remove
6671         variable.
6672         (test-xfail-ISO99/signal.h/linknamespace): Likewise.
6673         (test-xfail-ISO11/signal.h/linknamespace): Likewise.
6675 2014-11-14  David S. Miller  <davem@davemloft.net>
6677         * sysdeps/sparc/sparc64/rtld-memcpy.c (NO_MEMPCPY_STPCPY_REDIRECT):
6678         Define before including <string/memcpy.c> and <string/mempcpy.c>.
6680 2014-11-14  Joseph Myers  <joseph@codesourcery.com>
6682         * configure.ac (libc_cv_compiler_ok): Require GCC 4.6 or later.
6683         * configure: Regenerated.
6684         * manual/install.texi (Tools for Compilation): Document a
6685         requirement of GCC 4.6 or later and that GCC 4.9 is the newest
6686         compiler verified to work.
6687         * INSTALL: Regenerated.
6689         * include/string.h [NO_MEMPCPY_STPCPY_REDIRECT] (mempcpy): Do not
6690         redeclare with asm name.
6691         [NO_MEMPCPY_STPCPY_REDIRECT] (stpcpy): Likewise.
6692         * string/mempcpy.c (NO_MEMPCPY_STPCPY_REDIRECT): Define before
6693         including <string.h>.
6694         * string/stpcpy.c (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
6695         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c
6696         [!NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
6697         * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c
6698         [!NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
6699         * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c
6700         [SHARED && !NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
6702 2014-11-13  Joseph Myers  <joseph@codesourcery.com>
6704         * stdlib/strtol.c (__strtol): Use prototype definition.
6706         [BZ #17594]
6707         * stdlib/strtol.c (SYM__): New macro.
6708         (SYM__1): Likewise.
6709         (__strtol): Likewise.
6710         (strtol): Rename to __strtol and define as weak alias of
6711         __strtol.  Use libc_hidden_weak.
6713 2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
6715         * sysdeps/s390/s390-32/dl-machine.h (RTLD_START):
6716         Use numbered labels in inline assembly.
6718 2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
6720         * sysdeps/s390/s390-32/setjmp.S (__sigsetjmp):
6721         Add setjmp LIBC_PROBE.
6722         * sysdeps/s390/s390-64/setjmp.S (__sigsetjmp):
6723         Likewise.
6724         * sysdeps/s390/s390-32/__longjmp.c (__longjmp):
6725         Add longjmp, longjmp_target LIBC_PROBE.
6726         * sysdeps/s390/s390-64/__longjmp.c (__longjmp):
6727         Likewise.
6729 2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
6731         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela):
6732         Gate the definition of refsym additionally with !RTLD_BOOTSTRAP
6733         to get rid of unused variable warning.
6735 2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
6737         * sysdeps/s390/s390-32/backtrace.c (__backtrace):
6738         Check for unwind_backtrace ==  NULL only in SHARED case.
6739         (__backchain_backtrace): Compile only in SHARED case.
6740         * sysdeps/s390/s390-64/backtrace.c (__backtrace):
6741         Likewise.
6742         (__backchain_backtrace): Declare as static.
6744 2014-11-12  Roland McGrath  <roland@hack.frob.com>
6746         * nptl/createthread.c [!TLS_MULTIPLE_THREADS_IN_TCB]
6747         (__libc_multiple_threads_ptr): Variable moved ...
6748         * nptl/nptl-init.c [!TLS_MULTIPLE_THREADS_IN_TCB]: ... here.
6750 2014-11-12  Joseph Myers  <joseph@codesourcery.com>
6752         * conform/GlibcConform.pm: New file.
6753         * conform/conformtest.pl: Use GlibcConform module.
6754         * conform/linknamespace.pl: New file.
6755         * conform/list-header-symbols.pl: Likewise.
6756         * conform/Makefile (linknamespace-symlists-base): New variable.
6757         (linknamespace-symlists-tests): Likewise.
6758         (linknamespace-header-base): Likewise.
6759         (linknamespace-header-tests): Likewise.
6760         (tests-special): Add new tests.
6761         ($(linknamespace-symlists-tests)): New rule.
6762         (linknamespace-libs): New variable.
6763         ($(objpfx)symlist-stdlibs): New rule.
6764         ($(linknamespace-header-tests)): Likewise.
6765         (test-xfail-XPG3/varargs.h/linknamespace): New variable.
6766         (test-xfail-XPG4/varargs.h/linknamespace): Likewise.
6767         (test-xfail-UNIX98/varargs.h/linknamespace): Likewise.
6768         (test-xfail-XPG4/ndbm.h/linknamespace): Likewise.
6769         (test-xfail-UNIX98/ndbm.h/linknamespace): Likewise.
6770         (test-xfail-XOPEN2K/ndbm.h/linknamespace): Likewise.
6771         (test-xfail-XOPEN2K8/ndbm.h/linknamespace): Likewise.
6772         (test-xfail-ISO/math.h/linknamespace): Likewise.
6773         (test-xfail-ISO/signal.h/linknamespace): Likewise.
6774         (test-xfail-ISO/stdio.h/linknamespace): Likewise.
6775         (test-xfail-ISO/time.h/linknamespace): Likewise.
6776         (test-xfail-ISO99/complex.h/linknamespace): Likewise.
6777         (test-xfail-ISO99/ctype.h/linknamespace): Likewise.
6778         (test-xfail-ISO99/math.h/linknamespace): Likewise.
6779         (test-xfail-ISO99/signal.h/linknamespace): Likewise.
6780         (test-xfail-ISO99/stdio.h/linknamespace): Likewise.
6781         (test-xfail-ISO99/tgmath.h/linknamespace): Likewise.
6782         (test-xfail-ISO11/complex.h/linknamespace): Likewise.
6783         (test-xfail-ISO11/ctype.h/linknamespace): Likewise.
6784         (test-xfail-ISO11/math.h/linknamespace): Likewise.
6785         (test-xfail-ISO11/signal.h/linknamespace): Likewise.
6786         (test-xfail-ISO11/stdio.h/linknamespace): Likewise.
6787         (test-xfail-ISO11/tgmath.h/linknamespace): Likewise.
6788         (test-xfail-XPG3/ctype.h/linknamespace): Likewise.
6789         (test-xfail-XPG3/fnmatch.h/linknamespace): Likewise.
6790         (test-xfail-XPG3/glob.h/linknamespace): Likewise.
6791         (test-xfail-XPG3/math.h/linknamespace): Likewise.
6792         (test-xfail-XPG3/regex.h/linknamespace): Likewise.
6793         (test-xfail-XPG3/search.h/linknamespace): Likewise.
6794         (test-xfail-XPG3/stdio.h/linknamespace): Likewise.
6795         (test-xfail-XPG3/time.h/linknamespace): Likewise.
6796         (test-xfail-XPG3/unistd.h/linknamespace): Likewise.
6797         (test-xfail-XPG3/wordexp.h/linknamespace): Likewise.
6798         (test-xfail-XPG4/ctype.h/linknamespace): Likewise.
6799         (test-xfail-XPG4/fmtmsg.h/linknamespace): Likewise.
6800         (test-xfail-XPG4/fnmatch.h/linknamespace): Likewise.
6801         (test-xfail-XPG4/glob.h/linknamespace): Likewise.
6802         (test-xfail-XPG4/grp.h/linknamespace): Likewise.
6803         (test-xfail-XPG4/libgen.h/linknamespace): Likewise.
6804         (test-xfail-XPG4/math.h/linknamespace): Likewise.
6805         (test-xfail-XPG4/netdb.h/linknamespace): Likewise.
6806         (test-xfail-XPG4/pwd.h/linknamespace): Likewise.
6807         (test-xfail-XPG4/regex.h/linknamespace): Likewise.
6808         (test-xfail-XPG4/search.h/linknamespace): Likewise.
6809         (test-xfail-XPG4/stdio.h/linknamespace): Likewise.
6810         (test-xfail-XPG4/stdlib.h/linknamespace): Likewise.
6811         (test-xfail-XPG4/sys/mman.h/linknamespace): Likewise.
6812         (test-xfail-XPG4/sys/statvfs.h/linknamespace): Likewise.
6813         (test-xfail-XPG4/syslog.h/linknamespace): Likewise.
6814         (test-xfail-XPG4/time.h/linknamespace): Likewise.
6815         (test-xfail-XPG4/unistd.h/linknamespace): Likewise.
6816         (test-xfail-XPG4/wordexp.h/linknamespace): Likewise.
6817         (test-xfail-POSIX/aio.h/linknamespace): Likewise.
6818         (test-xfail-POSIX/fnmatch.h/linknamespace): Likewise.
6819         (test-xfail-POSIX/glob.h/linknamespace): Likewise.
6820         (test-xfail-POSIX/math.h/linknamespace): Likewise.
6821         (test-xfail-POSIX/mqueue.h/linknamespace): Likewise.
6822         (test-xfail-POSIX/pthread.h/linknamespace): Likewise.
6823         (test-xfail-POSIX/regex.h/linknamespace): Likewise.
6824         (test-xfail-POSIX/sched.h/linknamespace): Likewise.
6825         (test-xfail-POSIX/semaphore.h/linknamespace): Likewise.
6826         (test-xfail-POSIX/sys/mman.h/linknamespace): Likewise.
6827         (test-xfail-POSIX/time.h/linknamespace): Likewise.
6828         (test-xfail-POSIX/unistd.h/linknamespace): Likewise.
6829         (test-xfail-POSIX/wordexp.h/linknamespace): Likewise.
6830         (test-xfail-UNIX98/aio.h/linknamespace): Likewise.
6831         (test-xfail-UNIX98/ctype.h/linknamespace): Likewise.
6832         (test-xfail-UNIX98/fmtmsg.h/linknamespace): Likewise.
6833         (test-xfail-UNIX98/fnmatch.h/linknamespace): Likewise.
6834         (test-xfail-UNIX98/glob.h/linknamespace): Likewise.
6835         (test-xfail-UNIX98/grp.h/linknamespace): Likewise.
6836         (test-xfail-UNIX98/libgen.h/linknamespace): Likewise.
6837         (test-xfail-UNIX98/math.h/linknamespace): Likewise.
6838         (test-xfail-UNIX98/mqueue.h/linknamespace): Likewise.
6839         (test-xfail-UNIX98/netdb.h/linknamespace): Likewise.
6840         (test-xfail-UNIX98/pthread.h/linknamespace): Likewise.
6841         (test-xfail-UNIX98/pwd.h/linknamespace): Likewise.
6842         (test-xfail-UNIX98/regex.h/linknamespace): Likewise.
6843         (test-xfail-UNIX98/sched.h/linknamespace): Likewise.
6844         (test-xfail-UNIX98/search.h/linknamespace): Likewise.
6845         (test-xfail-UNIX98/semaphore.h/linknamespace): Likewise.
6846         (test-xfail-UNIX98/stdio.h/linknamespace): Likewise.
6847         (test-xfail-UNIX98/stdlib.h/linknamespace): Likewise.
6848         (test-xfail-UNIX98/sys/mman.h/linknamespace): Likewise.
6849         (test-xfail-UNIX98/sys/statvfs.h/linknamespace): Likewise.
6850         (test-xfail-UNIX98/syslog.h/linknamespace): Likewise.
6851         (test-xfail-UNIX98/time.h/linknamespace): Likewise.
6852         (test-xfail-UNIX98/unistd.h/linknamespace): Likewise.
6853         (test-xfail-UNIX98/wchar.h/linknamespace): Likewise.
6854         (test-xfail-UNIX98/wordexp.h/linknamespace): Likewise.
6855         (test-xfail-XOPEN2K/aio.h/linknamespace): Likewise.
6856         (test-xfail-XOPEN2K/complex.h/linknamespace): Likewise.
6857         (test-xfail-XOPEN2K/fcntl.h/linknamespace): Likewise.
6858         (test-xfail-XOPEN2K/fmtmsg.h/linknamespace): Likewise.
6859         (test-xfail-XOPEN2K/fnmatch.h/linknamespace): Likewise.
6860         (test-xfail-XOPEN2K/glob.h/linknamespace): Likewise.
6861         (test-xfail-XOPEN2K/grp.h/linknamespace): Likewise.
6862         (test-xfail-XOPEN2K/libgen.h/linknamespace): Likewise.
6863         (test-xfail-XOPEN2K/math.h/linknamespace): Likewise.
6864         (test-xfail-XOPEN2K/mqueue.h/linknamespace): Likewise.
6865         (test-xfail-XOPEN2K/net/if.h/linknamespace): Likewise.
6866         (test-xfail-XOPEN2K/netdb.h/linknamespace): Likewise.
6867         (test-xfail-XOPEN2K/pthread.h/linknamespace): Likewise.
6868         (test-xfail-XOPEN2K/pwd.h/linknamespace): Likewise.
6869         (test-xfail-XOPEN2K/regex.h/linknamespace): Likewise.
6870         (test-xfail-XOPEN2K/search.h/linknamespace): Likewise.
6871         (test-xfail-XOPEN2K/semaphore.h/linknamespace): Likewise.
6872         (test-xfail-XOPEN2K/signal.h/linknamespace): Likewise.
6873         (test-xfail-XOPEN2K/spawn.h/linknamespace): Likewise.
6874         (test-xfail-XOPEN2K/stdlib.h/linknamespace): Likewise.
6875         (test-xfail-XOPEN2K/sys/mman.h/linknamespace): Likewise.
6876         (test-xfail-XOPEN2K/sys/statvfs.h/linknamespace): Likewise.
6877         (test-xfail-XOPEN2K/sys/wait.h/linknamespace): Likewise.
6878         (test-xfail-XOPEN2K/syslog.h/linknamespace): Likewise.
6879         (test-xfail-XOPEN2K/tgmath.h/linknamespace): Likewise.
6880         (test-xfail-XOPEN2K/time.h/linknamespace): Likewise.
6881         (test-xfail-XOPEN2K/ucontext.h/linknamespace): Likewise.
6882         (test-xfail-XOPEN2K/unistd.h/linknamespace): Likewise.
6883         (test-xfail-XOPEN2K/wordexp.h/linknamespace): Likewise.
6884         (test-xfail-POSIX2008/aio.h/linknamespace): Likewise.
6885         (test-xfail-POSIX2008/complex.h/linknamespace): Likewise.
6886         (test-xfail-POSIX2008/ctype.h/linknamespace): Likewise.
6887         (test-xfail-POSIX2008/dirent.h/linknamespace): Likewise.
6888         (test-xfail-POSIX2008/fcntl.h/linknamespace): Likewise.
6889         (test-xfail-POSIX2008/grp.h/linknamespace): Likewise.
6890         (test-xfail-POSIX2008/math.h/linknamespace): Likewise.
6891         (test-xfail-POSIX2008/mqueue.h/linknamespace): Likewise.
6892         (test-xfail-POSIX2008/net/if.h/linknamespace): Likewise.
6893         (test-xfail-POSIX2008/netdb.h/linknamespace): Likewise.
6894         (test-xfail-POSIX2008/pthread.h/linknamespace): Likewise.
6895         (test-xfail-POSIX2008/regex.h/linknamespace): Likewise.
6896         (test-xfail-POSIX2008/semaphore.h/linknamespace): Likewise.
6897         (test-xfail-POSIX2008/spawn.h/linknamespace): Likewise.
6898         (test-xfail-POSIX2008/sys/mman.h/linknamespace): Likewise.
6899         (test-xfail-POSIX2008/sys/statvfs.h/linknamespace): Likewise.
6900         (test-xfail-POSIX2008/tgmath.h/linknamespace): Likewise.
6901         (test-xfail-POSIX2008/time.h/linknamespace): Likewise.
6902         (test-xfail-POSIX2008/unistd.h/linknamespace): Likewise.
6903         (test-xfail-XOPEN2K8/aio.h/linknamespace): Likewise.
6904         (test-xfail-XOPEN2K8/complex.h/linknamespace): Likewise.
6905         (test-xfail-XOPEN2K8/dirent.h/linknamespace): Likewise.
6906         (test-xfail-XOPEN2K8/fcntl.h/linknamespace): Likewise.
6907         (test-xfail-XOPEN2K8/fmtmsg.h/linknamespace): Likewise.
6908         (test-xfail-XOPEN2K8/grp.h/linknamespace): Likewise.
6909         (test-xfail-XOPEN2K8/libgen.h/linknamespace): Likewise.
6910         (test-xfail-XOPEN2K8/math.h/linknamespace): Likewise.
6911         (test-xfail-XOPEN2K8/mqueue.h/linknamespace): Likewise.
6912         (test-xfail-XOPEN2K8/net/if.h/linknamespace): Likewise.
6913         (test-xfail-XOPEN2K8/netdb.h/linknamespace): Likewise.
6914         (test-xfail-XOPEN2K8/pthread.h/linknamespace): Likewise.
6915         (test-xfail-XOPEN2K8/pwd.h/linknamespace): Likewise.
6916         (test-xfail-XOPEN2K8/regex.h/linknamespace): Likewise.
6917         (test-xfail-XOPEN2K8/search.h/linknamespace): Likewise.
6918         (test-xfail-XOPEN2K8/semaphore.h/linknamespace): Likewise.
6919         (test-xfail-XOPEN2K8/spawn.h/linknamespace): Likewise.
6920         (test-xfail-XOPEN2K8/sys/mman.h/linknamespace): Likewise.
6921         (test-xfail-XOPEN2K8/sys/statvfs.h/linknamespace): Likewise.
6922         (test-xfail-XOPEN2K8/syslog.h/linknamespace): Likewise.
6923         (test-xfail-XOPEN2K8/tgmath.h/linknamespace): Likewise.
6924         (test-xfail-XOPEN2K8/time.h/linknamespace): Likewise.
6925         (test-xfail-XOPEN2K8/unistd.h/linknamespace): Likewise.
6927         [BZ #17589]
6928         * intl/localealias.c [_LIBC] (FGETS): Use __fgets_unlocked instead
6929         of fgets_unlocked.
6931         [BZ #17585]
6932         * string/memmem.c [!_LIBC] (__memmem): Define to memmem.
6933         (memmem): Rename to __memmem and define as weak alias of
6934         __memmem.  Use libc_hidden_weak.
6935         (__memmem): Use libc_hidden_def.
6936         * include/string.h (__memmem): Declare.  Use libc_hidden_proto.
6937         * locale/findlocale.c (valid_locale_name): Use __memmem instead of
6938         memmem.
6940         [BZ #17582]
6941         * libio/iofgets.c [weak_alias && !_IO_MTSAFE_IO]
6942         (__fgets_unlocked): Add alias of _IO_fgets.  Use libc_hidden_def.
6943         * libio/iofgets_u.c (fgets_unlocked): Rename to __fgets_unlocked
6944         and define as weak alias of __fgets_unlocked.  Use
6945         libc_hidden_weak.
6946         (__fgets_unlocked): Use libc_hidden_def.
6947         * include/stdio.h (__fgets_unlocked): Declare.  Use
6948         libc_hidden_proto.
6949         * sysdeps/unix/sysv/linux/getsysstats.c (phys_pages_info): Use
6950         __fgets_unlocked instead of fgets_unlocked.
6951         * sysdeps/unix/sysv/linux/alpha/getsysstats.c
6952         (GET_NPROCS_CONF_PARSER): Likewise.
6953         * sysdeps/unix/sysv/linux/sparc/getsysstats.c
6954         (GET_NPROCS_CONF_PARSER): Likewise.
6956         [BZ #17574]
6957         * wcsmbs/wmemset.c (wmemset): Rename to __wmemset and define as
6958         weak alias of __wmemset.  Use libc_hidden_weak.
6959         (__wmemset): Use libc_hidden_def.
6960         * include/wchar.h (__wmemset): Declare.  Use libc_hidden_proto.
6961         * stdio-common/printf_fp.c (___printf_fp): Call __wmemset instead
6962         of wmemset.
6964         [BZ #17573]
6965         * include/string.h [NOT_IN_libc || !SHARED] (mempcpy): Declare
6966         with asm name __mempcpy.
6967         [NOT_IN_libc || !SHARED] (stpcpy): Declare with asm name __stpcpy.
6969         [BZ #17572]
6970         * sysdeps/x86_64/rawmemchr.S (rawmemchr): Rename to __rawmemchr
6971         and define as weak alias of __rawmemchr.
6972         (__rawmemchr): Do not define as strong alias of rawmemchr.
6974         [BZ #17571]
6975         * stdlib/msort.c (qsort_r): Rename to __qsort_r and define as weak
6976         alias of __qsort_r.
6977         (qsort): Call __qsort_r instead of qsort_r.
6978         * include/stdlib.h (qsort_r): Do not call libc_hidden_proto.
6979         (__qsort_r): Declare.  Call libc_hidden_proto.
6980         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Call __qsort_r
6981         instead of qsort_r.
6982         * nscd/gai.c (__qsort_r): Define to qsort_r.
6983         * posix/tst-rfc3484.c (__qsort_r): Likewise.
6984         * posix/tst-rfc3484-2.c (__qsort_r): Likewise.
6985         * posix/tst-rfc3484-3.c (__qsort_r): Likewise.
6987         [BZ #17570]
6988         * malloc/malloc.c (malloc_info): Rename to __malloc_info and
6989         define as weak alias of __malloc_info.
6991         [BZ #17584]
6992         * dirent/rewinddir.c (rewinddir): Rename to __rewinddir and define
6993         as weak alias of __rewinddir.  Don't use libc_hidden_def.
6994         (__rewinddir): Use libc_hidden_def.
6995         * sysdeps/mach/hurd/rewinddir.c: Rename to __rewinddir and define
6996         as weak alias of __rewinddir.  Don't use libc_hidden_def.
6997         (__rewinddir): Use libc_hidden_def.
6998         * sysdeps/posix/rewinddir.c: Rename to __rewinddir and define as
6999         weak alias of __rewinddir.  Don't use libc_hidden_def.
7000         (__rewinddir): Use libc_hidden_def.
7001         * include/dirent.h (rewinddir): Don't use libc_hidden_proto.
7002         (__rewinddir): Use libc_hidden_proto.
7003         * sysdeps/posix/getcwd.c [!_LIBC] (__rewinddir): Define to
7004         rewinddir.
7005         (__getcwd): Use __rewinddir instead of rewinddir.
7007         [BZ #17583]
7008         * libio/fileno.c (fileno): Rename to __fileno and define as weak
7009         alias of __fileno.  Use libc_hidden_weak.
7010         (__fileno): Use libc_hidden_def.
7011         [weak_alias] (fileno_unlocked): Define as weak alias of __fileno.
7012         * libio/ftello.c (ftello): Rename to __ftello and define as weak
7013         alias of __ftello.
7014         [__OFF_T_MATCHES_OFF64_T] (ftello64): Define as weak alias of
7015         __ftello.
7016         * libio/iofread.c [weak_alias && !_IO_MTSAFE_IO]
7017         (__fread_unlocked): Define as strong alias of _IO_fread.  Use
7018         libc_hidden_def.
7019         (fread_unlocked): Don't use libc_hidden_ver.
7020         * libio/iofread_u.c (fread_unlocked): Rename to __fread_unlocked
7021         and define as weak alias of __fread_unlocked.  Don't use
7022         libc_hidden_def.
7023         (__fread_unlocked): Use libc_hidden_def.
7024         * include/stdio.h (__fileno): Declare.  Use libc_hidden_proto.
7025         (ftello): Don't use libc_hidden_proto.
7026         (__ftello): Declare.  Use libc_hidden_proto.
7027         (fread_unlocked): Don't use libc_hidden_proto.
7028         (__fread_unlocked): Declare.  Use libc_hidden_proto.
7029         * time/tzfile.c (__tzfile_read): Use __fileno, __fread_unlocked
7030         and __ftello instead of fileno, fread_unlocked and ftello.
7032 2012-11-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
7034         * sysdeps/s390/s390-32/bcopy.S (__bcopy): Use GOT instead of
7035         GOT12.
7036         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_load_address):
7037         Likewise.
7038         (_dl_start_user): Likewise.
7039         * sysdeps/s390/s390-32/setjmp.S (__sigsetjmp): Likewise.
7041 2014-11-12  Carlos O'Donell  <carlos@redhat.com>
7042             Siddhesh Poyarekar  <siddhesh@redhat.com>
7044         * sysdeps/s390/s390-32/dl-machine.h (_dl_start_user):
7045         Move argv and envp down instead of moving argc up.
7046         * sysdeps/s390/s390-32/dl-sysdep.h: New file.
7048 2014-11-12  Leonhard Holz  <leonhard.holz@web.de>
7050         [BZ #17506]
7051         * test-skeleton.c (main): Return successful if one of
7052         EXPECTED_SIGNAL or EXPECTED_STATUS is met when both given.
7053         * string/tst-strcoll-overflow.c: Define expected status.
7055 2014-11-12  Tatiana Udalova  <t.udalova@samsung.com>
7057         [BZ #17475]
7058         * locale/iso-639.def: Define Bhili and Tulu language codes.
7060 2014-11-11  Alan Hayward  <alan.hayward@arm.com>
7062         * sysdeps/unix/sysv/linux/aarch64/bits/ipc.h: New file.
7064 2014-11-10  Renlin Li  <Renlin.Li@arm.com>
7066         [BZ #17555]
7067         * sysdeps/aarch64/start.S (_start): Delete x29 overwritten assignment.
7069 2014-11-10  Andrew Senkevich  <andrew.n.senkevich@gmail.com>
7071         * configure.ac: Updated check of minimal required version to
7072         2.22.
7073         * manual/install.texi (Tools for Compilation): Updated version
7074         number.
7075         * configure: Regenerated.
7076         * INSTALL: Likewise.
7078 2014-11-07  Andreas Schwab  <schwab@linux-m68k.org>
7080         * sysdeps/unix/sysv/linux/m68k/localplt.data (ld.so): Remove
7081         __tls_get_addr.
7083 2014-11-07  Joseph Myers  <joseph@codesourcery.com>
7085         * include/sys/wait.h (__libc_waitpid): Remove declaration.
7086         * posix/waitpid.c (__libc_waitpid): Rename to __waitpid.
7087         (__waitpid): Don't define as alias.  Use libc_hidden_def not
7088         libc_hidden_weak.
7089         (waitpid): Define as alias of __waitpid.
7090         * sysdeps/unix/bsd/waitpid.c (__libc_waitpid): Rename to
7091         __waitpid.
7092         (__waitpid): Don't define as alias.  Use libc_hidden_def not
7093         libc_hidden_weak.
7094         (waitpid): Define as alias of __waitpid.
7095         * sysdeps/unix/sysv/linux/i386/syscalls.list (waitpid): Remove
7096         __libc_waitpid alias.
7097         * sysdeps/unix/sysv/linux/m68k/syscalls.list (waitpid): Likewise.
7098         * sysdeps/unix/sysv/linux/powerpc/syscalls.list (waitpid):
7099         Likewise.
7100         * sysdeps/unix/sysv/linux/sh/syscalls.list (waitpid): Likewise.
7101         * sysdeps/unix/sysv/linux/sparc/syscalls.list (waitpid): Likewise.
7102         * sysdeps/unix/sysv/linux/tile/waitpid.S (__libc_waitpid): Remove
7103         alias.
7104         * sysdeps/unix/sysv/linux/waitpid.c (__libc_waitpid): Rename to
7105         __waitpid.
7106         (__waitpid): Don't define as alias.  Use libc_hidden_def not
7107         libc_hidden_weak.
7108         (waitpid): Define as alias of __waitpid.
7110 2014-11-06  Carlos O'Donell  <carlos@redhat.com>
7112         * manual/llio.texi: Add comment that write safety has been
7113         fixed in Linux.
7115         * elf/Makefile (all-built-dso): Add $(common-objpfx)elf/ld.so.
7116         (localplt-build-dso): Add elf/ld.so.
7117         * sysdeps/unix/sysv/linux/i386/localplt.data: Add ___tls_get_addr
7118         i.e. 3 underscore version, __libc_memalign, malloc, calloc, realloc,
7119         and free for ld.so.
7120         * sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data: Add
7121         __libc_memalign, malloc, calloc, realloc, and free for ld.so.
7122         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data:
7123         Likewise.
7124         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data:
7125         Likewise.
7126         * sysdeps/unix/sysv/linux/s390/localplt.data: Likewise.
7127         * sysdeps/generic/localplt.data: Add __tls_get_addr i.e. 2 underscore
7128         version, __libc_memalign, malloc, calloc, realloc and free for ld.so.
7129         * sysdeps/unix/sysv/linux/aarch64/localplt.data: Likewise.
7130         * sysdeps/unix/sysv/linux/arm/localplt.data: Likewise.
7131         * sysdeps/unix/sysv/linux/alpha/localplt.data: Likewise.
7132         * sysdeps/unix/sysv/linux/ia64/localplt.data: Likewise.
7133         * sysdeps/unix/sysv/linux/m68k/localplt.data: Likewise.
7134         * sysdeps/unix/sysv/linux/microblaze/localplt.data: Likewise.
7135         * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: Likewise.
7136         * sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data: Likewise.
7138 2014-11-05  Joseph Myers  <joseph@codesourcery.com>
7140         [BZ #14132]
7141         * include/libc-symbols.h (INTUSE): Remove macro.
7142         (INTDEF): Likewise.
7143         (INTVARDEF): Likewise.
7144         (_INTVARDEF): Likewise.
7145         (INTDEF2): Likewise.
7146         (INTVARDEF2): Likewise.
7147         * elf/rtld.c [!HAVE_INLINED_SYSCALLS] (_dl_starting_up): Use
7148         rtld_hidden_def instead of INTVARDEF.
7149         * sysdeps/generic/ldsodefs.h [IS_IN_rtld]
7150         (_dl_starting_up_internal): Remove declaration.
7151         (_dl_starting_up): Use rtld_hidden_proto.
7152         * elf/dl-init.c [!HAVE_INLINED_SYSCALLS] (_dl_starting_up): Remove
7153         declaration.
7154         [!HAVE_INLINED_SYSCALLS] (_dl_starting_up_internal): Likewise.
7155         (_dl_init) [!HAVE_INLINED_SYSCALLS]: Don't use INTUSE with
7156         _dl_starting_up.
7157         * elf/dl-writev.h (_dl_writev): Likewise.
7158         * sysdeps/powerpc/powerpc64/dl-machine.h [!HAVE_INLINED_SYSCALLS]
7159         (DL_STARTING_UP_DEF): Use __GI__dl_starting_up instead of
7160         _dl_starting_up_internal.
7162 2014-11-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7164         * stdio-common/tst-fmemopen.c (do_test): Refactor to use
7165         test-skeleton.c.
7167 2014-11-05  Will Newton  <will.newton@linaro.org>
7169         * benchtests/Makefile: (bench-malloc): Add malloc thread
7170         scalability benchmark.
7171         * benchtests/bench-malloc-threads.c: New file.
7173 2014-11-05  Richard Earnshaw  <rearnsha@arm.com>
7175         * sysdeps/aarch64/strchrnul.S: New file.
7177 2014-11-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7179         * sysdeps/powerpc/powerpc64/power8/memset.S (MTVSRD_V1_R4): Simplify
7180         definition.
7181         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S (MFVSRD_R3_V1):
7182         Likwise.
7183         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S (MFVSRD_R3_V1):
7184         Likewise.
7185         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (MFVSRD_R3_V1):
7186         Likewise.
7187         * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S (MFVSRD_R3_V1):
7188         Likewise.
7189         * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S (MFVSRD_R3_V1):
7190         Likewise.
7192 2014-11-05  Arjun Shankar  <arjun.is@lostca.se>
7194         * catgets/test-gencat.c: Use test-skeleton.c.
7195         * catgets/tst-catgets.c: Likewise.
7196         * csu/tst-empty.c: Likewise.
7197         * elf/tst-audit2.c: Likewise.
7198         * elf/tst-global1.c: Likewise.
7199         * elf/tst-pathopt.c: Likewise.
7200         * elf/tst-piemod1.c: Likewise.
7201         * elf/tst-tls10.c: Likewise.
7202         * elf/tst-tls11.c: Likewise.
7203         * elf/tst-tls12.c: Likewise.
7204         * gnulib/tst-gcc.c: Likewise.
7205         * iconvdata/tst-e2big.c: Likewise.
7206         * iconvdata/tst-loading.c: Likewise.
7207         * iconv/tst-iconv1.c: Likewise.
7208         * iconv/tst-iconv2.c: Likewise.
7209         * inet/test-inet6_opt.c: Likewise.
7210         * inet/tst-gethnm.c: Likewise.
7211         * inet/tst-network.c: Likewise.
7212         * inet/tst-ntoa.c: Likewise.
7213         * intl/tst-codeset.c: Likewise.
7214         * intl/tst-gettext2.c: Likewise.
7215         * intl/tst-gettext3.c: Likewise.
7216         * intl/tst-ngettext.c: Likewise.
7217         * intl/tst-translit.c: Likewise.
7218         * io/test-stat.c: Likewise.
7219         * libio/test-fmemopen.c: Likewise.
7220         * libio/tst-freopen.c: Likewise.
7221         * libio/tst-sscanf.c: Likewise.
7222         * libio/tst-ungetwc1.c: Likewise.
7223         * libio/tst-ungetwc2.c: Likewise.
7224         * libio/tst-widetext.c: Likewise.
7225         * localedata/tst-ctype.c: Likewise.
7226         * localedata/tst-digits.c: Likewise.
7227         * localedata/tst-leaks.c: Likewise.
7228         * localedata/tst-mbswcs1.c: Likewise.
7229         * localedata/tst-mbswcs2.c: Likewise.
7230         * localedata/tst-mbswcs3.c: Likewise.
7231         * localedata/tst-mbswcs4.c: Likewise.
7232         * localedata/tst-mbswcs5.c: Likewise.
7233         * localedata/tst-setlocale.c: Likewise.
7234         * localedata/tst-trans.c: Likewise.
7235         * localedata/tst-wctype.c: Likewise.
7236         * localedata/tst-xlocale1.c: Likewise.
7237         * login/tst-grantpt.c: Likewise.
7238         * malloc/tst-calloc.c: Likewise.
7239         * malloc/tst-malloc.c: Likewise.
7240         * malloc/tst-mallocstate.c: Likewise.
7241         * malloc/tst-mcheck.c: Likewise.
7242         * malloc/tst-mtrace.c: Likewise.
7243         * malloc/tst-obstack.c: Likewise.
7244         * math/atest-exp2.c: Likewise.
7245         * math/atest-exp.c: Likewise.
7246         * math/atest-sincos.c: Likewise.
7247         * math/test-matherr.c: Likewise.
7248         * math/test-misc.c: Likewise.
7249         * math/test-powl.c: Likewise.
7250         * math/tst-definitions.c: Likewise.
7251         * misc/tst-dirname.c: Likewise.
7252         * misc/tst-efgcvt.c: Likewise.
7253         * misc/tst-fdset.c: Likewise.
7254         * misc/tst-hsearch.c: Likewise.
7255         * misc/tst-mntent2.c: Likewise.
7256         * nptl/tst-sem7.c: Likewise.
7257         * nptl/tst-sem8.c: Likewise.
7258         * nptl/tst-sem9.c: Likewise.
7259         * nss/test-netdb.c: Likewise.
7260         * posix/tst-fnmatch.c: Likewise.
7261         * posix/tst-getlogin.c: Likewise.
7262         * posix/tst-gnuglob.c: Likewise.
7263         * posix/tst-mmap.c: Likewise.
7264         * pwd/tst-getpw.c: Likewise.
7265         * resolv/tst-inet_ntop.c: Likewise.
7266         * rt/tst-timer.c: Likewise.
7267         * stdio-common/test-fseek.c: Likewise.
7268         * stdio-common/test-popen.c: Likewise.
7269         * stdio-common/test-vfprintf.c: Likewise.
7270         * stdio-common/tst-cookie.c: Likewise.
7271         * stdio-common/tst-fileno.c: Likewise.
7272         * stdio-common/tst-gets.c: Likewise.
7273         * stdio-common/tst-obprintf.c: Likewise.
7274         * stdio-common/tst-perror.c: Likewise.
7275         * stdio-common/tst-sprintf2.c: Likewise.
7276         * stdio-common/tst-sprintf3.c: Likewise.
7277         * stdio-common/tst-sprintf.c: Likewise.
7278         * stdio-common/tst-swprintf.c: Likewise.
7279         * stdio-common/tst-tmpnam.c: Likewise.
7280         * stdio-common/tst-unbputc.c: Likewise.
7281         * stdio-common/tst-wc-printf.c: Likewise.
7282         * stdlib/tst-environ.c: Likewise.
7283         * stdlib/tst-fmtmsg.c: Likewise.
7284         * stdlib/tst-limits.c: Likewise.
7285         * stdlib/tst-rand48-2.c: Likewise.
7286         * stdlib/tst-rand48.c: Likewise.
7287         * stdlib/tst-random2.c: Likewise.
7288         * stdlib/tst-random.c: Likewise.
7289         * stdlib/tst-strtol.c: Likewise.
7290         * stdlib/tst-strtoll.c: Likewise.
7291         * stdlib/tst-tls-atexit.c: Likewise.
7292         * stdlib/tst-xpg-basename.c: Likewise.
7293         * string/test-ffs.c: Likewise.
7294         * string/tst-bswap.c: Likewise.
7295         * string/tst-inlcall.c: Likewise.
7296         * string/tst-strtok.c: Likewise.
7297         * string/tst-strxfrm.c: Likewise.
7298         * sysdeps/x86_64/tst-audit10.c: Likewise.
7299         * sysdeps/x86_64/tst-audit3.c: Likewise.
7300         * sysdeps/x86_64/tst-audit4.c: Likewise.
7301         * sysdeps/x86_64/tst-audit5.c: Likewise.
7302         * time/tst-ftime_l.c: Likewise.
7303         * time/tst-getdate.c: Likewise.
7304         * time/tst-mktime3.c: Likewise.
7305         * time/tst-mktime.c: Likewise.
7306         * time/tst-posixtz.c: Likewise.
7307         * time/tst-strptime2.c: Likewise.
7308         * time/tst-strptime3.c: Likewise.
7309         * wcsmbs/tst-btowc.c: Likewise.
7310         * wcsmbs/tst-mbrtowc.c: Likewise.
7311         * wcsmbs/tst-mbsrtowcs.c: Likewise.
7312         * wcsmbs/tst-wchar-h.c: Likewise.
7313         * wcsmbs/tst-wcpncpy.c: Likewise.
7314         * wcsmbs/tst-wcrtomb.c: Likewise.
7315         * wcsmbs/tst-wcsnlen.c: Likewise.
7316         * wcsmbs/tst-wcstof.c: Likewise.
7318 2014-11-04  Joseph Myers  <joseph@codesourcery.com>
7320         [BZ #14132]
7321         * elf/dl-profile.c (_dl_mcount): Use rtld_hidden_def instead of
7322         INTDEF.
7323         * sysdeps/generic/ldsodefs.h (_dl_mcount_internal): Remove
7324         declaration.
7325         (_dl_mcount): Use rtld_hidden_proto.
7326         * elf/dl-runtime.c (_dl_profile_fixup): Don't use INTUSE with
7327         _dl_mcount.
7328         * elf/rtld.c (_rtld_global_ro): Likewise.
7330         [BZ #14132]
7331         * elf/dl-init.c (_dl_init): Don't use INTDEF.
7332         * sysdeps/aarch64/dl-machine.h (RTLD_START): Use _dl_init instead
7333         of _dl_init_internal.
7334         * sysdeps/alpha/dl-machine.h (RTLD_START): Likewise.
7335         * sysdeps/arm/dl-machine.h (RTLD_START): Likewise.
7336         * sysdeps/hppa/dl-machine.h (RTLD_START): Likewise.
7337         * sysdeps/i386/dl-machine.h (RTLD_START): Likewise.
7338         * sysdeps/ia64/dl-machine.h (RTLD_START): Likewise.
7339         * sysdeps/m68k/dl-machine.h (RTLD_START): Likewise.
7340         * sysdeps/microblaze/dl-machine.h (RTLD_START): Likewise.
7341         * sysdeps/mips/dl-machine.h (RTLD_START): Likewise.
7342         * sysdeps/powerpc/powerpc32/dl-start.S (_start): Likewise.
7343         * sysdeps/s390/s390-32/dl-machine.h (RTLD_START): Likewise.
7344         * sysdeps/s390/s390-64/dl-machine.h (RTLD_START): Likewise.
7345         * sysdeps/sh/dl-machine.h (RTLD_START): Likewise.
7346         * sysdeps/sparc/sparc32/dl-machine.h (RTLD_START): Likewise.
7347         * sysdeps/sparc/sparc64/dl-machine.h (RTLD_START): Likewise.
7348         * sysdeps/tile/dl-start.S (_start): Likewise.
7349         * sysdeps/x86_64/dl-machine.h (RTLD_START): Likewise.
7350         * sysdeps/x86_64/x32/dl-machine.h (RTLD_START): Likewise.
7352         [BZ #14132]
7353         * sysdeps/generic/ldsodefs.h (_dl_argv): Use rtld_hidden_proto.
7354         [IS_IN_rtld] (_dl_argv_internal): Do not declare.
7355         (rtld_progname): Make macro definition unconditional.
7356         * elf/rtld.c (_dl_argv): Use rtld_hidden_data_def instead of
7357         INTDEF.
7358         (dlmopen_doit): Do not use INTUSE with _dl_argv.
7359         (dl_main): Likewise.
7360         * elf/dl-sysdep.c (_dl_sysdep_start): Likewise.
7361         * sysdeps/alpha/dl-machine.h (RTLD_START): Use __GI__dl_argv
7362         instead of _dl_argv_internal.
7363         * sysdeps/powerpc/powerpc32/dl-start.S (_dl_start_user): Use
7364         __GI__dl_argv instead of INTUSE(_dl_argv).
7365         * sysdeps/powerpc/powerpc64/dl-machine.h (RTLD_START): Use
7366         __GI__dl_argv instead of _dl_argv_internal.
7368         * soft-fp/op-common.h (_FP_TO_INT_ROUND): New macro.
7369         * soft-fp/double.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_D): New
7370         macro.
7371         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_D): Likewise.
7372         * soft-fp/extended.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_E):
7373         New macro.
7374         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_E): Likewise.
7375         * soft-fp/quad.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_Q): New
7376         macro.
7377         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_Q): Likewise.
7378         * soft-fp/single.h (FP_TO_INT_ROUND_S): New macro.
7380 2014-11-04  Andreas Schwab  <schwab@suse.de>
7382         * posix/regex_internal.h: Don't include <locale/elem-hash.h>.
7384 2014-11-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7386         * sysdeps/powerpc/powerpc64/power8/memset.S (MTVSRD_V1_R4): Encode
7387         mtvsrd instruction in binary form.
7389 2014-11-03  Andreas Schwab  <schwab@suse.de>
7391         [BZ #17522]
7392         * libio/wfileops.c (_IO_wdo_write): If the file buffer has room
7393         for less than MB_LEN_MAX use a local buffer of that size.
7394         * libio/tst-fputws.c: New file.
7395         * libio/Makefile (tests): Add tst-fputws.
7397 2014-11-01  Jose E. Marchesi  <jose.marchesi@oracle.com>
7399         * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (struct fpu): fix
7400         the size of the fpu_fr.fpu_dregs[] array.
7402 2014-11-01  Joseph Myers  <joseph@codesourcery.com>
7404         * posix/nanosleep.c (__libc_nanosleep): Rename to __nanosleep.
7405         (__nanosleep): Do not define as alias.
7406         (nanosleep): Define as alias of __nanosleep.
7407         * sysdeps/unix/sysv/linux/syscalls.list (nanosleep): Remove
7408         __libc_nanosleep name.
7410 2014-10-31  Joseph Myers  <joseph@codesourcery.com>
7412         * aclocal.m4 (GLIBC_AUTOCONF_VERSION): Mention need to update
7413         install.texi in comment.
7415 2014-10-31  Torvald Riegel  <triegel@redhat.com>
7417         * sysdeps/powerpc/bits/atomic.h (atomic_write_barrier): Remove and...
7418         * sysdeps/powerpc/powerpc32/bits/atomic.h (atomic_write_barrier):
7419         ... add here and use lwsync or sync ...
7420         * sysdeps/powerpc/powerpc64/bits/atomic.h (atomic_write_barrier):
7421         ... and add here using lwsync.
7423 2014-10-31  Matthew Fortune  <matthew.fortune@imgtec.com>
7425         * elf/dl-machine-reject-phdr.h: New file.
7426         * elf/dl-load.c: #include that.
7427         (open_verify): Call elf_machine_reject_phdr_p and ignore the file
7428         if that returned true.
7430 2014-10-31  Roland McGrath  <roland@hack.frob.com>
7432         [BZ #17496]
7433         * Makerules: Move gnu/lib-names.h generation chunk up, to right after
7434         gen-as-const-headers chunk.  Add a big scare comment after the last
7435         safe place to touch before-compile.
7437 2014-10-31  Joseph Myers  <joseph@codesourcery.com>
7439         * manual/install.texi (Tools for Compilation): Update autoconf
7440         version requirements.
7441         * INSTALL: Regenerated.
7443         * misc/pselect.c [!__pselect] (__libc_pselect): Remove alias.
7444         * sysdeps/unix/sysv/linux/pselect.c [__NR_pselect6]
7445         (__libc_pselect): Likewise.
7447         [BZ #14138]
7448         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Remove file.
7449         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
7450         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
7451         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
7453 2014-10-31  Torvald Riegel  <triegel@redhat.com>
7455         * sysdeps/sparc/sparc32/bits/atomic.h (atomic_write_barrier): Use
7456         correct barrier instruction.
7457         * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h (atomic_write_barrier):
7458         Likewise.
7459         * sysdeps/sparc/sparc64/bits/atomic.h (atomic_write_barrier):
7460         Likewise.
7462 2014-10-30  Roland McGrath  <roland@hack.frob.com>
7464         * include/ctype.h: Include <ctype/ctype.h> first thing rather than
7465         after defining inlines.  Instead, just use parens to defeat macro
7466         expansion of __isctype in its declaration.
7468 2014-10-30  Joseph Myers  <joseph@codesourcery.com>
7470         * include/sys/uio.h (__libc_readv): Remove declaration.
7471         (__libc_writev): Likewise.
7472         * misc/readv.c (__libc_readv): Rename to __readv.
7473         (__readv): Do not define as alias.
7474         (readv): Define as alias of __readv.
7475         * misc/writev.c (__libc_writev): Rename to __writev.
7476         (__writev): Do not define as alias.
7477         (writev): Define as alias of __writev.
7478         * sysdeps/posix/readv.c (__libc_readv): Rename to __readv.
7479         (__readv): Do not define as alias.
7480         (readv): Define unconditionally as alias of __readv.
7481         * sysdeps/posix/writev.c (__libc_writev): Rename to __writev.
7482         (__writev): Do not define as alias.
7483         (writev): Define unconditionally as alias of __writev.
7484         * sysdeps/unix/syscalls.list (readv): Do not define __libc_readv
7485         name.
7486         (writev): Do not define __libc_writev name.
7488 2014-10-30  Roland McGrath  <roland@hack.frob.com>
7490         * iconv/iconv_charmap.c (add_bytes): Make IN argument pointer to const.
7491         (convert_charseq): New function, broken out of ...
7492         (use_from_charmap): ... here.  Call it.
7493         (use_to_charmap): Use convert_charseq and free instead of duplicating
7494         its code with a variable-length stack struct.
7496 2014-10-30  Joseph Myers  <joseph@codesourcery.com>
7498         * include/fcntl.h (__libc_creat): Remove declaration.
7499         * io/creat.c (__libc_creat): Rename to creat.
7500         (creat): Do not define as alias.
7501         * sysdeps/unix/sysv/linux/alpha/creat.c (creat64): Define as alias
7502         of creat instead of __libc_creat.
7503         * sysdeps/unix/sysv/linux/generic/creat.c (__libc_creat): Rename
7504         to creat.
7505         (creat): Do not define as alias.
7506         [__WORDSIZE == 64] (creat64): Define as alias of creat instead of
7507         __libc_creat.
7508         * sysdeps/unix/sysv/linux/syscalls.list (creat): Do not define
7509         __libc_creat name.
7510         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list (creat):
7511         Likewise.
7513 2014-10-29  Carlos O'Donell  <carlos@redhat.com>
7515         * manual/llio.texi: Add comments discussing why write() may be
7516         considered MT-unsafe on Linux.
7518 2014-10-28  Carlos O'Donell  <carlos@redhat.com>
7520         * dl-load.c (local_strdup): Remove.
7521         (expand_dynamic_string_token): Use __strdup.
7522         (decompose_rpath): Likewise.
7523         (_dl_map_object): Likewise.
7525 2014-10-28  Joseph Myers  <joseph@codesourcery.com>
7527         [BZ #14132]
7528         * sysdeps/generic/unwind-dw2-fde.c
7529         (__register_frame_info_bases_internal): Do not declare.
7530         (__register_frame_info_table_bases_internal): Likewise.
7531         (__deregister_frame_info_bases_internal): Likewise.
7532         (__register_frame_info_bases): Declare and use hidden_proto before
7533         definition.  Use hidden_def instead of INTDEF.
7534         (__register_frame_info_table_bases): Likewise.
7535         (__deregister_frame_info_bases): Likewise.
7536         (__register_frame_info): Do not use INTUSE.
7537         (__register_frame): Likewise.
7538         (__register_frame_info_table): Likewise.
7539         (__register_frame_table): Likewise.
7540         (__deregister_frame_info): Likewise.
7541         (__deregister_frame): Likewise.
7543 2014-10-27  Gratian Crisan  <gratian.crisan@ni.com>
7545         * sysdeps/unix/sysv/linux/arm/kernel-features.h
7546         [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_FUTEX_LOCK_PI): Do
7547         not undefine.
7548         [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_REQUEUE_PI):
7549         Likewise.
7550         [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_SET_ROBUST_LIST):
7551         Likewise.
7553 2014-10-27  Joseph Myers  <joseph@codesourcery.com>
7555         [BZ #14138]
7556         * sysdeps/unix/sysv/linux/arm/setfsgid.c: Remove file.
7557         * sysdeps/unix/sysv/linux/arm/setfsuid.c: Likewise.
7558         * sysdeps/unix/sysv/linux/i386/setfsgid.c: Likewise.
7559         * sysdeps/unix/sysv/linux/i386/setfsuid.c: Likewise.
7560         * sysdeps/unix/sysv/linux/m68k/setfsgid.c: Likewise.
7561         * sysdeps/unix/sysv/linux/m68k/setfsuid.c: Likewise.
7562         * sysdeps/unix/sysv/linux/s390/s390-32/setfsgid.c: Likewise.
7563         * sysdeps/unix/sysv/linux/s390/s390-32/setfsuid.c: Likewise.
7564         * sysdeps/unix/sysv/linux/sh/setfsgid.c: Likewise.
7565         * sysdeps/unix/sysv/linux/sh/setfsuid.c: Likewise.
7566         * sysdeps/unix/sysv/linux/sparc/sparc32/setfsgid.c: Likewise.
7567         * sysdeps/unix/sysv/linux/sparc/sparc32/setfsuid.c: Likewise.
7568         * sysdeps/unix/sysv/linux/arm/syscalls.list (setfsgid): Add
7569         syscall.
7570         (setfsuid): Likewise.
7571         * sysdeps/unix/sysv/linux/i386/syscalls.list (setfsgid): Likewise.
7572         (setfsuid): Likewise.
7573         * sysdeps/unix/sysv/linux/m68k/syscalls.list (setfsgid): Likewise.
7574         (setfsuid): Likewise.
7575         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (setfsgid):
7576         Likewise.
7577         (setfsuid): Likewise.
7578         * sysdeps/unix/sysv/linux/sh/syscalls.list (setfsgid): Likewise.
7579         (setfsuid): Likewise.
7580         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (setfsgid):
7581         Likewise.
7582         (setfsuid): Likewise.
7584 2014-10-27  Andreas Schwab  <schwab@suse.de>
7586         [BZ #17501]
7587         * sysdeps/i386/i686/multiarch/strcasecmp.S (__strcasecmp): Fix
7588         check for Slow_SSE4_2 feature bit.
7589         * sysdeps/i386/i686/multiarch/strcmp.S (STRCMP): Likewise.
7590         * sysdeps/i386/i686/multiarch/strncase.S (__strncasecmp): Likewise.
7591         * sysdeps/x86_64/multiarch/strcmp.S (STRCMP, __strcascmp):
7592         Likewise.  Fix check for Fast_Unaligned_Load feature bit.
7594 2014-10-24  Roland McGrath  <roland@hack.frob.com>
7596         * configure.ac: Validate compiler version with a empirical test of
7597         __GNUC__ and __GNUC_MINOR__ predefined values, rather than by grepping
7598         $CC -v output.
7599         * configure: Regenerated.
7601         * inet/htons.c (htons): Prototypify.
7602         * inet/htonl.c (htonl): Likewise.
7604 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
7606         * string/strncat.c (strncat): Improve performance by using strlen.
7608 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
7610         * string/strcat.c (strcat): Improve performance by using strlen/strcpy.
7612 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
7614         * sysdeps/aarch64/fpu/fgetexcptflg.c (fegetexceptflag):
7615         Call libc_fetestexcept_aarch64.
7617 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
7619         * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept):
7620         Call libc_feholdexcept_aarch64.
7622 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
7624         * sysdeps/aarch64/fpu/fegetround.c (fegetround):
7625         Call get_rounding_mode.
7627 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
7629         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept):
7630         Simplify logic.
7632 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
7634         * sysdeps/aarch64/fpu/fedisblxcpt.c (fedisableexcept):
7635         Simplify logic.
7637 2014-10-24  Joseph Myers  <joseph@codesourcery.com>
7639         [BZ #14138]
7640         * sysdeps/unix/sysv/linux/arm/getegid.c: Remove file.
7641         * sysdeps/unix/sysv/linux/arm/geteuid.c: Likewise.
7642         * sysdeps/unix/sysv/linux/arm/getgid.c: Likewise.
7643         * sysdeps/unix/sysv/linux/arm/getgroups.c: Likewise.
7644         * sysdeps/unix/sysv/linux/arm/getresgid.c: Likewise.
7645         * sysdeps/unix/sysv/linux/arm/getresuid.c: Likewise.
7646         * sysdeps/unix/sysv/linux/arm/getuid.c: Likewise.
7647         * sysdeps/unix/sysv/linux/i386/getegid.c: Likewise.
7648         * sysdeps/unix/sysv/linux/i386/geteuid.c: Likewise.
7649         * sysdeps/unix/sysv/linux/i386/getgid.c: Likewise.
7650         * sysdeps/unix/sysv/linux/i386/getgroups.c: Likewise.
7651         * sysdeps/unix/sysv/linux/i386/getresgid.c: Likewise.
7652         * sysdeps/unix/sysv/linux/i386/getresuid.c: Likewise.
7653         * sysdeps/unix/sysv/linux/i386/getuid.c: Likewise.
7654         * sysdeps/unix/sysv/linux/m68k/getegid.c: Likewise.
7655         * sysdeps/unix/sysv/linux/m68k/geteuid.c: Likewise.
7656         * sysdeps/unix/sysv/linux/m68k/getgid.c: Likewise.
7657         * sysdeps/unix/sysv/linux/m68k/getgroups.c: Likewise.
7658         * sysdeps/unix/sysv/linux/m68k/getresgid.c: Likewise.
7659         * sysdeps/unix/sysv/linux/m68k/getresuid.c: Likewise.
7660         * sysdeps/unix/sysv/linux/m68k/getuid.c: Likewise.
7661         * sysdeps/unix/sysv/linux/s390/s390-32/getegid.c: Likewise.
7662         * sysdeps/unix/sysv/linux/s390/s390-32/geteuid.c: Likewise.
7663         * sysdeps/unix/sysv/linux/s390/s390-32/getgid.c: Likewise.
7664         * sysdeps/unix/sysv/linux/s390/s390-32/getgroups.c: Likewise.
7665         * sysdeps/unix/sysv/linux/s390/s390-32/getresgid.c: Likewise.
7666         * sysdeps/unix/sysv/linux/s390/s390-32/getresuid.c: Likewise.
7667         * sysdeps/unix/sysv/linux/s390/s390-32/getuid.c: Likewise.
7668         * sysdeps/unix/sysv/linux/sh/getegid.c: Likewise.
7669         * sysdeps/unix/sysv/linux/sh/geteuid.c: Likewise.
7670         * sysdeps/unix/sysv/linux/sh/getgid.c: Likewise.
7671         * sysdeps/unix/sysv/linux/sh/getgroups.c: Likewise.
7672         * sysdeps/unix/sysv/linux/sh/getresgid.c: Likewise.
7673         * sysdeps/unix/sysv/linux/sh/getresuid.c: Likewise.
7674         * sysdeps/unix/sysv/linux/sh/getuid.c: Likewise.
7675         * sysdeps/unix/sysv/linux/sparc/sparc32/getegid.c: Likewise.
7676         * sysdeps/unix/sysv/linux/sparc/sparc32/geteuid.c: Likewise.
7677         * sysdeps/unix/sysv/linux/sparc/sparc32/getgid.c: Likewise.
7678         * sysdeps/unix/sysv/linux/sparc/sparc32/getgroups.c: Likewise.
7679         * sysdeps/unix/sysv/linux/sparc/sparc32/getuid.c: Likewise.
7680         * sysdeps/unix/sysv/linux/arm/syscalls.list (getegid): Add
7681         syscall.
7682         (geteuid): Likewise.
7683         (getgid): Likewise.
7684         (getuid): Likewise.
7685         (getresgid): Likewise.
7686         (getresuid): Likewise.
7687         (getgroups): Likewise.
7688         * sysdeps/unix/sysv/linux/i386/syscalls.list (getegid): Likewise.
7689         (geteuid): Likewise.
7690         (getgid): Likewise.
7691         (getuid): Likewise.
7692         (getresgid): Likewise.
7693         (getresuid): Likewise.
7694         (getgroups): Likewise.
7695         * sysdeps/unix/sysv/linux/m68k/syscalls.list (getegid): Likewise.
7696         (geteuid): Likewise.
7697         (getgid): Likewise.
7698         (getuid): Likewise.
7699         (getresgid): Likewise.
7700         (getresuid): Likewise.
7701         (getgroups): Likewise.
7702         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (getegid):
7703         Likewise.
7704         (geteuid): Likewise.
7705         (getgid): Likewise.
7706         (getuid): Likewise.
7707         (getresgid): Likewise.
7708         (getresuid): Likewise.
7709         (getgroups): Likewise.
7710         * sysdeps/unix/sysv/linux/sh/syscalls.list (getegid): Likewise.
7711         (geteuid): Likewise.
7712         (getgid): Likewise.
7713         (getuid): Likewise.
7714         (getresgid): Likewise.
7715         (getresuid): Likewise.
7716         (getgroups): Likewise.
7717         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (getegid):
7718         Likewise.
7719         (geteuid): Likewise.
7720         (getgid): Likewise.
7721         (getuid): Likewise.
7722         (getgroups): Likewise.
7724         [BZ #14138]
7725         * sysdeps/unix/sysv/linux/i386/chown.c: Remove file.
7726         * sysdeps/unix/sysv/linux/i386/fchown.c: Likewise.
7727         * sysdeps/unix/sysv/linux/i386/lchown.c: Likewise.
7728         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Likewise.
7729         * sysdeps/unix/sysv/linux/s390/s390-32/fchown.c: Remove file.
7730         * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Likewise.
7731         * sysdeps/unix/sysv/linux/sh/chown.c: Likewise.
7732         * sysdeps/unix/sysv/linux/sh/fchown.c: Likewise.
7733         * sysdeps/unix/sysv/linux/sh/lchown.c: Likewise.
7734         * sysdeps/unix/sysv/linux/sparc/sparc32/chown.c: Likewise.
7735         * sysdeps/unix/sysv/linux/sparc/sparc32/fchown.c: Likewise.
7736         * sysdeps/unix/sysv/linux/sparc/sparc32/lchown.c: Likewise.
7737         * sysdeps/unix/sysv/linux/s390/s390-32/Versions (GLIBC_2.1): Add
7738         __chown.
7739         * sysdeps/unix/sysv/linux/i386/syscalls.list (chown): Add syscall.
7740         (lchown): Likewise.
7741         (fchown): Likewise.
7742         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (chown):
7743         Likewise.
7744         (lchown): Likewise.
7745         (fchown): Likewise.
7746         * sysdeps/unix/sysv/linux/sh/syscalls.list (chown): Likewise.
7747         (lchown): Likewise.
7748         (fchown): Likewise.
7749         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (chown):
7750         Likewise.
7751         (lchown): Likewise.
7752         (fchown): Likewise.
7754 2014-10-23  Wilco Dijkstra  <wdijkstr@arm.com>
7756         * sysdeps/aarch64/fpu/fclrexcpt.c (feclearexcept):
7757         Simplify logic.
7759 2014-10-23  Wilco Dijkstra  <wdijkstr@arm.com>
7761         * sysdeps/aarch64/fpu/fsetexcptflg.c (fsetexceptflag):
7762         Cleanup logic.
7764 2014-10-23  Wilco Dijkstra  <wdijkstr@arm.com>
7766         * sysdeps/aarch64/fpu/fsetexcptflg.c (fsetexceptflag):
7767         Remove unused include.
7769 2014-10-23  Wilco Dijkstra  <wdijkstr@arm.com>
7771         * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept): Remove spaces.
7772         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Remove spaces.
7773         * sysdeps/aarch64/fpu/fesetround.c (fesetround): Remove spaces.
7774         * sysdeps/aarch64/fpu/fraiseexcpt.c (feraiseexcept): Remove spaces.
7776 2014-10-23  Carlos O'Donell  <carlos@systemhalted.org>
7777             Helge Deller <deller@gmx.de>
7779         [BZ #17508]
7780         * sysdeps/unix/sysv/linux/hppa/bits/signum.h: Remove SIGEMT.
7781         Define SIGSTKFLT as 7. Define SIGSYS as 31. Define SIGXCPU as 12.
7782         Remove SIGLOST. Define SIGXFSZ as 30. Define __SIGRTMIN as 32.
7784 2014-10-23  Joseph Myers  <joseph@codesourcery.com>
7786         [BZ #14132]
7787         * sysdeps/powerpc/powerpc32/libgcc-compat.S (__ashldi3_v_glibc20):
7788         Remove macro definition.
7789         (__ashrdi3_v_glibc20): Likewise.
7790         (__lshrdi3_v_glibc20): Likewise.
7791         (__cmpdi2_v_glibc20): Likewise.
7792         (__ucmpdi2_v_glibc20): Likewise.
7793         [!_SOFT_FLOAT && !__NO_FPRS__] (__fixdfdi_v_glibc20): Likewise.
7794         [!_SOFT_FLOAT && !__NO_FPRS__] (__fixsfdi_v_glibc20): Likewise.
7795         [!_SOFT_FLOAT && !__NO_FPRS__] (__fixunsdfdi_v_glibc20): Likewise.
7796         [!_SOFT_FLOAT && !__NO_FPRS__] (__fixunssfdi_v_glibc20): Likewise.
7797         [!_SOFT_FLOAT && !__NO_FPRS__] (__floatdidf_v_glibc20): Likewise.
7798         [!_SOFT_FLOAT && !__NO_FPRS__] (__floatdisf_v_glibc20): Likewise.
7800 2014-10-22  Roland McGrath  <roland@hack.frob.com>
7802         * inet/netgroup.h (struct name_list): Use C99 [] syntax rather than
7803         old GNU extension [0] syntax.
7804         * nscd/nscd_helper.c (open_socket): Use a flexible array member and
7805         alloca rather than an array member with variable length.
7806         * nscd/netgroupcache.c (addgetnetgrentX): Likewise.
7807         * nscd/nscd.c (invalidate_db): New function, broken out of ...
7808         (parse_opt): ... here.  Likewise use alloca there.
7809         Validate the -i argument before checking for rootness.
7810         (send_shutdown): New function, broken out of ...
7811         (parse_opt): ... here.
7813 2014-10-22  Roland McGrath  <roland@hack.frob.com>
7815         * sysdeps/arm/__longjmp.S [NEED_HWCAP] [IS_IN_rtld]: Use LDST_PCREL
7816         macro to get at the _rt_local_ro field.
7817         [NEED_HWCAP] [!IS_IN_rtld]: Use LDR_GLOBAL to get at _rtld_global_ro
7818         ([PIC] case) or _dl_hwcap ([!PIC] case).
7819         * sysdeps/arm/setjmp.S: Likewise.
7821         * config.h.in (ARM_PCREL_MOVW_OK): New macro.
7822         * sysdeps/arm/configure.ac: New check to define it.
7823         * sysdeps/arm/configure: Regenerated.
7824         * sysdeps/arm/sysdep.h [__ASSEMBLER__]: Include <arm-features.h>.
7825         (LDST_INDEXED_NOINDEX, LDST_INDEXED_INDEX): New macros.
7826         (LDST_INDEXED, LDST_PC_INDEXED): New macros, differing definitions
7827         depending on [ARM_NO_INDEX_REGISTER] and [__thumb2__].
7828         (LDST_PCREL) [!__thumb2__ && ARCH_HAS_T2 && ARM_PCREL_MOVW_OK]:
7829         Use move/movt pair instead of a load.
7830         (LDST_GLOBAL): Macro removed.
7831         (LDR_GLOBAL): New macro replaces it.
7832         (LDR_HIDDEN): New macro.
7833         (PTR_MANGLE_LOAD): Use LDR_GLOBAL rather than LDST_GLOBAL.
7834         Use LDR_HIDDEN instead for __pointer_chk_guard_local.
7836         * setjmp/tst-setjmp-static.c: New file.
7837         * setjmp/Makefile (tests): Add it.
7838         (tests-static): New variable.
7840 2014-10-22  Maciej W. Rozycki  <macro@codesourcery.com>
7842         [BZ #17485]
7843         * sysdeps/unix/sysv/linux/mips/vfork.S (__libc_vfork): Define.
7845 2014-10-21  Joseph Myers  <joseph@codesourcery.com>
7847         [BZ #14132]
7848         * math/s_ldexpf.c (__ldexpf): Do not use INTDEF.
7850 2014-10-21  Roland McGrath  <roland@hack.frob.com>
7852         * nptl/version.c (__nptl_main): Call __libc_write, not __write.
7854 2014-10-20  Roland McGrath  <roland@hack.frob.com>
7856         * io/fts.c (dirent_not_directory): New function.
7857         (fts_build): Call it.
7859 2014-10-20  Roland McGrath  <roland@hack.frob.com>
7861         * nptl/version.c (__nptl_main): Use normal __write rather than
7862         INTERNAL_SYSCALL.
7863         (banner): Update copyright years.
7865         * nptl/pthread_rwlock_timedrdlock.c: #include <sys/time.h> before using
7866         gettimeofday.
7867         * nptl/pthread_rwlock_timedwrlock.c: Likewise.
7868         * nptl/pthread_cond_timedwait.c: Likewise.
7869         * nptl/pthread_mutex_timedlock.c: Likewise.
7870         * nptl/sem_timedwait.c: Likewise.
7872         * sysdeps/nptl/bits/libc-lock.h
7873         [_LIBC && (!NOT_IN_libc || IS_IN_libpthread)]
7874         (__libc_lock_init_recursive): Return void, not 0.
7875         * sysdeps/nptl/bits/libc-lockP.h (__libc_lock_init): Likewise.
7876         (__libc_rwlock_init): Likewise.
7877         * sysdeps/nptl/bits/stdio-lock.h (_IO_lock_init): Likewise.
7879 2014-10-20  Torvald Riegel  <triegel@redhat.com>
7881         [BZ #15215]
7882         * nptl/pthread_once.c (__pthread_once): Split out fast path to ...
7883         (__pthread_once_slow): ... here.
7884         * sysdeps/unix/sysv/linux/i386/pthread_once.S: Remove file.
7885         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Remove file.
7887 2014-10-20  Torvald Riegel  <triegel@redhat.com>
7889         [BZ #15215]
7890         * nptl/pthreadP.h (__PTHREAD_ONCE_INPROGRESS, __PTHREAD_ONCE_DONE,
7891         __PTHREAD_ONCE_FORK_GEN_INCR): New.
7892         * sysdeps/nptl/fork.c (__libc_fork): Use them.
7893         * nptl/pthread_once.c (__pthread_once): Likewise.
7894         Update comments.
7896 2014-10-20  Joseph Myers  <joseph@codesourcery.com>
7898         [BZ #14138]
7899         * sysdeps/unix/syscalls.list (readv): Use __libc_readv as strong
7900         name.
7901         (writev): Use __libc_writev as strong name.
7902         * sysdeps/unix/sysv/linux/readv.c: Remove file.
7903         * sysdeps/unix/sysv/linux/writev.c: Likewise.
7905 2014-10-17  Roland McGrath  <roland@hack.frob.com>
7907         * nptl/createthread.c (TLS_DEFINE_INIT_TP, TLS_VALUE): Macros removed.
7909         * sysdeps/i386/nptl/tls.h
7910         (THREAD_SELF_SYSINFO, THREAD_SYSINFO): Macros removed.
7911         [NEED_DL_SYSINFO] (SETUP_THREAD_SYSINFO, CHECK_THREAD_SYSINFO):
7912         New macros.
7913         * sysdeps/ia64/nptl/tls.h [NEED_DL_SYSINFO]
7914         (SETUP_THREAD_SYSINFO, CHECK_THREAD_SYSINFO): New macros.
7915         * nptl/allocatestack.c (allocate_stack) [NEED_DL_SYSINFO]:
7916         Call SETUP_THREAD_SYSINFO instead of doing an assignment.
7917         * nptl/createthread.c (create_thread) [NEED_DL_SYSINFO]:
7918         Call CHECK_THREAD_SYSINFO instead of doing an assert.
7920         * nptl/nptl-init.c (__pthread_initialize_minimal_internal):
7921         Conditionalize FUTEX_PRIVATE_FLAG and FUTEX_CLOCK_REALTIME probes
7922         on [__NR_futex].
7923         * nptl/pthread_mutex_init.c (prio_inherit_missing): New function,
7924         broken out of ...
7925         (__pthread_mutex_init): ... here.  Call it.
7926         * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full):
7927         Conditionalize PI cases on [__NR_futex].
7928         * nptl/pthread_mutex_timedlock.c (pthread_mutex_timedlock): Likewise.
7929         * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock): Likewise.
7930         * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full): Likewise.
7932         * nptl/nptl-init.c (sighandler_setxid, __xidcmd): Make definitions
7933         conditional on [SIGSETXID].
7934         (sigcancel_handler): Make definition conditional on [SIGCANCEL].
7935         (__pthread_initialize_minimal_internal): Set up SIGCANCEL only if it
7936         is defined.  Likewise for SIGSETXID.
7937         * nptl/allocatestack.c (setxid_mark_thread, setxid_unmark_thread):
7938         Conditionalize definitions on [SIGSETXID].
7939         (setxid_signal_thread, __nptl_setxid_error, __nptl_setxid): Likewise.
7940         * nptl/pthread_create.c (start_thread): Conditionalize SIGCANCEL
7941         unblocking on [SIGCANCEL].
7943         * nptl/nptl-init.c (__nptl_set_robust): Conditionalize body on
7944         [__NR_set_robust_list].
7946 2014-10-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
7948         * string/strcoll_l.c (get_next_seq): Fix up formatting.
7949         (do_compare): Likewise.
7951 2014-10-17  Leonhard Holz  <leonhard.holz@web.de>
7953         [BZ #15884]
7954         * string/strcoll_l.c: Don't include stdio.h.
7955         (coll_seq): Remove members idxarr and rulearr.
7956         (get_next_seq_cached): Remove function.
7957         (get_next_seq): Likewise.
7958         (get_next_seq_nocache): Rename to get_next_seq.
7959         (do_compare): Remove function.
7960         (do_compare_nocache): Rename to do_compare.
7961         (STRCOLL): Remove weight and rules cache.
7963 2014-10-16  Roland McGrath  <roland@hack.frob.com>
7965         * sysdeps/arm/soft-fp/sfp-machine.h: Filed moved ...
7966         * sysdeps/arm/sfp-machine.h: ... to here.
7967         * sysdeps/arm/Implies: Remove arm/soft-fp.
7969 2014-10-14  Joseph Myers  <joseph@codesourcery.com>
7971         * conform/data/sys/utsname.h-data (*_t): Allow.
7972         * conform/data/sys/wait.h-data [POSIX] (uid_t): Do not define.
7973         [POSIX] (WEXITED): Do not expect constant.
7974         [POSIX] (WSTOPPED): Likewise.
7975         [POSIX] (WNOHANG): Likewise.
7976         [POSIX] (WNOWAIT): Likewise.
7977         [POSIX] (siginfo_t): Do not expect type or elements.
7978         [POSIX] (pid_t): Do not expect type.
7979         [POSIX] (signal.h): Do not allow header.
7980         [POSIX] (sys/resource.h): Likewise.
7981         [POSIX] (si_*): Do not allow pattern.
7982         [POSIX] (W*): Likewise.
7983         [POSIX] (P_*): Likewise.
7984         [POSIX] (BUS_*): Likewise.
7985         [POSIX] (CLD_*): Likewise.
7986         [POSIX] (FPE_*): Likewise.
7987         [POSIX] (ILL_*): Likewise.
7988         [POSIX] (POLL_*): Likewise.
7989         [POSIX] (SEGV_*): Likewise.
7990         [POSIX] (SI_*): Likewise.
7991         [POSIX] (TRAP_*): Likewise.
7992         * conform/Makefile (test-xfail-POSIX/sys/wait.h/conform): New
7993         variable.
7995 2014-10-14  Paul Pluzhnikov  <ppluzhnikov@google.com>
7997         [BZ #12926]
7998         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Avoid
7999         infinite loop when __recvmsg returns 0.
8001 2014-10-10  Joseph Myers  <joseph@codesourcery.com>
8003         * CANCEL-FCT-WAIVE: Remove file.
8004         * CANCEL-FILE-WAIVE: Likewise.
8006         [BZ #14132]
8007         * elf/dl-sysdep.c (__libc_enable_secure): Use rtld_hidden_data_def
8008         instead of INTVARDEF.
8009         (_dl_sysdep_start): Do not use INTUSE with __libc_enable_secure.
8010         * sysdeps/mach/hurd/dl-sysdep.c (__libc_enable_secure): Use
8011         rtld_hidden_data_def instead of INTVARDEF.
8012         (_dl_sysdep_start): Do not use INTUSE with __libc_enable_secure.
8013         * elf/dl-deps.c (expand_dst): Likewise.
8014         * elf/dl-load.c (_dl_dst_count): Likewise.
8015         (_dl_dst_substitute): Likewise.
8016         (decompose_rpath): Likewise.
8017         (_dl_init_paths): Likewise.
8018         (open_path): Likewise.
8019         (_dl_map_object): Likewise.
8020         * elf/rtld.c (dl_main): Likewise.
8021         (process_dl_audit): Likewise.
8022         (process_envvars): Likewise.
8023         * include/unistd.h [IS_IN_rtld] (__libc_enable_secure_internal):
8024         Remove declaration.
8025         (__libc_enable_secure): Use rtld_hidden_proto.
8027 2014-10-09  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
8029         * elf/dl-load.c
8030         (add_path): New function broken out of _dl_rtld_di_serinfo.
8031         (_dl_rtld_di_serinfo): Remove that nested function.  Update call sites.
8033 2014-10-09  Joseph Myers  <joseph@codesourcery.com>
8035         * soft-fp/double.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_D): Use
8036         parentheses around macro arguments.
8037         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_DP): Likewise.
8038         [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_D): Likewise.
8039         [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_DP): Likewise.
8040         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_D): Likewise.
8041         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_DP): Likewise.
8042         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_D): Likewise.
8043         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_DP): Likewise.
8044         [_FP_W_TYPE_SIZE < 64] (FP_PACK_D): Likewise.
8045         [_FP_W_TYPE_SIZE < 64] (FP_PACK_DP): Likewise.
8046         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_D): Likewise.
8047         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_DP): Likewise.
8048         [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_D): Likewise.
8049         [_FP_W_TYPE_SIZE < 64] (FP_CMP_D): Likewise.
8050         [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_D): Likewise.
8051         [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_D): Likewise.
8052         [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_D): Likewise.
8053         [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_D): Likewise.
8054         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_D): Likewise.
8055         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_DP): Likewise.
8056         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_D): Likewise.
8057         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_DP): Likewise.
8058         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_D): Likewise.
8059         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_DP): Likewise.
8060         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_D): Likewise.
8061         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_DP): Likewise.
8062         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_D): Likewise.
8063         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_DP): Likewise.
8064         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_D): Likewise.
8065         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_DP): Likewise.
8066         [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_D): Likewise.
8067         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_D): Likewise.
8068         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_D): Likewise.
8069         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_D): Likewise.
8070         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_D): Likewise.
8071         [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_D): Likewise.
8072         * soft-fp/extended.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_E):
8073         Likewise.
8074         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_EP): Likewise.
8075         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_E): Likewise.
8076         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_EP): Likewise.
8077         [_FP_W_TYPE_SIZE < 64] (FP_PACK_E): Likewise.
8078         [_FP_W_TYPE_SIZE < 64] (FP_PACK_EP): Likewise.
8079         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_E): Likewise.
8080         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_EP): Likewise.
8081         [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_E): Likewise.
8082         [_FP_W_TYPE_SIZE < 64] (FP_CMP_E): Likewise.
8083         [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_E): Likewise.
8084         [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_E): Likewise.
8085         [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_E): Likewise.
8086         [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_E): Likewise.
8087         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_E): Likewise.
8088         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_EP): Likewise.
8089         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_E): Likewise.
8090         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_EP): Likewise.
8091         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_E): Likewise.
8092         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_EP): Likewise.
8093         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_E): Likewise.
8094         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_EP): Likewise.
8095         [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_E): Likewise.
8096         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_E): Likewise.
8097         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_E): Likewise.
8098         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_E): Likewise.
8099         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_E): Likewise.
8100         [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_E): Likewise.
8101         * soft-fp/op-1.h (_FP_FRAC_SRST_1): Likewise.
8102         (_FP_FRAC_SRS_1): Likewise.
8103         (_FP_FRAC_CLZ_1): Likewise.
8104         (_FP_MUL_MEAT_1_imm): Likewise.
8105         (_FP_MUL_MEAT_1_wide): Likewise.
8106         (_FP_MUL_MEAT_1_hard): Likewise.
8107         (_FP_SQRT_MEAT_1): Likewise.
8108         (_FP_FRAC_ASSEMBLE_1): Likewise.
8109         (_FP_FRAC_DISASSEMBLE_1): Likewise.
8110         * soft-fp/op-2.h (_FP_FRAC_CLZ_2): Likewise.
8111         (__FP_CLZ_2): Likewise.
8112         (_FP_MUL_MEAT_2_wide): Likewise.
8113         (_FP_MUL_MEAT_2_wide_3mul): Likewise.
8114         (_FP_MUL_MEAT_2_gmp): Likewise.
8115         (_FP_MUL_MEAT_2_120_240_double): Likewise.
8116         (_FP_SQRT_MEAT_2): Likewise.
8117         (_FP_FRAC_ASSEMBLE_2): Likewise.
8118         (_FP_FRAC_DISASSEMBLE_2): Likewise.
8119         * soft-fp/op-4.h (_FP_FRAC_SRS_4): Likewise.
8120         (_FP_FRAC_CLZ_4): Likewise.
8121         (_FP_MUL_MEAT_4_wide): Likewise.
8122         (_FP_MUL_MEAT_4_gmp): Likewise.
8123         (_FP_SQRT_MEAT_4): Likewise.
8124         (_FP_FRAC_ASSEMBLE_4): Likewise.
8125         (_FP_FRAC_DISASSEMBLE_4): Likewise.
8126         * soft-fp/op-common.h (_FP_CMP): Likewise.
8127         (_FP_CMP_EQ): Likewise.
8128         (_FP_CMP_UNORD): Likewise.
8129         (_FP_TO_INT): Likewise.
8130         (_FP_FROM_INT): Likewise.
8131         [!__FP_CLZ] (__FP_CLZ): Likewise.
8132         (_FP_DIV_HELP_imm): Likewise.
8133         * soft-fp/quad.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_Q):
8134         Likewise.
8135         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_QP): Likewise.
8136         [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_Q): Likewise.
8137         [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_QP): Likewise.
8138         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_Q): Likewise.
8139         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_QP): Likewise.
8140         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_Q): Likewise.
8141         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_QP): Likewise.
8142         [_FP_W_TYPE_SIZE < 64] (FP_PACK_Q): Likewise.
8143         [_FP_W_TYPE_SIZE < 64] (FP_PACK_QP): Likewise.
8144         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_Q): Likewise.
8145         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_QP): Likewise.
8146         [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_Q): Likewise.
8147         [_FP_W_TYPE_SIZE < 64] (FP_CMP_Q): Likewise.
8148         [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_Q): Likewise.
8149         [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_Q): Likewise.
8150         [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_Q): Likewise.
8151         [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_Q): Likewise.
8152         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_Q): Likewise.
8153         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_QP): Likewise.
8154         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_Q): Likewise.
8155         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_QP): Likewise.
8156         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_Q): Likewise.
8157         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_QP): Likewise.
8158         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_Q): Likewise.
8159         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_QP): Likewise.
8160         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_Q): Likewise.
8161         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_QP): Likewise.
8162         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_Q): Likewise.
8163         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_QP): Likewise.
8164         [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_Q): Likewise.
8165         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_Q): Likewise.
8166         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_Q): Likewise.
8167         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_Q): Likewise.
8168         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_Q): Likewise.
8169         [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_Q): Likewise.
8170         * soft-fp/single.h (FP_UNPACK_RAW_S): Likewise.
8171         (FP_UNPACK_RAW_SP): Likewise.
8172         (FP_PACK_RAW_S): Likewise.
8173         (FP_PACK_RAW_SP): Likewise.
8174         (FP_UNPACK_S): Likewise.
8175         (FP_UNPACK_SP): Likewise.
8176         (FP_UNPACK_SEMIRAW_S): Likewise.
8177         (FP_UNPACK_SEMIRAW_SP): Likewise.
8178         (FP_PACK_S): Likewise.
8179         (FP_PACK_SP): Likewise.
8180         (FP_PACK_SEMIRAW_S): Likewise.
8181         (FP_PACK_SEMIRAW_SP): Likewise.
8182         (_FP_SQRT_MEAT_S): Likewise.
8183         (FP_CMP_S): Likewise.
8184         (FP_CMP_EQ_S): Likewise.
8185         (FP_CMP_UNORD_S): Likewise.
8186         (FP_TO_INT_S): Likewise.
8187         (FP_FROM_INT_S): Likewise.
8189         * soft-fp/op-common.h (_FP_TO_INT): Handle rsigned == 2.
8191         * soft-fp/soft-fp.h (FP_EX_INVALID_SNAN): New macro.
8192         (FP_EX_INVALID_IMZ): Likewise.
8193         (FP_EX_INVALID_IMZ_FMA): Likewise.
8194         (FP_EX_INVALID_ISI): Likewise.
8195         (FP_EX_INVALID_ZDZ): Likewise.
8196         (FP_EX_INVALID_IDI): Likewise.
8197         (FP_EX_INVALID_SQRT): Likewise.
8198         (FP_EX_INVALID_CVI): Likewise.
8199         (FP_EX_INVALID_VC): Likewise.
8200         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Specify more precise
8201         "invalid" exceptions.
8202         (_FP_CHECK_SIGNAN_SEMIRAW): Likewise.
8203         (_FP_ADD_INTERNAL): Likewise.
8204         (_FP_MUL): Likewise.
8205         (_FP_FMA): Likewise.
8206         (_FP_DIV): Likewise.
8207         (_FP_CMP_CHECK_NAN): Likewise.
8208         (_FP_SQRT): Likewise.
8209         (_FP_TO_INT): Likewise.
8210         (FP_EXTEND): Likewise.
8212 2014-10-09  Allan McRae  <allan@archlinux.org>
8214         * po/fr.po: Update French translation from translation project.
8216 2014-10-09  Joseph Myers  <joseph@codesourcery.com>
8218         [BZ #14132]
8219         * stdlib/cxa_atexit.c (__cxa_atexit): Use libc_hidden_def instead
8220         of INTDEF.
8221         * include/stdlib.h (__cxa_atexit_internal): Remove declaration.
8222         (__cxa_atexit): Use libc_hidden_proto.
8223         [!NOT_IN_libc] (__cxa_atexit): Remove macro definition.
8225         [BZ #14132]
8226         * include/wctype.h [!_ISOMAC] (__iswalpha_l_internal): Remove
8227         declaration.
8228         [!_ISOMAC] (__iswdigit_l_internal): Likewise.
8229         [!_ISOMAC] (__iswspace_l_internal): Likewise.
8230         [!_ISOMAC] (__iswxdigit_l_internal): Likewise.
8231         [!_ISOMAC] (__iswctype_internal): Likewise.
8232         * stdio-common/siglist.c (_sys_siglist_internal): Remove alias.
8233         * sysdeps/unix/syscalls.list (chown): Remove __chown_internal
8234         alias.
8235         (fcntl): Remove __fcntl_internal alias.
8236         * sysdeps/unix/sysv/linux/hppa/syscalls.list (connect): Remove
8237         __connect_internal alias.
8238         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list (connect):
8239         Likewise.
8241         * soft-fp/soft-fp.h (FP_DENORM_ZERO): New macro.
8242         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Check
8243         FP_DENORM_ZERO.
8244         (_FP_CHECK_FLUSH_ZERO): New macro.
8245         (_FP_ADD_INTERNAL): Call _FP_CHECK_FLUSH_ZERO.
8246         (_FP_CMP): Likewise.
8247         (_FP_CMP_EQ): Likewise.
8248         (_FP_TO_INT): Do not set inexact for subnormal arguments if
8249         FP_DENORM_ZERO.
8250         (FP_EXTEND): Call _FP_CHECK_FLUSH_ZERO.
8251         (FP_TRUNC): Likewise.
8253         * soft-fp/op-common.h (_FP_TO_INT): Ensure maximum exponent is
8254         treated as invalid conversion, not as normal exponent.
8256         * soft-fp/op-common.h (_FP_CMP_CHECK_NAN): New macro.
8257         (_FP_CMP): Add extra argument EX.  Call _FP_CMP_CHECK_NAN.
8258         (_FP_CMP_EQ): Likewise.
8259         (_FP_CMP_UNORD): Likewise.
8260         * soft-fp/double.h (FP_CMP_D): Add extra argument EX.
8261         (FP_CMP_EQ_D): Likewise.
8262         (FP_CMP_UNORD_D): Likewise.
8263         * soft-fp/extended.h (FP_CMP_E): Likewise.
8264         (FP_CMP_EQ_E): Likewise.
8265         (FP_CMP_UNORD_E): Likewise.
8266         * soft-fp/quad.h (FP_CMP_Q): Likewise.
8267         (FP_CMP_EQ_Q): Likewise.
8268         (FP_CMP_UNORD_Q): Likewise.
8269         * soft-fp/single.h (FP_CMP_S): Likewise.
8270         (FP_CMP_EQ_S): Likewise.
8271         (FP_CMP_UNORD_S): Likewise.
8272         * soft-fp/eqdf2.c (__eqdf2): Update call to FP_CMP_EQ_D.
8273         * soft-fp/eqsf2.c (__eqsf2): Update call to FP_CMP_EQ_S.
8274         * soft-fp/eqtf2.c (__eqtf2): Update call to FP_CMP_EQ_Q.
8275         * soft-fp/gedf2.c (__gedf2): Update call to FP_CMP_D.
8276         * soft-fp/gesf2.c (__gesf2): Update call to FP_CMP_S.
8277         * soft-fp/getf2.c (__getf2): Update call to FP_CMP_Q.
8278         * soft-fp/ledf2.c (__ledf2): Update call to FP_CMP_D.
8279         * soft-fp/lesf2.c (__lesf2): Update call to FP_CMP_S.
8280         * soft-fp/letf2.c (__letf2): Update call to FP_CMP_Q.
8281         * soft-fp/unorddf2.c (__unorddf2): Update call to FP_CMP_UNORD_D.
8282         * soft-fp/unordsf2.c (__unordsf2): Update call to FP_CMP_UNORD_S.
8283         * soft-fp/unordtf2.c (__unordtf2): Update call to FP_CMP_UNORD_Q.
8284         * sysdeps/alpha/soft-fp/ots_cmpe.c (internal_compare): Update call
8285         to FP_CMP_Q.
8286         * sysdeps/sparc/sparc32/soft-fp/q_cmp.c (_Q_cmp): Update call to
8287         FP_CMP_Q.
8288         * sysdeps/sparc/sparc32/soft-fp/q_cmpe.c (_Q_cmpe): Likewise.
8289         * sysdeps/sparc/sparc32/soft-fp/q_feq.c (_Q_feq): Update call to
8290         FP_CMP_EQ_Q.
8291         * sysdeps/sparc/sparc32/soft-fp/q_fge.c (_Q_fge): Update call to
8292         FP_CMP_Q.
8293         * sysdeps/sparc/sparc32/soft-fp/q_fgt.c (_Q_fgt): Likewise.
8294         * sysdeps/sparc/sparc32/soft-fp/q_fle.c (_Q_fle): Likewise.
8295         * sysdeps/sparc/sparc32/soft-fp/q_flt.c (_Q_flt): Likewise.
8296         * sysdeps/sparc/sparc32/soft-fp/q_fne.c (_Q_fne): Update call to
8297         FP_CMP_EQ_Q.
8298         * sysdeps/sparc/sparc64/soft-fp/qp_cmp.c (_Qp_cmp): Update call to
8299         FP_CMP_Q.
8300         * sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c (_Qp_cmpe): Likewise.
8301         * sysdeps/sparc/sparc64/soft-fp/qp_feq.c (_Qp_feq): Update call to
8302         FP_CMP_EQ_Q.
8303         * sysdeps/sparc/sparc64/soft-fp/qp_fge.c (_Qp_fge): Update call to
8304         FP_CMP_Q.
8305         * sysdeps/sparc/sparc64/soft-fp/qp_fgt.c (_Qp_fgt): Likewise.
8306         * sysdeps/sparc/sparc64/soft-fp/qp_fle.c (_Qp_fle): Likewise.
8307         * sysdeps/sparc/sparc64/soft-fp/qp_flt.c (_Qp_flt): Likewise.
8308         * sysdeps/sparc/sparc64/soft-fp/qp_fne.c (_Qp_fne): Update call to
8309         FP_CMP_EQ_Q.
8311         * soft-fp/op-common.h (FP_EXTEND): When a subnormal input produces
8312         a subnormal result, set the underflow exception if trapping on
8313         underflow is enabled.
8314         * soft-fp/soft-fp.h (FP_INIT_TRAPPING_EXCEPTIONS): New macro.
8315         (FP_INIT_EXCEPTIONS): Default to FP_INIT_TRAPPING_EXCEPTIONS.
8316         [FP_NO_EXACT_UNDERFLOW] (FP_TRAPPING_EXCEPTIONS): Undefine and
8317         redefine to 0.
8318         * soft-fp/extenddftf2.c (FP_NO_EXACT_UNDERFLOW): Define.
8319         * soft-fp/extendsfdf2.c (FP_NO_EXACT_UNDERFLOW): Likewise.
8320         * soft-fp/extendsftf2.c (FP_NO_EXACT_UNDERFLOW): Likewise.
8321         * soft-fp/extendxftf2.c (__extendxftf2): Use
8322         FP_INIT_TRAPPING_EXCEPTIONS instead of FP_INIT_ROUNDMODE.
8324         * soft-fp/soft-fp.h (FP_CLEAR_EXCEPTIONS): Remove macro.
8325         * sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Define FP_NO_EXCEPTIONS.
8326         (_Q_itoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
8327         FP_HANDLE_EXCEPTIONS.
8328         * sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Define FP_NO_EXCEPTIONS.
8329         (_Q_lltoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
8330         FP_HANDLE_EXCEPTIONS.
8331         * sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Define FP_NO_EXCEPTIONS.
8332         (_Q_ulltoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
8333         FP_HANDLE_EXCEPTIONS.
8334         * sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Define FP_NO_EXCEPTIONS.
8335         (_Q_utoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
8336         FP_HANDLE_EXCEPTIONS.
8338 2014-10-08  Joseph Myers  <joseph@codesourcery.com>
8340         [BZ #14132]
8341         * sysdeps/unix/sysv/linux/include/sys/timex.h: New file.
8342         * sysdeps/unix/sysv/linux/adjtime.c [!ADJTIMEX] (ADJTIMEX): Do not
8343         use INTUSE.
8344         [!ADJTIMEX] (INTUSE(__adjtimex)): Remove declaration.
8345         * sysdeps/unix/sysv/linux/alpha/adjtime.c (__adjtimex_internal):
8346         Remove alias.
8347         (__adjtimex): Define using libc_hidden_ver.
8348         * sysdeps/unix/sysv/linux/ntp_gettime.c (INTUSE(__adjtimex)):
8349         Remove declaration.
8350         (ntp_gettime): Call __adjtimex directly.
8351         * sysdeps/unix/sysv/linux/ntp_gettimex.c (INTUSE(__adjtimex)):
8352         Remove declaration.
8353         (ntp_gettimex): Call __adjtimex directly.
8354         * sysdeps/unix/sysv/linux/syscalls.list (adjtimex): Remove
8355         __adjtimex_internal alias.
8357 2014-10-08  Roland McGrath  <roland@hack.frob.com>
8359         [BZ #17460]
8360         * nscd/nscd.c (more_help): Rewrite list of tables collection
8361         using xstrdup and asprintf.
8363         * nscd/nscd_conf.c: Remove local xstrdup declaration.
8365 2014-10-08  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
8366             Roland McGrath  <roland@hack.frob.com>
8368         * elf/dl-lookup.c (enter_unique_sym): New function, broken out of ...
8369         (do_lookup_unique): ... local function 'enter' here; update callers.
8371 2014-10-06  Joseph Myers  <joseph@codesourcery.com>
8373         * sysdeps/unix/make-syscalls.sh (emit_weak_aliases): Condition
8374         compat_symbol calls on [SHARED].
8375         * sysdeps/unix/sysv/linux/powerpc/lchown.S: Remove file.
8376         * sysdeps/unix/sysv/linux/i386/syscalls.list (oldsetrlimit):
8377         Remove.
8378         (setrlimit): Add setrlimit@GLIBC_2.0 alias.
8379         * sysdeps/unix/sysv/linux/m68k/m680x0/syscalls.list
8380         (oldsetrlimit): Remove.
8381         (setrlimit): Add setrlimit@GLIBC_2.0 alias.
8382         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list
8383         (lchown): New syscall entry.
8384         (oldsetrlimit): Remove.
8385         (setrlimit): Add setrlimit@GLIBC_2.0 alias.
8386         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list
8387         (oldsetrlimit): Remove.
8388         (setrlimit): Add setrlimit@GLIBC_2.0 alias.
8390         [BZ #14138]
8391         * sysdeps/unix/sysv/linux/arm/fchown.c: Remove file.
8392         * sysdeps/unix/sysv/linux/arm/lchown.c: Likewise.
8393         * sysdeps/unix/sysv/linux/m68k/fchown.c: Likewise.
8394         * sysdeps/unix/sysv/linux/m68k/lchown.c: Likewise.
8395         * sysdeps/unix/sysv/linux/powerpc/chown.c: Likewise.
8396         * sysdeps/unix/sysv/linux/arm/syscalls.list (lchown): Add syscall.
8397         (fchown): Likewise.
8398         * sysdeps/unix/sysv/linux/m68k/syscalls.list (lchown): Likewise.
8399         (fchown): Likewise.
8400         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list (chown):
8401         Likewise.
8403 2014-10-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
8405         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Remove file.
8406         * sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c
8407         (pthread_spin_unlock): Use __ARCH_REL_INSTR instead of
8408         __lll_rel_instr and __ARCH_ACQ_INSTR instead of __lll_acq_instr.
8409         * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post):
8410         Likewise.
8411         (__old_sem_post): Likewise.
8413 2014-10-06  Chris Metcalf  <cmetcalf@tilera.com>
8415         * sysdeps/unix/sysv/linux/tile/sysdep.h (INLINE_VSYSCALL): Define
8416         INLINE_VSYSCALL, INTERNAL_VSYSCALL, and
8417         HAVE_CLOCK_GETTIME_VSYSCALL macros.
8418         * sysdeps/unix/sysv/linux/tile/gettimeofday.c (__gettimeofday):
8419         Use INLINE_VSYSCALL macro.
8420         * sysdeps/unix/sysv/linux/tile/bits/libc-vdso: Add declaration of
8421         __vdso_clock_gettime.
8422         * sysdeps/unix/sysv/linux/tile/init-first.c
8423         (_libc_vdso_platform_setup): Set new __vdso_clock_gettime global.
8424         * sysdeps/unix/sysv/linux/tile/Versions (GLIBC_PRIVATE): Add
8425         __vdso_clock_gettime.
8427         * sysdeps/unix/sysv/linux/tile/clone.S (__clone): Fix code
8428         to set up frame more cleanly.
8430         * sysdeps/tile/memcmp.c: New file.
8432         * sysdeps/unix/sysv/linux/tile/sysconf.c: New file.
8434         * sysdeps/tile/tilegx/string-endian.h (STRSHIFT): New macro.
8435         * sysdeps/tile/tilegx/strcasestr.c: New file.
8436         * sysdeps/tile/tilegx/strnlen.c: New file.
8437         * sysdeps/tile/tilegx/strstr.c: New file.
8439         * sysdeps/tile/tilegx/string-endian.h (copy_byte): Optimize.
8441 2014-10-06  Arjun Shankar  <arjun.is@lostca.se>
8443         * nptl/tst-setuid3.c: Write errors to stdout.
8445 2014-10-01  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
8447         * elf/dl-deps.c
8448         (preload): New functions broken out of _dl_map_object_deps.
8449         (_dl_map_object_deps):  Remove a nested function. Update call sites.
8451 2014-10-01  Joseph Myers  <joseph@codesourcery.com>
8453         [BZ #14138]
8454         * sysdeps/unix/sysv/linux/execve.c: Remove file.
8455         * sysdeps/unix/sysv/linux/syscalls.list (execve): Add syscall.
8457 2014-10-01  Steve Ellcey  <sellcey@mips.com>
8459         * sysdeps/mips/strcmp.S: New.
8461 2014-09-30  Joseph Myers  <joseph@codesourcery.com>
8463         [BZ #14138]
8464         * sysdeps/unix/sysv/linux/syscalls.list (fchownat): New syscall.
8465         (linkat): Likewise.
8466         (mkdirat): Likewise.
8467         (readlinkat): Likewise.
8468         (renameat): Likewise.
8469         (symlinkat): Likewise.
8470         (unlinkat): Likewise.
8471         * sysdeps/unix/sysv/linux/fchownat.c: Remove file.
8472         * sysdeps/unix/sysv/linux/linkat.c: Likewise.
8473         * sysdeps/unix/sysv/linux/mkdirat.c: Likewise.
8474         * sysdeps/unix/sysv/linux/readlinkat.c: Likewise.
8475         * sysdeps/unix/sysv/linux/renameat.c: Likewise.
8476         * sysdeps/unix/sysv/linux/symlinkat.c: Likewise.
8477         * sysdeps/unix/sysv/linux/unlinkat.c: Likewise.
8479 2014-09-30  Will Newton  <will.newton@linaro.org>
8481         * math/math.h: Define long double math functions if
8482         _LIBC_TEST is defined.
8483         * stdlib/tst-strtod-round.c: Define _LIBC_TEST.
8485         * localedata/Makefile: Move assignment to tests-special
8486         into an ifdef testing run-built-tests.
8487         * timezone/Makefile: Likewise.
8489 2014-09-29  Joseph Myers  <joseph@codesourcery.com>
8491         * sysdeps/x86/Makefile ($(objpfx)tst-ld-sse-use.out): Run script
8492         with $(BASH) not $(SHELL).
8494 2014-09-29  Carlos O'Donell  <carlos@redhat.com>
8495             Matthew LeGendre  <legendre1@llnl.gov>
8497         [BZ #17411]
8498         * elf/dl-reloc.c (_dl_relocate_object): Allocate correct amount for
8499         l_reloc_result.
8501 2014-09-29  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
8503         * stdio-common/printf_fp.c
8504         (hack_digit): New function, broken out of ...
8505         (__printf_fp): ... local function here.  Update call sites.
8506         hack_digit now takes an additional parameter that is a pointer
8507         to a struct of the referenced locals.  Those locals moved inside
8508         the struct and references updated.
8510 2014-09-29  H.J. Lu  <hongjiu.lu@intel.com>
8512         * aclocal.m4: Require autoconf 2.69.
8513         * configure: Regenerated.
8514         * sysdeps/aarch64/configure: Likewise.
8515         * sysdeps/alpha/configure: Likewise.
8516         * sysdeps/arm/armv7/configure: Likewise.
8517         * sysdeps/arm/configure: Likewise.
8518         * sysdeps/ia64/configure: Likewise.
8519         * sysdeps/mach/configure: Likewise.
8520         * sysdeps/mips/configure: Likewise.
8521         * sysdeps/s390/configure: Likewise.
8522         * sysdeps/unix/sysv/linux/mips/configure: Likewise.
8523         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Likewise.
8525         * sysdeps/alpha/configure.ac: Avoid empty lines at the end of
8526         file.
8527         * sysdeps/ia64/configure.ac: Likewise.
8529 2014-09-26  Joseph Myers  <joseph@codesourcery.com>
8531         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: Do not
8532         specify symbol version for ld.so.  Do not include entry for
8533         libpthread.
8534         * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
8535         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Likewise.
8536         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
8538         [BZ #14171]
8539         * Makeconfig [$(build-shared) = yes]
8540         ($(common-objpfx)soversions.mk): Don't handle SONAMEs specified in
8541         makefiles.
8542         [$(build-shared) = yes && $(soversions.mk-done) = t]
8543         ($(common-objpfx)gnu/lib-names.h): Remove rule.
8544         [$(build-shared) = yes && $(soversions.mk-done) = t]
8545         ($(common-objpfx)gnu/lib-names.stmp): Likewise.  Split and moved
8546         to Makerules.
8547         [$(build-shared) = yes && $(soversions.mk-done) = t]
8548         (before-compile): Don't append $(common-objpfx)gnu/lib-names.h
8549         here.
8550         [$(build-shared) = yes && $(soversions.mk-done) = t]
8551         (common-generated): Don't append gnu/lib-names.h and
8552         gnu/lib-names.stmp here.
8553         * Makerules [$(build-shared) = yes && $(soversions.mk-done) = t]
8554         (lib-names-h-abi): New variable.
8555         [$(build-shared) = yes && $(soversions.mk-done) = t]
8556         (lib-names-stmp-abi): Likewise.
8557         [$(build-shared) = yes && $(soversions.mk-done) = t &&
8558         abi-variants] (before-compile): Append
8559         $(common-objpfx)$(lib-names-h-abi).
8560         [$(build-shared) = yes && $(soversions.mk-done) = t &&
8561         abi-variants] (common-generated): Append gnu/lib-names.h.
8562         [$(build-shared) = yes && $(soversions.mk-done) = t &&
8563         abi-variants] (install-others-nosubdir): Depend on
8564         $(inst_includedir)/$(lib-names-h-abi).
8565         [$(build-shared) = yes && $(soversions.mk-done) = t &&
8566         abi-variants] ($(common-objpfx)gnu/lib-names.h): New rule.
8567         [$(build-shared) = yes && $(soversions.mk-done) = t]
8568         ($(common-objpfx)$(lib-names-h-abi)): New rule.
8569         [$(build-shared) = yes && $(soversions.mk-done) = t]
8570         ($(common-objpfx)$(lib-names-stmp-abi)): Likewise.
8571         [$(build-shared) = yes && $(soversions.mk-done) = t]
8572         (common-generated): Append $(lib-names-h-abi) and
8573         $(lib-names-stmp-abi).
8574         * scripts/lib-names.awk: Do not handle multi being set.
8575         * sysdeps/unix/sysv/linux/aarch64/Makefile (abi-lp64-ld-soname):
8576         Remove variable.
8577         (abi-lp64_be-ld-soname): Likewise.
8578         * sysdeps/unix/sysv/linux/arm/Makefile (abi-soft-ld-soname):
8579         Likewise.
8580         (abi-hard-ld-soname): Likewise.
8581         * sysdeps/unix/sysv/linux/i386/shlib-versions: New file.
8582         * sysdeps/unix/sysv/linux/mips/Makefile (abi-o32_soft-ld-soname):
8583         Remove variable.
8584         (abi-o32_hard-ld-soname): Likewise.
8585         (abi-o32_soft_2008-ld-soname): Likewise.
8586         (abi-o32_hard_2008-ld-soname): Likewise.
8587         (abi-n32_soft-ld-soname): Likewise.
8588         (abi-n32_hard-ld-soname): Likewise.
8589         (abi-n32_soft_2008-ld-soname): Likewise.
8590         (abi-n32_hard_2008-ld-soname): Likewise.
8591         (abi-n64_soft-ld-soname): Likewise.
8592         (abi-n64_hard-ld-soname): Likewise.
8593         (abi-n64_soft_2008-ld-soname): Likewise.
8594         (abi-n64_hard_2008-ld-soname): Likewise.
8595         * sysdeps/unix/sysv/linux/powerpc/Makefile (abi-64-v1-ld-soname):
8596         Likewise.
8597         (abi-64-v2-ld-soname): Likewise.
8598         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: Add
8599         ld.so entries.
8600         * sysdeps/unix/sysv/linux/s390/Makefile (abi-64-ld-soname): Remove
8601         variable.
8602         * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Add ld.so
8603         entry.
8604         * sysdeps/unix/sysv/linux/x86/Makefile (abi-32-ld-soname): Remove
8605         variable.
8606         (abi-64-ld-soname): Likewise.
8607         (abi-x32-ld-soname): Likewise.
8608         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Add ld.so
8609         entry.
8610         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
8612 2014-09-23  Joseph Myers  <joseph@codesourcery.com>
8614         [BZ #14138]
8615         * sysdeps/unix/sysv/linux/arm/setrlimit.c: Remove file.
8616         * sysdeps/unix/sysv/linux/i386/setrlimit.c: Likewise.
8617         * sysdeps/unix/sysv/linux/m68k/setrlimit.c: Likewise.
8618         * sysdeps/unix/sysv/linux/powerpc/setrlimit.c: Likewise.
8619         * sysdeps/unix/sysv/linux/s390/s390-32/setrlimit.c: Likewise.
8620         * sysdeps/unix/sysv/linux/sh/setrlimit.c: Likewise.
8621         * sysdeps/unix/sysv/linux/i386/syscalls.list (setrlimit): Add
8622         syscall entry for GLIBC_2.2 symbol version.
8623         * sysdeps/unix/sysv/linux/m68k/m680x0/syscalls.list (setrlimit):
8624         Likewise.
8625         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list
8626         (setrlimit): Likewise.
8627         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (setrlimit):
8628         Likewise.
8630 2014-09-23  Will Newton  <will.newton@linaro.org>
8632         * sysdeps/unix/sysv/linux/arm/bits/hwcap.h: Check for
8633         _LINUX_ARM_SYSDEP_H include guard too.
8634         * sysdeps/unix/sysv/linux/arm/sysdep.h (_SYS_AUXV_H): Remove
8635         define.
8637 2014-09-20  Rasmus Villemoes  <rv@rasmusvillemoes.dk>
8639         * sysdeps/unix/sysv/linux/eventfd.c:
8640         Make first argument unsigned.
8641         * sysdeps/unix/sysv/linux/hppa/sys/eventfd.h: Likewise.
8642         * sysdeps/unix/sysv/linux/sys/eventfd.h: Likewise.
8644 2014-09-20  Ondřej Bílka  <neleai@seznam.cz>
8646         * socket/recvmmsg.c (recvmmsg): Drop const argument.
8647         * socket/sys/socket.h: Likewise
8648         * sysdeps/unix/sysv/linux/recvmmsg.c: Likewise.
8650 2014-09-19  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
8652         * stdlib/longlong.h: Add __udiv_w_sdiv prototype.
8654 2014-09-17  Arjun Shankar  <arjun.is@lostca.se>
8656         * time/tst-ftime.c: New test.
8657         * time/Makefile (tests): Add tst-ftime.
8659 2014-09-17  Joseph Myers  <joseph@codesourcery.com>
8661         * soft-fp/extended.h: Fix comment formatting.
8662         * soft-fp/op-1.h: Likewise.
8663         * soft-fp/op-2.h: Likewise.
8664         * soft-fp/op-4.h: Likewise.
8665         * soft-fp/op-8.h: Likewise.
8666         * soft-fp/op-common.h: Likewise.
8667         * soft-fp/soft-fp.h: Likewise.
8669         * soft-fp/op-common.h (_FP_TO_INT): Correct formatting.
8671 2014-09-16  Joseph Myers  <joseph@codesourcery.com>
8673         [BZ #6652]
8674         * Makeconfig (soversions-default-setname): Remove variable.
8675         ($(common-objpfx)soversions.i): Don't pass default_setname to
8676         soversions.awk.
8677         * Makerules ($(common-objpfx)abi-versions.h): Don't pass
8678         oldest_abi to abi-versions.awk.
8679         * config.h.in (GLIBC_OLDEST_ABI): Remove macro undefine.
8680         * config.make.in (oldest-abi): Remove variable.
8681         * configure.ac (--enable-oldest-abi): Remove configure option.
8682         * configure: Regenerated.
8683         * csu/version.c (banner) [GLIBC_OLDEST_ABI]: Remove conditional
8684         text.
8685         * scripts/abi-versions.awk: Do not handle oldest_abi variable.
8686         * scripts/soversions.awk: Do not handle default_setname variable.
8687         * sysdeps/mach/hurd/configure.ac: Do not handle oldest_abi
8688         variable.
8689         * sysdeps/mach/hurd/configure: Regenerated.
8690         * sysdeps/unix/sysv/linux/configure.ac: Do not handle oldest_abi
8691         variable.
8692         * sysdeps/unix/sysv/linux/configure: Regenerated.
8694 2014-09-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
8696         * elf/Makefile (CFLAGS-interp.c): Remove.
8697         ($(elf-objpfx)runtime-linker.h): Generate header with linker
8698         path string.
8699         * elf/interp.c: Include generated runtime-linker.h
8701         * Makerules (lib%.so): Don't include $(+interp) in
8702         prerequisites.
8703         * elf/Makefile (CFLAGS-interp.c): Don't define NOT_IN_libc.
8704         * dlfcn/eval.c: Remove file.
8706         * posix/getconf.c (vars): Don't check for _[SP]C_* and _CS
8707         macros.
8709         [BZ #17266]
8710         * misc/sys/cdefs.h: Define __extern_always_inline for clang
8711         4.2 and newer.
8713         [BZ #17370]
8714         * libio/wfileops.c (do_ftell_wide): Free OUT on error path.
8716 2014-09-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
8717             Jakub Jelinek  <jakub@redhat.com>
8719         [BZ #17266]
8720         * libio/stdio.h: Check definition of __fortify_function
8721         instead of __extern_always_inline to include bits/stdio2.h.
8722         * math/bits/math-finite.h [__USE_XOPEN || __USE_ISOC99]: Also
8723         check if __extern_always_inline is defined.
8724         [__USE_MISC || __USE_XOPEN]: Likewise.
8725         [__USE_ISOC99] Likewise.
8726         * misc/sys/cdefs.h (__fortify_function): Define only if
8727         __extern_always_inline is defined.
8728         [!__cplusplus || __GNUC_PREREQ (4,3)]: Revert to defining
8729         __extern_always_inline and __extern_inline only for g++-4.3
8730         and newer or a compatible gcc.
8732 2014-09-15  Andreas Schwab  <schwab@linux-m68k.org>
8734         [BZ #17371]
8735         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs_internal): Fix
8736         last change to handle zero prefix length.
8738 2014-09-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
8740         * sysdeps/posix/sysconf.c (__sysconf): Return -1 for
8741         _SC_REGEX_VERSION.
8743         * posix/getconf.c (vars): Add _POSIX_IPV6 and
8744         _POSIX_RAW_SOCKETS.
8746 2014-09-13  Allan McRae  <allan@archlinux.org>
8748         * po/ru.po: Update Russian translation from translation project.
8750 2014-09-12  Roland McGrath  <roland@hack.frob.com>
8752         * locale/programs/locale.c (show_locale_vars): Inline local function
8753         into its sole call site.  Clean up some style nits.
8754         (print_item): New function, broken out of ...
8755         (show_info): ... local function here.  Clean up style nits.
8757         * locale/programs/ld-ctype.c (set_one_default): New function, broken
8758         out of ...
8759         (set_class_defaults): ... local function set_default here.
8760         Define set_default as a macro locally to pass constant parameters.
8761         (allocate_arrays, set_class_defaults): Use C99 for scope for each CNT,
8762         rather than a shared local.
8764         * stdlib/rpmatch.c (try): New function, broken out of ...
8765         (rpmatch): ... local function here.  Also, prototypify definition.
8767 2014-09-12  Joseph Myers  <joseph@codesourcery.com>
8769         * scripts/soversions.awk: Do not handle configuration names.
8770         * Makeconfig ($(common-objpfx)soversions.i): Do not pass cpu,
8771         vendor and os variables to soversions.awk.
8772         * configure.ac: Do not modify gnu-* host_os.
8773         * configure: Regenerated
8774         * shlib-versions: Remove first column with configuration names.
8775         * nptl/shlib-versions: Likewise.
8776         * nptl_db/shlib-versions: Likewise.
8777         * sysdeps/hppa/shlib-versions: Likewise.
8778         * sysdeps/m68k/shlib-versions: Likewise.
8779         * sysdeps/mach/hurd/shlib-versions: Likewise.
8780         * sysdeps/unix/sysv/linux/aarch64/shlib-versions: Likewise.
8781         * sysdeps/unix/sysv/linux/alpha/shlib-versions: Likewise.
8782         * sysdeps/unix/sysv/linux/arm/shlib-versions: Likewise.
8783         * sysdeps/unix/sysv/linux/hppa/shlib-versions: Likewise.
8784         * sysdeps/unix/sysv/linux/ia64/shlib-versions: Likewise.
8785         * sysdeps/unix/sysv/linux/m68k/coldfire/shlib-versions: Likewise.
8786         * sysdeps/unix/sysv/linux/microblaze/shlib-versions: Likewise.
8787         * sysdeps/unix/sysv/linux/mips/shlib-versions: Likewise.
8788         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions:
8789         Likewise.
8790         * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
8791         * sysdeps/unix/sysv/linux/sh/shlib-versions: Likewise.
8792         * sysdeps/unix/sysv/linux/shlib-versions: Likewise.
8793         * sysdeps/unix/sysv/linux/sparc/sparc32/shlib-versions: Likewise.
8794         * sysdeps/unix/sysv/linux/sparc/sparc64/shlib-versions: Likewise.
8795         * sysdeps/unix/sysv/linux/tile/shlib-versions: Likewise.
8796         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Likewise.
8797         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
8799         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac
8800         (HAVE_ELFV2_ABI): AC_DEFINE in ELFv2 case.
8801         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure:
8802         Regenerated.
8803         * config.h.in (HAVE_ELFV2_ABI): New macro undefine.
8804         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions:
8805         Condition symbol version definitions on [HAVE_ELFV2_ABI].
8807         * shlib-versions: Remove OS-specific entries.  Moved to files in
8808         sysdeps.
8809         * sysdeps/mach/hurd/shlib-versions: New file.
8810         * sysdeps/unix/sysv/linux/shlib-versions: Likewise.
8812         * nptl/shlib-versions: Remove architecture-specific entries.
8813         Moved to files in sysdeps.
8814         * shlib-versions: Likewise.
8815         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: New
8816         file.
8817         * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
8818         * sysdeps/unix/sysv/linux/sh/shlib-versions: Likewise.
8819         * sysdeps/unix/sysv/linux/sparc/sparc32/shlib-versions: Likewise.
8820         * sysdeps/unix/sysv/linux/sparc/sparc64/shlib-versions: Likewise.
8822         * sysdeps/gnu/netinet/udp.h (UDP_NO_CHECK6_TX): New macro.
8823         (UDP_NO_CHECK6_RX): Likewise.
8825 2014-09-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
8827         * sysdeps/posix/sysconf.c (__sysconf): Spell
8828         _POSIX_DEVICE_SPECIFIC and _POSIX_DEVICE_SPECIFIC_R correctly.
8830 2014-08-12  Florian Weimer  <fweimer@redhat.com>
8832         * iconv/gconv_open.c (__gconv_open): Remove transliteration module
8833         loading.
8834         * iconv/Versions (__gconv_transliterate): Export for use from
8835         gconv modules.
8836         * iconv/gconv.h (__GCONV_TRANSLIT): New flag.
8837         (struct __gconv_trans_data, __gconv_trans_fct,
8838         __gconv_trans_context_fct, __gconv_trans_query_fct,
8839         __gconv_trans_init_fct, __gconv_trans_end_fct): Remove type
8840         definitions.
8841         (struct __gconv_step_data): Remove __trans member.
8842         (__gconv_transliterate): Declaration moved from gconv_int.h.  No
8843         longer hidden.  Remove unused trans_data argument.
8844         * iconv/gconv_int.h (struct trans_struct): Remove definition.
8845         (__gconv_translit_find): Remove declaration.
8846         (__gconv_transliterate): Declaration moved to gconv.h.  Add hidden
8847         prototype.
8848         * iconv/gconv_close.c (__gconv_close): Remove __trans cleanup.
8849         * iconv/gconv_trans.c (__gconv_transliterate): Remove unused
8850         trans_data argument.  Add hidden definition.
8851         (__gconv_translit_find): Remove.
8852         * iconv/loop.c (STANDARD_TO_LOOP_ERR_HANDLER): Call
8853         __gconv_transliterate directly if __GCONV_TRANSLIT is set.
8854         * iconv/skeleton.c: Remove transliteration initialization.
8855         * libio/fileops.c (_IO_new_file_fopen): Adjust struct
8856         __gconv_step_data initialization.
8857         * libio/iofwide.c (__libio_translit_): Remove.
8858         (_IO_fwide): Adjust struct __gconv_step_data initialization.
8859         * wcsmbs/btowc.c (__btowc): Likewise.
8860         * wcsmbs/mbrtoc16.c (mbrtoc16): Likewise.
8861         * wcsmbs/mbrtowc.c (__mbrtowc): Likewise.
8862         * wcsmbs/mbsnrtowcs.c (__mbsnrtowcs): Likewise.
8863         * wcsmbs/mbsrtowcs_l.c (__mbsrtowcs_l): Likewise.
8864         * wcsmbs/wcrtomb.c (__wcrtomb): Likewise.
8865         * wcsmbs/wcsnrtombs.c (__wcsnrtombs): Likewise.
8866         * wcsmbs/wcsrtombs.c (__wcsrtombs): Likewise.
8867         * wcsmbs/wctob.c (wctob): Likewise.
8869 2014-09-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
8871         [BZ #16194]
8872         * sysdeps/x86/tst-xmmymm.sh: Rename file to...
8873         * sysdeps/x86/tst-ld-sse-use.sh: ... this.  Check for zmm
8874         register usage.
8875         * sysdeps/x86/Makefile: Adjust.
8877 2014-09-11  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
8878             Roland McGrath  <roland@hack.frob.com>
8880         * locale/weight.h: Add include guard.
8881         (findidx): Make static rather than auto; take new parameters
8882         TABLE, INDIRECT, and EXTRA instead of getting them as outer locals.
8883         * locale/weightwc.h: Likewise.
8884         * posix/fnmatch_loop.c
8885         (FCT): Change type of EXTRA from int32_t to wint_t.
8886         Don't include either header inside the function.
8887         Call FINDIDX rather than findidx, and pass new arguments.
8888         #undef FINDIDX at the end of the file.
8889         * posix/fnmatch.c [_LIBC]: #include <locale/weight.h> and define
8890         FINDIDX before including fnmatch_loop.c for the non-wide version.
8891         [_LIBC] [HANDLE_MULTIBYTE]: #define findidx to findidxwc around
8892         #include <locale/weightwc.h>, and define FINDIDX to findidxwc
8893         for the wide version.
8894         * posix/regcomp.c [_LIBC]: #include <locale/weight.h>.
8895         (build_equiv_class) [_LIBC]: Don't #include it inside the function.
8896         Pass new arguments to findidx.
8897         * posix/regexec.c [RE_ENABLE_I18N] [_LIBC]: #include <locale/weight.h>.
8898         [RE_ENABLE_I18N] (check_node_accept_bytes) [_LIBC]:
8899         Don't #include it inside the function.  Pass new arguments to findidx.
8900         * posix/regex_internal.h
8901         [!NOT_IN_libc] [_LIBC]: #include <locale/weight.h>.
8902         (re_string_elem_size_at): Don't #include it inside the function.
8903         Pass new arguments to findidx.
8904         * string/strcoll_l.c: #include WEIGHT_H at top level.
8905         (get_next_seq): Don't #include it inside the function.
8906         Pass new arguments to findidx.
8907         (get_next_seq_nocache): Likewise.
8908         * string/strxfrm_l.c: #include WEIGHT_H at top level.
8909         (STRXFRM): Don't #include it inside the function.
8910         Pass new arguments to findidx.
8912 2014-09-11  Florian Weimer  <fweimer@redhat.com>
8914         [BZ #17344]
8915         * malloc/malloc.c (unlink): Turn asserts into a call to
8916         malloc_printerr.
8918 2014-09-11  Tim Lammens  <tim.lammens@gmail.com>
8920         [BZ #17370]
8921         * libio/wfileops (do_ftell_wide): Free OUT.
8923 2014-09-10  Chris Metcalf  <cmetcalf@tilera.com>
8925         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Remove file.
8927 2014-09-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
8929         [BZ #17363]
8930         * inet/getnetgrent_r.c (__internal_getnetgrent_r): Try next
8931         group if the current group is empty.
8933 2014-09-10  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
8935         * benchtests/bench-memset.c (test_main): Add more test from size
8936         from 32 to 512 bytes.
8937         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
8938         Add POWER8 memset object.
8939         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
8940         (__libc_ifunc_impl_list): Add POWER8 memset and bzero implementations.
8941         * sysdeps/powerpc/powerpc64/multiarch/bzero.c (__bzero): Add POWER8
8942         implementation.
8943         * sysdeps/powerpc/powerpc64/multiarch/memset.c (__libc_memset):
8944         Likewise.
8945         * sysdeps/powerpc/powerpc64/multiarch/memset-power8.S: New file:
8946         multiarch POWER8 memset optimization.
8947         * sysdeps/powerpc/powerpc64/power8/memset.S: New file: optimized
8948         POWER8 memset optimization.
8950         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
8951         Remove bzero multiarch objects.
8952         * sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S: Remove file.
8953         * sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S: Likewise.
8954         * sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S: Likewise.
8955         * sysdeps/powerpc/powerpc64/multiarch/memset-power4.S [NO_BZERO_IMPL]:
8956         Remove define.
8957         [__bzero]: Redefine to specific name.
8958         * sysdeps/powerpc/powerpc64/multiarch/memset-power6.S: Likewise.
8959         * sysdeps/powerpc/powerpc64/multiarch/memset-power7.S: Likewise.
8960         * sysdeps/powerpc/powerpc64/power4/memset.S [NO_BZERO_IMPL]: Remove
8961         define.
8962         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
8963         * sysdeps/powerpc/powerpc64/power7/memset.S: Likewise.
8965 2014-09-10  Florian Weimer  <fweimer@redhat.com>
8967         * Makeconfig (gccwarn-c): Turn implicit-function-declaration
8968         warnings into errors.
8970         * stdlib/tst-tls-atexit-lib.c: Include <stdlib.h>, for the
8971         __cxa_thread_atexit_impl prototype.
8973 2014-09-09  Steve Ellcey  <sellcey@mips.com>
8975         * sysdeps/mips/preconfigure: Put code inside mips* case statement.
8976         Fix capitalization of error message.
8978 2014-09-09  Steve Ellcey  <sellcey@mips.com>
8980         * sysdeps/mips/preconfigure: Modify ABI tests.
8982 2014-09-07  Carlos O'Donell  <carlos@systemhalted.org>
8984         * sysdeps/unix/sysv/linux/hppa/c++-types.data: New file.
8986 2014-09-07  Roland McGrath  <roland@hack.frob.com>
8987             Carlos O'Donell  <carlos@systemhalted.org>
8989         * sysdeps/unix/sysv/linux/hppa/nptl/libc-lowlevellock.c: File removed.
8990         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Moved ...
8991         * sysdeps/unix/sysv/linux/hppa/lowlevellock.h: ... here.
8992         * sysdeps/unix/sysv/linux/hppa/nptl/pt-vfork.S: Moved ...
8993         * sysdeps/unix/sysv/linux/hppa/pt-vfork.S: ... here.
8994         * sysdeps/unix/sysv/linux/hppa/nptl/pthread.h: Moved ...
8995         * sysdeps/unix/sysv/linux/hppa/pthread.h: ... here.
8996         * sysdeps/unix/sysv/linux/hppa/nptl/pthreadP.h: Moved ...
8997         * sysdeps/unix/sysv/linux/hppa/pthreadP.h: ... here.
8998         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_broadcast.c: Moved ...
8999         * sysdeps/unix/sysv/linux/hppa/pthread_cond_broadcast.c: ... here.
9000         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_destroy.c: Moved ...
9001         * sysdeps/unix/sysv/linux/hppa/pthread_cond_destroy.c: ... here.
9002         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_init.c: Moved ...
9003         * sysdeps/unix/sysv/linux/hppa/pthread_cond_init.c: ... here.
9004         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_signal.c: Moved ...
9005         * sysdeps/unix/sysv/linux/hppa/pthread_cond_signal.c: ... here.
9006         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_timedwait.c: Moved ...
9007         * sysdeps/unix/sysv/linux/hppa/pthread_cond_timedwait.c: ... here.
9008         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_wait.c: Moved ...
9009         * sysdeps/unix/sysv/linux/hppa/pthread_cond_wait.c: ... here.
9010         * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Moved ...
9011         * sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h: ... here.
9012         * sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h: Moved ...
9013         * sysdeps/hppa/nptl/bits/pthreadtypes.h: ... here.
9014         * sysdeps/unix/sysv/linux/hppa/nptl/bits/semaphore.h: Moved ...
9015         * sysdeps/hppa/nptl/bits/semaphore.h: ... here.
9016         * sysdeps/unix/sysv/linux/hppa/clone.S: Include <tcb-offsets.h>.
9017         Deconditionalize the code that was previously under [RESET_PID].
9018         * sysdeps/unix/sysv/linux/hppa/nptl/clone.S: File removed.
9019         * sysdeps/unix/sysv/linux/hppa/arch-fork.h: New file.
9020         * sysdeps/unix/sysv/linux/hppa/nptl/fork.c: File removed.
9021         * sysdeps/hppa/nptl/tcb-offsets.sym: Include pthread.h and don't
9022         include sysdep.h.
9024 2014-09-08  Allan McRae  <allan@archlinux.org>
9026         * version.h (RELEASE): Set to "development".
9027         (VERSION): Set to "2.20.90"
9029 2014-09-07  Allan McRae  <allan@archlinux.org
9031         * version.h (RELEASE): Set to "stable".
9032         (VERSION): Set to "2.20"
9033         * include/features.h (__GLIBC_MINOR__): Set to 20.
9035         * manual/contrib.texi: Add entries for Wilco Dijkstra and Stefan
9036         Liebler.
9038         * po/ko.po: Update Korean translation from translation project.
9040 2014-09-06  Chris Metcalf  <cmetcalf@tilera.com>
9042         [BZ #17354]
9043         * sysdeps/tile/dl-machine.h (elf_machine_rela): Add a MUNGE_SIGNED
9044         macro for handling signed relocations.
9046 2014-09-03  Florian Weimer  <fweimer@redhat.com>
9048         [BZ #17325]
9049         * iconvdata/ibm1364.c (BODY): Fix check for sentinel.
9050         * iconvdata/ibm932.c (BODY): Replace invalid sentinel check with
9051         assert.
9052         * iconvdata/ibm933.c (BODY): Fix check for sentinel.
9053         * iconvdata/ibm935.c (BODY): Likewise.
9054         * iconvdata/ibm937.c (BODY): Likewise.
9055         * iconvdata/ibm939.c (BODY): Likewise.
9056         * iconvdata/ibm943.c (BODY): Replace invalid sentinel check with
9057         assert.
9058         * iconvdata/Makefile (iconv-test.out): Pass module list to test
9059         script.
9060         * iconvdata/run-iconv-test.sh: New test loop for checking for
9061         decoder crashers.
9063 2014-09-02  Khem Raj  <raj.khem@gmail.com>
9065         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c (fegetenv): Add
9066         libm_hidden_ver.
9068 2014-09-01  Allan McRae  <allan@archlinux.org>
9070         * po/eo.po: Update Esperanto translation from translation project.
9072         * po/ca.po: Update Catalan translation from translation project.
9074 2014-08-28  Samuel Thibault  <samuel.thibault@ens-lyon.org>
9076         * sysdeps/mach/hurd/fork.c (__fork): Lock SS->lock around
9077         __proc_dostop call.
9079 2014-08-27  Mark Wielaard  <mjw@redhat.com>
9081         [BZ #17319]
9082         * sysdeps/i386/nptl/tls.h (TLS_INIT_TP): Use INTERNAL_SYSCALL
9083         to call set_thread_area instead of hand written asm.
9084         (__NR_set_thread_area): Removed define.
9085         (TLS_FLAG_WRITABLE): Likewise.
9086         (__ASSUME_SET_THREAD_AREA): Remove check.
9087         (TLS_EBX_ARG): Remove define.
9088         (TLS_LOAD_EBX): Likewise.
9090 2014-08-27  Samuel Thibault  <samuel.thibault@ens-lyon.org>
9092         Simplify atomicity of socket creation in bind.
9094         * sysdeps/mach/hurd/bind.c (__bind): Use dir_lookup(node, "") instead of
9095         looking up the name after linking the file.
9097 2014-08-27  Allan McRae  <allan@archlinux.org>
9099         * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
9101 2014-08-26  Florian Weimer  <fweimer@redhat.com>
9103         [BZ #17187]
9104         * iconv/gconv_trans.c (struct known_trans, search_tree, lock,
9105         trans_compare, open_translit, __gconv_translit_find):
9106         Remove module loading code.
9108 2014-08-26  Allan McRae  <allan@archlinux.org>
9110         * po/vi.po: Update Vietnamese translation from translation project.
9112         * po/uk.po: Update Ukrainian translation from translation project.
9114         * po/fr.po: Update French translation from translation project.
9116         * po/ru.po: Update Russian translation from translation project.
9118         * po/pl.po: Update Polish translation from translation project.
9120         * po/cs.po: Update Czech translation from translation project.
9122         * po/de.po: Update German translation from translation project.
9124         * po/bg.po: Update Bulgarian translation from translation project.
9126         * po/sv.po: Update Sweedish translation from translation project.
9128         * po/nl.po: Update Dutch translation from translation project.
9130         * po/es.po: Update Spanish translation from translation project.
9132 2014-08-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
9134         * nptl/Makefile (CFLAGS-pthread_atfork.c): Remove.
9136         * catgets/Makefile (CPPFLAGS-gencat): Remove.
9137         * iconv/Makefile (CPPFLAGS-iconv_prog): Likewise.
9138         (CPPFLAGS-iconvconfig): Likewise.
9139         * timezone/Makefile (CPPFLAGS-zic): Likewise.
9141         * include/libc-symbols.h: Remove unnecessary check for
9142         NOT_IN_libc.
9143         * nptl/pthreadP.h: Likewise.
9144         * sysdeps/aarch64/setjmp.S: Likewise.
9145         * sysdeps/alpha/setjmp.S: Likewise.
9146         * sysdeps/arm/sysdep.h: Likewise.
9147         * sysdeps/i386/setjmp.S: Likewise.
9148         * sysdeps/m68k/setjmp.c: Likewise.
9149         * sysdeps/posix/getcwd.c: Likewise.
9150         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
9151         * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
9152         * sysdeps/s390/s390-32/setjmp.S: Likewise.
9153         * sysdeps/s390/s390-64/setjmp.S: Likewise.
9154         * sysdeps/sh/sh3/setjmp.S: Likewise.
9155         * sysdeps/sh/sh4/setjmp.S: Likewise.
9156         * sysdeps/unix/alpha/sysdep.h: Likewise.
9157         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
9158         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
9159         * sysdeps/unix/sysv/linux/ia64/setjmp.S: Likewise.
9160         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
9161         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
9162         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
9163         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
9164         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
9165         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
9166         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
9167         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
9168         * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
9169         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
9170         * sysdeps/x86_64/setjmp.S: Likewise.
9172 2014-08-13  Joseph Myers  <joseph@codesourcery.com>
9174         [BZ #17263]
9175         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Include
9176         <stdint.h>.
9177         (__get_clockfreq): Use uint64_t instead of hp_timing_t in
9178         INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK call.
9180 2014-08-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
9182         * sysdeps/x86/fpu/bits/mathinline.h: Fix typo in comment.
9184         [BZ #17262]
9185         * sysdeps/x86/fpu/bits/mathinline.h: Check both __SSE2_MATH__
9186         and __x86_64__ when disabling x87 inline functions.
9188 2014-08-12  H.J. Lu  <hongjiu.lu@intel.com>
9190         [BZ #17259]
9191         * sysdeps/x86_64/cacheinfo.c (intel_check_word): Replace cpuid
9192         asm statement with __cpuid_count.
9194 2014-08-12  Mike Frysinger  <vapier@gentoo.org>
9196         * configure.ac: Change __ehdr_start code to dereference the struct.
9197         Run readelf on the output to look for relocations.
9198         * configure: Regenerated.
9200 2014-08-12  Joseph Myers  <joseph@codesourcery.com>
9202         [BZ #17261]
9203         * sysdeps/powerpc/nofpu/fenv_const.c (__fe_enabled_env): Change
9204         value to 0.
9205         (__fe_nonieee_env): Define as an alias for __fe_dfl_env.
9207 2014-08-12  Roland McGrath  <roland@hack.frob.com>
9209         * NEWS: Mention x86-64 ld.so use of Intel MPX instructions.
9211 2014-08-12  Bernard Ogden  <bernie.ogden@linaro.org>
9213         [BZ #16892]
9214         * sysdeps/nptl/lowlevellock.h (__lll_timedlock): Use
9215         atomic_compare_and_exchange_bool_acq rather than atomic_exchange_acq.
9217 2014-08-12  Sean Anderson  <seanga2@gmail.com>
9219         * malloc/malloc.c: Fix typo in comment.
9221 2014-08-09  Allan McRae  <allan@archlinux.org>
9223         * Regenerate libc.po.
9225 2014-08-08  Mike Frysinger  <vapier@gentoo.org>
9227         * intl/tst-gettext2.sh: Check every lang file for creation.
9229 2014-08-07  Wilco Dijkstra  <wdijkstr@arm.com>
9231         * sysdeps/aarch64/fpu/math_private.h
9232         (libc_feholdsetround_noex_aarch64_ctx): New function.
9234 2014-08-07  Wilco Dijkstra  <wdijkstr@arm.com>
9236         * sysdeps/arm/armv6/strcpy.S (strcpy):
9237         Fix performance issue in misaligned cases.
9239 2014-08-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
9241         * sysdeps/unix/sysv/linux/powerpc/bits/ioctl-types.h (struct winsize):
9242         Move definition from termios.h.
9243         (struct termio): Likewise.
9244         (NCC, TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
9245         TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI, N_TTY, N_SLIP,
9246         N_MOUSE, N_PPP, N_STRIP, N_AX25, N_X25, N_6PACK, N_MASC, N_R3964,
9247         N_PROFIBUS_FDL, N_IRDA, N_SMSBLOCK, N_HDLC, N_SYNC_PPP, N_HCI):
9248         Likewise.
9249         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h (struct winsize):
9250         Move definition to ioctl-types.h
9251         (struct termio): Likewise.
9252         (NCC, TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
9253         TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI, N_TTY, N_SLIP,
9254         N_MOUSE, N_PPP, N_STRIP, N_AX25, N_X25, N_6PACK, N_MASC, N_R3964,
9255         N_PROFIBUS_FDL, N_IRDA, N_SMSBLOCK, N_HDLC, N_SYNC_PPP, N_HCI):
9256         Likewise.
9258 2014-08-05  Richard Henderson  <rth@redhat.com>
9260         * sysdeps/alpha/soft-fp/ots_cvtxq.c (_OtsCvtXQ): Always raise
9261         exceptions.
9262         * sysdeps/alpha/soft-fp/Makefile [soft-fp] (sysdep_routines):
9263         Add fraiseexcpt.
9264         * sysdeps/alpha/soft-fp/sfp-machine.h (FP_HANDLE_EXCEPTIONS):
9265         Use __feraiseexcept.
9266         * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S (feraiseexcept):
9267         Protect libm symbols with IS_IN_libm.
9269         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Remove file.
9271 2014-08-04  Bernard Ogden  <bernie.ogden@linaro.org>
9273         * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Remove file.
9275 2014-08-04  Will Newton  <will.newton@linaro.org>
9277         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: Remove
9278         file.
9280 2014-08-04  Mike Frysinger  <vapier@gentoo.org>
9282         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (PSEUDO): Add nocancel
9283         variants for each function.
9285 2014-08-04  Roland McGrath  <roland@hack.frob.com>
9287         * sysdeps/unix/sysv/linux/ia64/nptl/Makefile: File removed, contents
9288         appended ...
9289         * sysdeps/unix/sysv/linux/ia64/Makefile: ... here.
9290         * sysdeps/unix/sysv/linux/ia64/nptl/Versions: File removed, contents
9291         appended ...
9292         * sysdeps/unix/sysv/linux/ia64/Versions: ... here.
9293         * sysdeps/unix/sysv/linux/ia64/nptl/__ia64_longjmp.S: Moved ...
9294         * sysdeps/unix/sysv/linux/ia64/__ia64_longjmp.S: ... here.
9295         * sysdeps/unix/sysv/linux/ia64/nptl/__sigstack_longjmp.c: Moved ...
9296         * sysdeps/unix/sysv/linux/ia64/__sigstack_longjmp.c: ... here.
9297         * sysdeps/unix/sysv/linux/ia64/nptl/c++-types.data: Moved ...
9298         * sysdeps/unix/sysv/linux/ia64/c++-types.data: ... here.
9299         * sysdeps/unix/sysv/linux/ia64/nptl/dl-sysdep.h: Moved ...
9300         * sysdeps/unix/sysv/linux/ia64/dl-sysdep.h: ... here.
9301         * sysdeps/unix/sysv/linux/ia64/nptl/ld.abilist: Moved ...
9302         * sysdeps/unix/sysv/linux/ia64/ld.abilist: ... here.
9303         * sysdeps/unix/sysv/linux/ia64/nptl/libBrokenLocale.abilist: Moved ...
9304         * sysdeps/unix/sysv/linux/ia64/libBrokenLocale.abilist: ... here.
9305         * sysdeps/unix/sysv/linux/ia64/nptl/libanl.abilist: Moved ...
9306         * sysdeps/unix/sysv/linux/ia64/libanl.abilist: ... here.
9307         * sysdeps/unix/sysv/linux/ia64/nptl/libc.abilist: Moved ...
9308         * sysdeps/unix/sysv/linux/ia64/libc.abilist: ... here.
9309         * sysdeps/unix/sysv/linux/ia64/nptl/libcrypt.abilist: Moved ...
9310         * sysdeps/unix/sysv/linux/ia64/libcrypt.abilist: ... here.
9311         * sysdeps/unix/sysv/linux/ia64/nptl/libdl.abilist: Moved ...
9312         * sysdeps/unix/sysv/linux/ia64/libdl.abilist: ... here.
9313         * sysdeps/unix/sysv/linux/ia64/nptl/libm.abilist: Moved ...
9314         * sysdeps/unix/sysv/linux/ia64/libm.abilist: ... here.
9315         * sysdeps/unix/sysv/linux/ia64/nptl/libnsl.abilist: Moved ...
9316         * sysdeps/unix/sysv/linux/ia64/libnsl.abilist: ... here.
9317         * sysdeps/unix/sysv/linux/ia64/nptl/libpthread.abilist: Moved ...
9318         * sysdeps/unix/sysv/linux/ia64/libpthread.abilist: ... here.
9319         * sysdeps/unix/sysv/linux/ia64/nptl/libresolv.abilist: Moved ...
9320         * sysdeps/unix/sysv/linux/ia64/libresolv.abilist: ... here.
9321         * sysdeps/unix/sysv/linux/ia64/nptl/librt.abilist: Moved ...
9322         * sysdeps/unix/sysv/linux/ia64/librt.abilist: ... here.
9323         * sysdeps/unix/sysv/linux/ia64/nptl/libthread_db.abilist: Moved ...
9324         * sysdeps/unix/sysv/linux/ia64/libthread_db.abilist: ... here.
9325         * sysdeps/unix/sysv/linux/ia64/nptl/libutil.abilist: Moved ...
9326         * sysdeps/unix/sysv/linux/ia64/libutil.abilist: ... here.
9327         * sysdeps/unix/sysv/linux/ia64/nptl/localplt.data: Moved ...
9328         * sysdeps/unix/sysv/linux/ia64/localplt.data: ... here.
9329         * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Moved ...
9330         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: ... here.
9331         * sysdeps/unix/sysv/linux/ia64/nptl/sysdep-cancel.h: Moved ...
9332         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: ... here.
9333         * sysdeps/unix/sysv/linux/ia64/nptl/timer_create.c: Moved ...
9334         * sysdeps/unix/sysv/linux/ia64/timer_create.c: ... here.
9335         * sysdeps/unix/sysv/linux/ia64/nptl/timer_delete.c: Moved ...
9336         * sysdeps/unix/sysv/linux/ia64/timer_delete.c: ... here.
9337         * sysdeps/unix/sysv/linux/ia64/nptl/timer_getoverr.c: Moved ...
9338         * sysdeps/unix/sysv/linux/ia64/timer_getoverr.c: ... here.
9339         * sysdeps/unix/sysv/linux/ia64/nptl/timer_gettime.c: Moved ...
9340         * sysdeps/unix/sysv/linux/ia64/timer_gettime.c: ... here.
9341         * sysdeps/unix/sysv/linux/ia64/nptl/timer_settime.c: Moved ...
9342         * sysdeps/unix/sysv/linux/ia64/timer_settime.c: ... here.
9343         * sysdeps/unix/sysv/linux/ia64/nptl/unwind-forcedunwind.c: Moved ...
9344         * sysdeps/unix/sysv/linux/ia64/unwind-forcedunwind.c: ... here.
9345         Update #include.
9346         * sysdeps/unix/sysv/linux/ia64/nptl/unwind_longjmp.c: Moved ...
9347         * sysdeps/unix/sysv/linux/ia64/unwind_longjmp.c: ... here.
9349 2014-08-04  Roland McGrath  <roland@hack.frob.com>
9351         * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h: Moved ...
9352         * sysdeps/ia64/nptl/bits/pthreadtypes.h: ... here.
9353         * sysdeps/unix/sysv/linux/ia64/nptl/bits/semaphore.h: Moved ...
9354         * sysdeps/ia64/nptl/bits/semaphore.h: ... here.
9355         * sysdeps/unix/sysv/linux/ia64/nptl/bits/local_lim.h: Moved ...
9356         * sysdeps/unix/sysv/linux/ia64/bits/local_lim.h: ... here.
9358 2014-08-04  Roland McGrath  <roland@hack.frob.com>
9360         * nptl/sysdeps/pthread/createthread.c: Include <arch-fork.h>.
9361         * sysdeps/unix/sysv/linux/ia64/arch-fork.h (ARCH_CLONE): New macro.
9362         * sysdeps/ia64/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
9363         * sysdeps/unix/sysv/linux/ia64/nptl/createthread.c: File removed.
9365 2014-08-04  Roland McGrath  <roland@hack.frob.com>
9367         * sysdeps/unix/sysv/linux/ia64/nptl/vfork.S: Moved ...
9368         * sysdeps/unix/sysv/linux/ia64/vfork.S: ... here.
9369         (__libc_vfork): Define function under this name.
9370         (__vfork): Define as an alias.
9371         * sysdeps/unix/sysv/linux/ia64/pt-vfork.S: New file.
9372         * sysdeps/unix/sysv/linux/ia64/nptl/pt-vfork.S: File removed.
9374 2014-08-04  Roland McGrath  <roland@hack.frob.com>
9376         * sysdeps/unix/sysv/linux/ia64/clone2.S: Deconditionalize the code
9377         that was previously under [RESET_PID].
9378         * sysdeps/unix/sysv/linux/ia64/nptl/clone2.S: File removed.
9380 2014-08-04  Andreas Schwab  <schwab@suse.de>
9382         * sysdeps/ieee754/ldbl-96/s_fma.c: Include <math_private.h>.
9384 2014-08-03  Mike Frysinger  <vapier@gentoo.org>
9386         * stdlib/tst-setcontext.c (test_stack): Fix coding style.
9387         (main): Likewise.
9389 2014-08-01  Roland McGrath  <roland@hack.frob.com>
9391         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: File removed.
9393 2014-08-01  Richard Henderon  <rth@redhat.com>
9395         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use math_force_eval before
9396         feclearexcept; use math_opt_barrier instead of open-coded asm; fix
9397         typo in exact zero test.
9398         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
9399         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
9400         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
9402 2014-08-01  Roland McGrath  <roland@hack.frob.com>
9404         * sysdeps/unix/sysv/linux/arm/sysdep.h (PTR_MANGLE_LOAD, PTR_MANGLE)
9405         (PTR_MANGLE2, PTR_DEMANGLE, PTR_DEMANGLE2): Move these macros...
9406         * sysdeps/arm/sysdep.h: ... here.
9407         [!__ASSEMBLER__]: Include <stdint.h>.
9409 2014-08-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
9411         * include/libc-symbols.h (HAVE_LIBINTL_H): Define macro.
9412         (HAVE_WCTYPE_H): Likewise.
9413         (HAVE_ISWCTYPE): Likewise.
9414         (ENABLE_NLS): Likewise.
9415         * posix/regex_internal.h [(defined MB_CUR_MAX && HAVE_WCTYPE_H
9416         && HAVE_ISWCTYPE) || _LIBC]: Sync up with gnulib.
9418         * posix/regex_internal.c: Check if DEBUG is defined and is
9419         set.
9421         * include/libc-symbols.h (HAVE_MBSTATE_T): Define macro.
9422         (HAVE_MBSRTOWCS): Likewise.
9423         * posix/fnmatch.c: Include string.h unconditionally.
9425 2014-08-01  Stefan Liebler  <stli@linux.vnet.ibm.com>
9427         * NEWS: Explain the s390 jmp_buf / ucontext_t ABI change
9428         reversal.
9430 2014-07-31  Roland McGrath  <roland@hack.frob.com>
9432         * sysdeps/generic/safe-fatal.h: New file.
9433         * sysdeps/unix/sysv/linux/safe-fatal.h: New file.
9434         * nptl/forward.c: Include it.
9435         (__pthread_unwind): Use __safe_fatal as default action, rather
9436         than a bogus use of INTERNAL_SYSCALL that could never work.
9438         * config.h.in (HAVE_BUILTIN_TRAP): New #define to 0.
9439         * configure.ac (libc_cv_builtin_trap): New test.
9440         * configure: Regenerated.
9441         * sysdeps/generic/abort-instr.h [HAVE_BUILTIN_TRAP]
9442         (ABORT_INSTRUCTION): Define using __builtin_trap.
9444         * nptl/pthreadP.h (SIGCANCEL, SIGTIMER, SIGSETXID, __xidcmd): Moved ...
9445         * sysdeps/unix/sysv/linux/nptl-signals.h: ... to this new file.
9446         * sysdeps/nptl/nptl-signals.h: New file.
9447         * nptl/pthreadP.h: Include <nptl-signals.h>.
9449 2014-07-31  Stefan Liebler  <stli@linux.vnet.ibm.com>
9451         * sysdeps/s390/s390-64/utf16-utf32-z9.c
9452         (ONE_DIRECTION): Define.
9453         * sysdeps/s390/s390-64/utf8-utf16-z9.c
9454         (ONE_DIRECTION): Define.
9455         * sysdeps/s390/s390-64/utf8-utf32-z9.c
9456         (ONE_DIRECTION): Define.
9458 2014-07-31  Stefan Liebler  <stli@linux.vnet.ibm.com>
9460         * sysdeps/s390/Makefile: Delete file.
9461         * sysdeps/s390/Versions (GLIBC_2.19): Remove __setjmp.
9462         * sysdeps/s390/__longjmp.c: Delete file.
9463         * sysdeps/s390/bits/setjmp.h (__s390_jmp_buf):
9464         Remove fields __flags and __reserved.
9465         * sysdeps/s390/longjmp.c: Include setjmp/longjmp.c
9466         and add versioning.
9467         * sysdeps/s390/rtld-__longjmp.c: Delete file.
9468         * sysdeps/s390/rtld-global-offsets.sym: Likewise.
9469         * sysdeps/s390/rtld-setjmp.S: Likewise.
9470         * sysdeps/s390/s390-32/__longjmp-common.c: Move to ...
9471         * sysdeps/s390/s390-32/__longjmp.c: ... here.
9472         * sysdeps/s390/s390-32/setjmp-common.S: Move to ...
9473         * sysdeps/s390/s390-32/setjmp.S: ... here.
9474         Add versioning.
9475         (__sigsetjmp): Remove setting __flags field.
9476         * sysdeps/s390/s390-64/__longjmp-common.c:Move to ...
9477         * sysdeps/s390/s390-64/__longjmp.c: ... here.
9478         * sysdeps/s390/s390-64/setjmp-common.S: Move to ...
9479         * sysdeps/s390/s390-64/setjmp.S: ... here.
9480         Add versioning.
9481         (__sigsetjmp): Remove setting __flags field.
9482         * sysdeps/s390/setjmp.S: Delete file.
9483         * sysdeps/s390/sigjmp.c: Likewise.
9484         * sysdeps/s390/v1-longjmp.c: Likewise.
9485         * sysdeps/s390/v1-setjmp.h: Likewise.
9486         * sysdeps/s390/v1-sigjmp.c: Likewise.
9487         * sysdeps/unix/sysv/linux/s390/Makefile (sysdep_routines):
9488         Remove v1-longjmp_chk.
9489         * sysdeps/unix/sysv/linux/s390/getcontext.S: Delete file.
9490         * sysdeps/unix/sysv/linux/s390/longjmp_chk.c:
9491         Include debug/longjmp_chk.c and add versioning.
9492         * sysdeps/unix/sysv/linux/s390/pt-longjmp.c:
9493         Include nptl/pt-longjmp.c and add versioning.
9494         * sysdeps/unix/sysv/linux/s390/rtld-getcontext.S: Delete file.
9495         * sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c:
9496         Include __longjmp.c.
9497         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S:
9498         Move to ...
9499         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: ... here.
9500         (__getcontext): Remove setting __flags field.
9501         Add versioning.
9502         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S:
9503         Don't restore upper high grps.
9504         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S:
9505         Likewise.
9506         (__swapcontext): Remove setting uc_flags field.
9507         * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym:
9508         Delete file.
9509         * sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c:
9510         Include __longjmp.c.
9511         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S:
9512         Move to ...
9513         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: ... here.
9514         (__getcontext): Remove setting __flags field.
9515         Add versioning.
9516         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S:
9517         (__swapcontext): Remove setting uc_flags field.
9518         * unix/sysv/linux/s390/s390-64/ucontext_i.sym: Delete file.
9519         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h (ucontext):
9520         Remove fields uc_high_gprs and __reserved.
9521         * sysdeps/unix/sysv/linux/s390/ucontext_i.sym:
9522         New file with reverted content.
9523         * sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c: Delete file.
9524         * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist:
9525         Regenerated.
9526         * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist:
9527         Regenerated.
9529 2014-07-31  Andreas Schwab  <schwab@suse.de>
9531         * config.h.in (HAVE_IFUNC): Define to 0.
9532         * rt/clock-compat.c [HAVE_IFUNC]: Check for value, not
9533         definedness.
9535 2014-07-30  Ling Ma  <ling.ml@alibaba-inc.com>
9537         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
9538         memmove-avx-unaligned, memcpy-avx-unaligned and
9539         mempcpy-avx-unaligned.
9540         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
9541         Add tests for AVX memcpy functions.
9542         * sysdeps/x86_64/multiarch/memcpy.S: Add support for AVX memcpy.
9543         * sysdeps/x86_64/multiarch/memcpy_chk.S: Add support for AVX
9544         memcpy_chk.
9545         * sysdeps/x86_64/multiarch/memmove.c: Add support for AVX memmove.
9546         * sysdeps/x86_64/multiarch/memmove_chk.c: Add support for AVX
9547         memmove_chk.
9548         * sysdeps/x86_64/multiarch/mempcpy.S: Add support for AVX mempcpy.
9549         * sysdeps/x86_64/multiarch/mempcpy_chk.S: Add support for AVX
9550         mempcpy_chk.
9551         * sysdeps/x86_64/multiarch/memcpy-avx-unaligned.S: New file.
9552         * sysdeps/x86_64/multiarch/mempcpy-avx-unaligned.S: New file.
9553         * sysdeps/x86_64/multiarch/memmove-avx-unaligned.S: New file.
9555 2013-07-29  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
9557         [BZ #17213]
9558         * sysdeps/powerpc/powerpc64/entry.h: Fix TEXT_START definition for
9559         powerpc64le.
9561 2014-07-29  Jeff Layton  <jlayton@poochiereds.net>
9563         [BZ #16839]
9564         * manual/llio.texi: Add section about open file description locks.
9565         * manual/examples/ofdlocks.c: Example of open file description
9566         lock usage.
9567         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: Define F_OFD_GETLK,
9568         F_OFD_SETLK, and F_OFD_SETLKW.
9570 2014-07-23  Allan McRae  <allan@archlinux.org>
9572         * po/es.po: Update Spanish translation from translation project.
9574 2014-07-18  Andreas Schwab  <schwab@linux-m68k.org>
9576         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Removed.
9578 2014-07-17  Maciej W. Rozycki  <macro@codesourcery.com>
9580         [BZ #17078]
9581         * sysdeps/arm/dl-machine.h (elf_machine_rela)
9582         [RESOLVE_CONFLICT_FIND_MAP]: Handle R_ARM_TLS_DESC relocation.
9583         (elf_machine_lazy_rel): Handle prelinked R_ARM_TLS_DESC entries.
9585 2014-07-17  Joseph Myers  <joseph@codesourcery.com>
9587         [BZ #17088]
9588         * math/fesetenv.c (__fesetenv)
9589         [FE_NOMASK_ENV && FE_ALL_EXCEPT != 0]: Return 1 for FE_NOMASK_ENV.
9590         * math/feupdateenv.c (__feupdateenv)
9591         [FE_NOMASK_ENV && FE_ALL_EXCEPT != 0]: Likewise.
9593         * sysdeps/unix/sysv/linux/s390/kernel-features.h: New file.
9594         * sysdeps/unix/sysv/linux/kernel-features.h [__s390__]
9595         (__ASSUME_SOCKETCALL): Do not define.
9597         * sysdeps/unix/sysv/linux/sh/kernel-features.h: New file.
9598         * sysdeps/unix/sysv/linux/kernel-features.h [__sh__]
9599         (__ASSUME_SOCKETCALL): Do not define.
9600         (__ASSUME_ST_INO_64_BIT): Define unconditionally.
9601         [__LINUX_KERNEL_VERSION >= 0x020625 && __sh__]
9602         (__ASSUME_ACCEPT4_SYSCALL): Do not define.
9603         [__LINUX_KERNEL_VERSION >= 0x020625 && __sh__]
9604         (__ASSUME_RECVMMSG_SYSCALL): Likewise.
9605         [__LINUX_KERNEL_VERSION >= 0x030000 && __sh__]
9606         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
9607         [__sh__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
9609         * sysdeps/unix/sysv/linux/powerpc/kernel-features.h: New file.
9610         * sysdeps/unix/sysv/linux/kernel-features.h [__powerpc__]
9611         (__ASSUME_SOCKETCALL): Do not define.
9612         (__ASSUME_IPC64): Define unconditionally.
9613         [__LINUX_KERNEL_VERSION >= 0x020625 && __powerpc__]
9614         (__ASSUME_ACCEPT4_SYSCALL): Do not define.
9615         [__LINUX_KERNEL_VERSION >= 0x020625 && __powerpc__]
9616         (__ASSUME_RECVMMSG_SYSCALL): Likewise.
9617         [__LINUX_KERNEL_VERSION >= 0x030000 && __powerpc__]
9618         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
9619         [__powerpc__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL):
9620         Likewise.
9622         * sysdeps/unix/sysv/linux/sparc/kernel-features.h: New file.
9623         * sysdeps/unix/sysv/linux/kernel-features.h [__sparc__]
9624         (__ASSUME_SOCKETCALL): Do not define.
9625         (__ASSUME_SET_ROBUST_LIST): Define unconditionally.
9626         (__ASSUME_FUTEX_LOCK_PI): Likewise.
9627         [__sparc__] (__ASSUME_ACCEPT4_SYSCALL): Do not define.
9628         [__sparc__] (__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL): Likewise.
9629         (__ASSUME_REQUEUE_PI): Define unconditionally.
9630         [__LINUX_KERNEL_VERSION >= 0x020621 && __sparc__]
9631         (__ASSUME_RECVMMSG_SYSCALL): Do not define.
9632         [__sparc__] (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
9633         [__LINUX_KERNEL_VERSION >= 0x030000 && __sparc__]
9634         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
9635         [__sparc__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
9637         * sysdeps/unix/sysv/linux/i386/kernel-features.h: New file.
9638         * sysdeps/unix/sysv/linux/kernel-features.h [__i386__]
9639         (__ASSUME_SOCKETCALL): Do not define.
9640         [__LINUX_KERNEL_VERSION >= 0x020621 && __i386__]
9641         (__ASSUME_RECVMMSG_SYSCALL): Likewise.
9642         [__i386__] (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
9643         [__LINUX_KERNEL_VERSION >= 0x030000 && __i386__]
9644         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
9645         [__i386__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
9647         * sysdeps/unix/sysv/linux/x86_64/kernel-features.h: New file.
9648         * sysdeps/unix/sysv/linux/kernel-features.h [__x86_64__]
9649         (__ASSUME_ACCEPT4_SYSCALL): Do not define.
9650         [__LINUX_KERNEL_VERSION >= 0x020621 && __x86_64__]
9651         (__ASSUME_RECVMMSG_SYSCALL): Likewise.
9652         [__LINUX_KERNEL_VERSION >= 0x030000 && __x86_64__]
9653         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
9654         [__x86_64__ && __LINUX_KERNEL_VERSION >= 0x030100]
9655         (__ASSUME_GETCPU_SYSCALL): Likewise.
9657         * aclocal.m4 (LIBC_SLIBDIR_RTLDDIR): New macro.
9658         * sysdeps/gnu/configure.ac: Use LIBC_SLIBDIR_RTLDDIR.  Remove
9659         cases for individual architectures.
9660         * sysdeps/gnu/configure: Regenerated.
9661         * sysdeps/unix/sysv/linux/aarch64/configure.ac: Use
9662         LIBC_SLIBDIR_RTLDDIR.
9663         * sysdeps/unix/sysv/linux/aarch64/configure: Regenerated.
9664         * sysdeps/unix/sysv/linux/mips/configure.ac: Use
9665         LIBC_SLIBDIR_RTLDDIR.
9666         * sysdeps/unix/sysv/linux/mips/configure: Regenerated.
9667         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac: Use
9668         LIBC_SLIBDIR_RTLDDIR.
9669         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure:
9670         Regenerated.
9671         * sysdeps/unix/sysv/linux/s390/s390-64/configure.ac: New file.
9672         * sysdeps/unix/sysv/linux/s390/s390-64/configure: New generated
9673         file.
9674         * sysdeps/unix/sysv/linux/sparc/sparc64/configure.ac: New file.
9675         * sysdeps/unix/sysv/linux/sparc/sparc64/configure: New generated
9676         file.
9677         * sysdeps/unix/sysv/linux/x86_64/64/configure.ac: New file.
9678         * sysdeps/unix/sysv/linux/x86_64/64/configure: New generated file.
9679         * sysdeps/unix/sysv/linux/x86_64/x32/configure.ac: New file.
9680         * sysdeps/unix/sysv/linux/x86_64/x32/configure: Generate.
9682         * sysdeps/aarch64/shlib-versions: Move to ...
9683         * sysdeps/unix/sysv/linux/aarch64/shlib-versions: ... here.
9684         * sysdeps/alpha/shlib-versions: Move to ...
9685         * sysdeps/unix/sysv/linux/alpha/shlib-versions: ... here.
9686         * sysdeps/arm/shlib-versions: Move to ...
9687         * sysdeps/unix/sysv/linux/arm/shlib-versions: ... here.
9688         * sysdeps/hppa/shlib-versions: Move all contents except for
9689         libgcc_s entry to ...
9690         * sysdeps/unix/sysv/linux/hppa/shlib-versions: ... here.  Merge in
9691         entry from ...
9692         * sysdeps/hppa/nptl/shlib-versions: ... here.  Remove file.
9693         * sysdeps/ia64/shlib-versions: Move to ...
9694         * sysdeps/unix/sysv/linux/ia64/shlib-versions: ... here.  Merge in
9695         entry from ...
9696         * sysdeps/ia64/nptl/shlib-versions: ... here.  Remove file.
9697         * sysdeps/m68k/coldfire/shlib-versions: Move to ...
9698         * sysdeps/unix/sysv/linux/m68k/coldfire/shlib-versions: ... here.
9699         * sysdeps/microblaze/shlib-versions: Move to ...
9700         * sysdeps/unix/sysv/linux/microblaze/shlib-versions: ... here.
9701         * sysdeps/mips/shlib-versions: Move to ...
9702         * sysdeps/unix/sysv/linux/mips/shlib-versions: ... here.  Merge in
9703         entry from ...
9704         * sysdeps/mips/nptl/shlib-versions: ... here.  Remove file.
9705         * sysdeps/tile/shlib-versions: Move to ...
9706         * sysdeps/unix/sysv/linux/tile/shlib-versions: ... here.
9707         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Merge in entry
9708         from ...
9709         * sysdeps/x86_64/64/shlib-versions: ... here.  Remove file.
9710         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Merge in
9711         entry from ...
9712         * sysdeps/x86_64/x32/shlib-versions: ... here.  Remove file.
9714 2014-07-17  Will Newton  <will.newton@linaro.org>
9716         * sysdeps/arm/bits/atomic.h
9717         (__arch_compare_and_exchange_bool_8_int): Evaluate to zero.
9718         (__arch_compare_and_exchange_bool_16_int): Likewise.
9719         (__arch_compare_and_exchange_bool_64_int): Likewise.
9721         * iconv/loop.c: Move definition of LOOPFCT and gconv_btowc
9722         into an #else block.
9724 2014-07-16  Roland McGrath  <roland@hack.frob.com>
9726         * sysdeps/arm/preconfigure.ac: Apply EABI sanity check to arm*, not
9727         just Linux configurations.  Test empirically that the compiler sets
9728         __ARM_EABI__, rather than using the tuple to decide.
9729         * sysdeps/arm/preconfigure: Regenerated.
9730         * sysdeps/unix/sysv/linux/arm/configure: File removed.
9731         * sysdeps/unix/sysv/linux/arm/configure.ac: File removed,
9732         contents appended ...
9733         * sysdeps/arm/configure.ac: ... here.
9734         * sysdeps/arm/configure: Regenerated.
9736 2014-07-15  Roland McGrath  <roland@hack.frob.com>
9738         * nptl/pthread_kill.c: New file.
9739         * nptl/pthread_sigmask.c: New file.
9740         * nptl/pthread_sigqueue.c: New file.
9742         * sysdeps/nptl/lowlevellock.h: New file.
9743         * sysdeps/unix/sysv/linux/lowlevellock-futex.h: New file.
9744         * sysdeps/nptl/lowlevellock-futex.h: New file.
9746         * nptl/pthreadP.h (__current_sigrtmin, __current_sigrtmax):
9747         Remove dead declarations.
9749 2014-07-14  H.J. Lu  <hongjiu.lu@intel.com>
9751         * config.h.in (HAVE_AVX2_SUPPORT): New #undef.
9752         * sysdeps/i386/configure.ac: Set HAVE_AVX2_SUPPORT and
9753         config-cflags-avx2.
9754         * sysdeps/x86_64/configure.ac: Likewise.
9755         * sysdeps/i386/configure: Regenerated.
9756         * sysdeps/x86_64/configure: Likewise.
9757         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
9758         memset-avx2 only if config-cflags-avx2 is yes.
9759         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
9760         Tests for memset_chk and memset only if HAVE_AVX2_SUPPORT is
9761         defined.
9762         * sysdeps/x86_64/multiarch/memset.S: Define multiple versions
9763         only if HAVE_AVX2_SUPPORT is defined.
9764         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
9766 2014-07-14  Alan Modra  <amodra@gmail.com>
9768         [BZ #17153]
9769         * elf/elf.h (DT_PPC64_NUM): Correct value.
9770         * NEWS: Add to fixed bug list.
9772 2014-07-13  Jim Meyering  <meyering@fb.com>
9774         [BZ 17150]
9775         regex: don't deref NULL upon heap allocation failure
9776         * posix/regcomp.c: (parse_dup_op): Handle duplicate_tree
9777         failure in one more place.
9778         To trigger the segfault, configure grep -with-included-regex,
9779         build it, and run these commands:
9780         ( ulimit -v 300000; echo a|src/grep -E a+++++++++++++++++++++ )
9782 2014-07-13  Andreas Schwab  <schwab@linux-m68k.org>
9784         * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
9786 2014-07-11  Richard Henderson  <rth@redhat.com>
9788         * sysdeps/aarch64/libm-test-ulps: Update.
9790 2014-07-10  Florian Weimer  <fweimer@redhat.com>
9792         [BZ #17135]
9793         * nptl/pthreadP.h (__nptl_setxid_error): Declare function.
9794         * nptl/allocatestack.c (__nptl_setxid_error): New function.
9795         (__nptl_setxid): Initialize error member.  Call
9796         __nptl_setxid_error.
9797         * nptl/nptl-init.c (sighandler_setxid): Call __nptl_setxid_error.
9798         * nptl/descr.h (struct xid_command): Add error member.
9799         * nptl/tst-setuid3.c: New file.
9800         * nptl/Makefile (tests): Add it.
9802 2014-07-10  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
9804         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h (__lll_base_trylock):
9805         New define.
9806         (__lll_trylock): Use __lll_base_trylock.
9807         (__lll_cond_trylock): Likewise.
9809 2014-07-10  Roland McGrath  <roland@hack.frob.com>
9811         * nptl/pthread_create.c (start_thread): Use atomic_or and
9812         lll_futex_wake directly rather than lll_robust_dead.
9813         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h
9814         (lll_robust_dead): Macro removed.
9815         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: Likewise.
9816         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Likewise.
9817         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: Likewise.
9818         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
9819         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
9820         * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Likewise.
9821         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Likewise.
9822         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
9823         * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Likewise.
9824         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
9825         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
9826         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
9827         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
9828         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
9829         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
9831         * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
9832         Use atomic_compare_and_exchange_val_acq directly rather than
9833         lll_robust_trylock.
9834         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h
9835         (__lll_robust_trylock, lll_robust_trylock): Removed.
9836         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Likewise.
9837         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: Likewise.
9838         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
9839         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
9840         * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Likewise.
9841         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Likewise.
9842         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
9843         * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Likewise.
9844         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
9845         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
9846         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
9847         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
9848         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
9849         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
9851 2014-07-02  Florian Weimer  <fweimer@redhat.com>
9853         * manual/locale.texi (Locale Names): New section documenting
9854         locale name syntax.  Adjust menu and node chaining accordingly.
9855         (Choosing Locale): Reference Locale Names, Locale Categories.
9856         Mention setting LC_ALL=C.  Reflect that name syntax is now
9857         documented.
9858         (Locale Categories): New section title.  Reference Locale Names.
9859         LC_ALL is an environment variable, but not a category.
9860         (Setting the Locale): Remove "locale -a" invocation and LOCPATH
9861         description, now in Locale Name.  Reference that section.  Locale
9862         name syntax is now documented.
9864 2014-07-02  Florian Weimer  <fweimer@redhat.com>
9866         [BZ #17137]
9867         * locale/findlocale.c (name_present, valid_locale_name): New
9868         functions.
9869         (_nl_find_locale): Use the loc_name variable to store name
9870         candidates.  Call name_present and valid_locale_name to check and
9871         validate locale names.  Return an error if the locale is invalid.
9873 2014-07-02  Florian Weimer  <fweimer@redhat.com>
9875         * locale/setlocale.c (setlocale): Use strdup for allocating
9876         composite name copy.
9878 2014-07-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
9880         Sync up with gnulib.
9881         * misc/error.c: Use !_LIBC instead of HAVE_CONFIG_H.
9882         [!_LIBC && ENABLE_NLS]: Include gettext.h.
9883         [_LIBC]: Define USE_UNLOCKED_IO, _GL_ATTRIBUTE_FORMAT_PRINTF
9884         and _GL_ARG_NONNULL.
9885         [USE_UNLOCKED_IO]: Include unlocked-io.h.
9886         [!_LIBC]: Include code for Windows and Cygwin.
9887         [!_LIBC && !HAVE_DECL_STRERROR_R && !STRERROR_R_CHAR_P]:
9888         Include prototype for int strerror_r.
9889         [!_LIBC] (is_open): New function.
9890         (flush_stdout): New function.
9891         (print_errno_message): Use it.
9892         (error): Likewise.
9893         (error_at_line): Likewise.
9894         (error_tail) Add function attribute macros.  Use
9895         __builtin_expect.
9897         * time/strptime_l.c [_LIBC]: Define HAVE_LOCALTIME_R.
9899         * time/strftime_l.c [_LIBC]: Define HAVE_STRFTIME.
9901         * io/ftw.c: Include sys/param.h unconditionally.
9903         * locale/programs/simple-hash.c [!HAVE_OBSTACK]: Remove code.
9905         [BZ #17125]
9906         * sysdeps/unix/sysv/linux/check_pf.c (cache): Don't use
9907         libc_freeres_ptr.
9908         (freecache): New function to free CACHE on exit.
9910         * sunrpc/xdr.c (xdr_string): Add comment about SIZE
9911         initialization.
9913 2014-07-09  David S. Miller  <davem@davemloft.net>
9915         * sysdeps/sparc/fpu/libm-test-ulps: Update.
9917         * sysdeps/sparc/nptl/internaltypes.h: Delete.
9918         * sysdeps/sparc/nptl/sparc-nptl.h: New file.
9919         * sysdeps/sparc/nptl/pthread_barrier_destroy.c: Include it.
9920         * sysdeps/sparc/nptl/pthread_barrier_init.c: Likewise.
9921         * sysdeps/sparc/nptl/pthread_barrier_wait.c: Likewise.
9922         * sysdeps/sparc/nptl/sem_init.c: Likewise.
9923         * sysdeps/sparc/nptl/sem_post.c: Likewise.
9924         * sysdeps/sparc/nptl/sem_timedwait.c: Likewise.
9925         * sysdeps/sparc/nptl/sem_wait.c: Likewise.
9926         * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: Likewise.
9927         * sysdeps/sparc/sparc32/nptl/sem_post.c: Likewise.
9928         * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: Likewise.
9929         * sysdeps/sparc/sparc32/nptl/sem_wait.c: Likewise.
9931 2014-07-09  Andreas Schwab  <schwab@suse.de>
9933         * sysdeps/powerpc/test-gettimebase.c (do_test): Add newline to
9934         output.
9935         * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c
9936         (do_test): Likewise.
9938         * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
9940 2014-07-09  Will Newton  <will.newton@linaro.org>
9942         * sysdeps/aarch64/tlsdesc.c (_dl_unmap): Test SHARED with #ifdef.
9943         * sysdeps/arm/tlsdesc.c (_dl_unmap): Likewise.
9944         * sysdeps/i386/tlsdesc.c (_dl_unmap): Likewise.
9945         * sysdeps/x86_64/tlsdesc.c (_dl_unmap): Likewise.
9946         * sysdeps/hppa/start.S (_start): Likewise.
9948 2014-07-09  Siddhesh Poyarekar  <siddhesh@redhat.com>
9950         * sunrpc/xdr.c (xdr_string): Initialize SIZE to 0.
9952         * sysdeps/generic/unwind-pe.h: Only check if __cplusplus is
9953         defined.
9955 2014-07-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
9957         * resolv/res_query.c (__libc_res_nsearch): Dereference resplen2
9958         after checking that it is non-NULL.
9960         * sysdeps/i386/dl-machine.h: Define ELF_MACHINE_NO_REL.
9962 2014-07-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
9964         * sysdeps/powerpc/memmove.c: Remove file.
9965         * sysdeps/powerpc/powerpc32/power4/memcopy.h
9966         [MEMCPY_OK_FOR_FWD_MEMMOVE]: Define it to 1.
9967         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-power7.c
9968         [MEMCPY_OK_FOR_FWD_MEMMOVE]: Remove define.
9969         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-ppc.c:
9970         [MEMCPY_OK_FOR_FWD_MEMMOVE]: Likewise.
9971         * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: Include default
9972         string memmove instead of removed powerpc one.
9974         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S:
9975         [weak_alias]: Fix compiler warning due trailing data.
9976         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S:
9977         [weak_alias]: Likewise.
9978         * sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c: Fix compile
9979         warnigs due missing definition of __strcpy_power7 and __strlen_power7.
9981         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
9982         (__libc_ifunc_impl_list): Add memmove functions.
9984 2014-07-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
9986         * localedata/tests-mbwc/dat_iswalnum.c [SHOJI_IS_RIGHT]:
9987         Remove code.
9988         * localedata/tests-mbwc/dat_iswalpha.c [SHOJI_IS_RIGHT]:
9989         Likewise
9990         * localedata/tests-mbwc/dat_iswctype.c [SHOJI_IS_RIGHT]:
9991         Likewise
9992         * localedata/tests-mbwc/dat_iswgraph.c [SHOJI_IS_RIGHT]:
9993         Likewise
9994         * localedata/tests-mbwc/dat_iswprint.c [SHOJI_IS_RIGHT]:
9995         Likewise
9996         * localedata/tests-mbwc/dat_iswpunct.c [SHOJI_IS_RIGHT]:
9997         Likewise
9998         * localedata/tests-mbwc/dat_mbrlen.c [SHOJI_IS_RIGHT]:
9999         Likewise
10000         * localedata/tests-mbwc/dat_mbstowcs.c [SHOJI_IS_RIGHT]:
10001         Likewise
10002         * localedata/tests-mbwc/dat_mbtowc.c [SHOJI_IS_RIGHT]:
10003         Likewise
10004         * localedata/tests-mbwc/dat_strcoll.c [SHOJI_IS_RIGHT]:
10005         Likewise
10006         * localedata/tests-mbwc/dat_swscanf.c [SHOJI_IS_RIGHT]:
10007         Likewise
10008         * localedata/tests-mbwc/dat_towctrans.c [SHOJI_IS_RIGHT]:
10009         Likewise
10010         * localedata/tests-mbwc/dat_wcscoll.c [SHOJI_IS_RIGHT]:
10011         Likewise
10012         * localedata/tests-mbwc/dat_wcswidth.c [SHOJI_IS_RIGHT]:
10013         Likewise
10014         * localedata/tests-mbwc/dat_wctob.c [SHOJI_IS_RIGHT]:
10015         Likewise
10016         * localedata/tests-mbwc/dat_wcwidth.c [SHOJI_IS_RIGHT]:
10017         Likewise
10018         * localedata/tests-mbwc/tst_towctrans.c [SHOJI_IS_RIGHT]:
10019         Likewise
10021 2014-07-07  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10023         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Align VSX copies to 16B
10024         to avoid alignment traps in non-cacheable memory.
10025         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Likewise.
10027         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memmove
10028         multiarch objects.
10029         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-power7.c: New
10030         file: multiarch power7 memmove.
10031         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-ppc.c: New file:
10032         multiarch default memmove.
10033         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove.c: New file:
10034         multiarch memove for powerpc32/power4.
10036         * string/bcopy.c: Use full path to include memmove.c.
10037         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memmove and bcopy
10038         multiarch objects.
10039         * sysdeps/powerpc/powerpc64/multiarch/bcopy-ppc64.c: New file: default
10040         bcopy for powerpc64.
10041         * sysdeps/powerpc/powerpc64/multiarch/bcopy.c: New file: multiarch
10042         bcopy for powerpc64.
10043         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c: Add bcopy
10044         and memmove implementations.
10045         * sysdeps/powerpc/powerpc64/multiarch/memmove-power7.S: New file:
10046         optimized multiarch memmove for POWER7/powerpc64.
10047         * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: New file:
10048         default multiarch memmove for powerpc64.
10049         * sysdeps/powerpc/powerpc64/multiarch/memmove.c: New file: memmove
10050         multiarch for powerpc64.
10051         * sysdeps/powerpc/powerpc64/power7/bcopy.c: New file: optimized bcopy
10052         for POWER7/powerpc64.
10053         * sysdeps/powerpc/powerpc64/power7/memmove.S: New file: optimized
10054         memmove for POWER7/powerpc64.
10056         * sysdeps/powerpc/memmove.c (memmove): Cleanup impplementation to use
10057         glibc default one.
10059         * sysdeps/powerpc/bits/link.h [_CALL_ELF]: Guard check for
10060         __ELF_NATIVE_CLASS equal to 64.
10062 2014-07-07  Roland McGrath  <roland@hack.frob.com>
10064         * sysdeps/nptl/lowlevellock.h: File removed.
10066         * NEWS: NPTL is no longer an add-on!
10067         * nptl/internaltypes.h: Moved ...
10068         * sysdeps/nptl/internaltypes.h: ... here.
10069         * sysdeps/nptl/aio_misc.h: Use <nptl/pthreadP.h> in #include.
10070         * sysdeps/nptl/fork.c: Likewise.
10071         * sysdeps/nptl/gai_misc.h: Likewise.
10072         * sysdeps/nptl/librt-cancellation.c: Likewise.
10073         * sysdeps/nptl/jmp-unwind.c: Likewise.
10074         * sysdeps/nptl/setxid.h: Likewise.
10075         * sysdeps/unix/sysv/linux/aarch64/Implies: New file.
10076         * sysdeps/unix/sysv/linux/alpha/Implies: Add alpha/nptl.
10077         * sysdeps/unix/sysv/linux/arm/Implies: New file.
10078         * sysdeps/unix/sysv/linux/hppa/Implies: New file.
10079         * sysdeps/unix/sysv/linux/i386/Implies: Add i386/nptl.
10080         * sysdeps/unix/sysv/linux/i386/i686/Implies: New file.
10081         * sysdeps/unix/sysv/linux/ia64/Implies: Add ia64/nptl.
10082         * sysdeps/unix/sysv/linux/m68k/Implies: New file.
10083         * sysdeps/unix/sysv/linux/microblaze/Implies: New file.
10084         * sysdeps/unix/sysv/linux/mips/Implies: New file.
10085         * sysdeps/unix/sysv/linux/powerpc/Implies: New file.
10086         * sysdeps/unix/sysv/linux/s390/Implies: Add s390/nptl.
10087         * sysdeps/unix/sysv/linux/sh/Implies: New file.
10088         * sysdeps/unix/sysv/linux/sparc/Implies: New file.
10089         * sysdeps/unix/sysv/linux/tile/Implies: New file.
10090         * sysdeps/unix/sysv/linux/x86_64/Implies: Add x86_64/nptl.
10091         * sysdeps/unix/sysv/linux/x86_64/x32/Implies: New file.
10092         * nptl/Makeconfig: Moved ...
10093         * sysdeps/nptl/Makeconfig: ... here.
10094         * nptl/configure: File removed.
10095         * nptl/ANNOUNCE: File removed.
10096         * sysdeps/unix/sysv/linux/configure.ac: Remove nptl sanity check.
10097         * sysdeps/unix/sysv/linux/configure: Regenerated.
10099         * nptl/Makefile (routines): Add libc_pthread_init,
10100         libc_multiple_threads, register-atfork and unregister-atfork.
10101         (libpthread-routines): Add pthread_mutex_cond_lock and pt-fork here.
10102         (gen-as-const-headers): Add lowlevelcond.sym, lowlevelrwlock.sym,
10103         lowlevelbarrier.sym, unwindbuf.sym, lowlevelrobustlock.sym,
10104         pthread-pi-defines.sym, structsem.sym.
10105         * sysdeps/unix/sysv/linux/Makefile [$(subdir) = posix]
10106         (CFLAGS-fork.c, CFLAGS-getpid.o, CFLAGS-getpid.os): New variables.
10107         [$(subdir) = nptl] (tests): Add tst-setgetname.
10108         * nptl/sysdeps/unix/sysv/linux/Makefile: File removed.
10109         * sysdeps/unix/sysv/linux/sigaction.c: Just include
10110         <nptl/sigaction.c> directly here, instead of WRAPPER_INCLUDE.
10111         [!LIBC_SIGACTION]: Remove aliases.
10112         * sysdeps/unix/sysv/linux/aarch64/sigaction.c: Likewise.
10113         * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
10114         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
10115         * sysdeps/unix/sysv/linux/ia64/sigaction.c: Likewise.
10116         * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
10117         * sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c: Likewise.
10118         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
10119         * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
10120         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
10121         * nptl/Versions (libc: GLIBC_2.3.2): Add __register_atfork.
10122         (libc: GLIBC_PRIVATE): Add __libc_pthread_init,
10123         __libc_current_sigrtmin_private, __libc_current_sigrtmax_private,
10124         __libc_allocate_rtsig_private.
10125         * nptl/sysdeps/unix/sysv/linux/Versions: File removed.
10126         * sysdeps/unix/sysv/linux/sigtimedwait.c: Include <nptl/pthreadP.h>.
10127         * sysdeps/unix/sysv/linux/sigwait.c: Likewise.
10128         * sysdeps/unix/sysv/linux/sigwaitinfo.c: Likewise.
10129         * sysdeps/unix/sysv/linux/sleep.c: Likewise.
10130         * nptl/sysdeps/unix/sysv/linux/sigwait.c: File removed.
10131         * nptl/sysdeps/unix/sysv/linux/sigtimedwait.c: File removed.
10132         * nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c: File removed.
10133         * nptl/sysdeps/unix/sysv/linux/sleep.c: File removed.
10134         * nptl/sysdeps/unix/sysv/linux/createthread.c: File removed.
10135         * sysdeps/unix/sysv/linux/ia64/fork.S: File removed.
10136         * nptl/sysdeps/unix/sysv/linux/internaltypes.h: Moved ...
10137         * nptl/internaltypes.h: ... here.
10138         * nptl/sysdeps/unix/sysv/linux/jmp-unwind.c: Moved ...
10139         * sysdeps/nptl/jmp-unwind.c: ... here.
10140         * nptl/sysdeps/unix/sysv/linux/libc-lowlevellock.c: Moved ...
10141         * nptl/libc-lowlevellock.c: ... here.
10142         * nptl/sysdeps/unix/sysv/linux/libc_multiple_threads.c: Moved ...
10143         * nptl/libc_multiple_threads.c: ... here.
10144         * nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c: Moved ...
10145         * nptl/libc_pthread_init.c: ... here.
10146         * nptl/sysdeps/unix/sysv/linux/lowlevelbarrier.sym: Moved ...
10147         * nptl/lowlevelbarrier.sym: ... here.
10148         * nptl/sysdeps/unix/sysv/linux/lowlevelcond.sym: Moved ...
10149         * nptl/lowlevelcond.sym: ... here.
10150         * nptl/sysdeps/unix/sysv/linux/lowlevellock.c: Moved ...
10151         * nptl/lowlevellock.c: ... here.
10152         * nptl/lowlevellock.h: Moved ...
10153         * sysdeps/nptl/lowlevellock.h: ... here.
10154         * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c: Moved ...
10155         * nptl/lowlevelrobustlock.c: ... here.
10156         * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.sym: Moved ...
10157         * nptl/lowlevelrobustlock.sym: ... here.
10158         * nptl/sysdeps/unix/sysv/linux/lowlevelrwlock.sym: Moved ...
10159         * nptl/lowlevelrwlock.sym: ... here.
10160         * nptl/sysdeps/unix/sysv/linux/pt-fork.c: Moved ...
10161         * nptl/pt-fork.c: ... here.
10162         * nptl/sysdeps/unix/sysv/linux/pthread-pi-defines.sym: Moved ...
10163         * nptl/pthread-pi-defines.sym: ... here.
10164         * nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: Moved ...
10165         * nptl/pthread_attr_getaffinity.c: ... here.
10166         * nptl/sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c: Moved ...
10167         * nptl/pthread_attr_setaffinity.c: ... here.
10168         * nptl/sysdeps/unix/sysv/linux/pthread_mutex_cond_lock.c: Moved ...
10169         * nptl/pthread_mutex_cond_lock.c: ... here.
10170         * sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c:
10171         Update #include.
10172         * sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: Likewise.
10173         * nptl/sysdeps/unix/sysv/linux/pthread_once.c: Moved ...
10174         * nptl/pthread_once.c: ... here, replacing old file.
10175         * nptl/sysdeps/unix/sysv/linux/pthread_yield.c: Moved ...
10176         * nptl/pthread_yield.c: ... here.
10177         * nptl/sysdeps/unix/sysv/linux/register-atfork.c: Moved ...
10178         * nptl/register-atfork.c: ... here.
10179         * nptl/sysdeps/unix/sysv/linux/sem_post.c: Moved ...
10180         * nptl/sem_post.c: ... here.
10181         * sysdeps/unix/sysv/linux/alpha/sem_post.c: Update #include.
10182         * nptl/sysdeps/unix/sysv/linux/sem_timedwait.c: Moved ...
10183         * nptl/sem_timedwait.c: ... here.
10184         * nptl/sysdeps/unix/sysv/linux/sem_trywait.c: Moved ...
10185         * nptl/sem_trywait.c: ... here.
10186         * sysdeps/sparc/sparc32/sparcv9/sem_trywait.c: Update #include.
10187         * nptl/sysdeps/unix/sysv/linux/sem_wait.c: Moved ...
10188         * nptl/sem_wait.c: ... here.
10189         * nptl/sysdeps/unix/sysv/linux/structsem.sym: Moved ...
10190         * nptl/structsem.sym: ... here.
10191         * nptl/sysdeps/unix/sysv/linux/mq_notify.c: Moved ...
10192         * sysdeps/unix/sysv/linux/mq_notify.c: ... here, replacing old file.
10193         * nptl/sysdeps/unix/sysv/linux/unregister-atfork.c: Moved ...
10194         * nptl/unregister-atfork.c: ... here.
10195         * nptl/sysdeps/unix/sysv/linux/unwindbuf.sym: Moved ...
10196         * nptl/unwindbuf.sym: ... here.
10197         * nptl/sysdeps/unix/sysv/linux/fork.c: Moved ...
10198         * sysdeps/nptl/fork.c: ... here.
10199         * nptl/sysdeps/unix/sysv/linux/fork.h: Moved ...
10200         * sysdeps/nptl/fork.h: ... here.
10201         * sysdeps/unix/sysv/linux/syscalls.list: Remove fork.
10202         * nptl/sysdeps/unix/sysv/linux/aio_misc.h: Moved ...
10203         * sysdeps/unix/sysv/linux/aio_misc.h: ... here.
10204         * nptl/sysdeps/unix/sysv/linux/allocrtsig.c: Moved ...
10205         * sysdeps/unix/sysv/linux/allocrtsig.c: ... here.
10206         * nptl/sysdeps/unix/sysv/linux/getpid.c: Moved ...
10207         * sysdeps/unix/sysv/linux/getpid.c: ... here.
10208         * nptl/sysdeps/unix/sysv/linux/kernel-posix-timers.h: Moved ...
10209         * sysdeps/unix/sysv/linux/kernel-posix-timers.h: ... here.
10210         * nptl/sysdeps/unix/sysv/linux/pt-raise.c: Moved ...
10211         * sysdeps/unix/sysv/linux/pt-raise.c: ... here.
10212         * nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c: Moved ...
10213         * sysdeps/unix/sysv/linux/pthread_getaffinity.c: ... here.
10214         * nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: Moved ...
10215         * sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: ... here.
10216         * nptl/sysdeps/unix/sysv/linux/pthread_getname.c: Moved ...
10217         * sysdeps/unix/sysv/linux/pthread_getname.c: ... here.
10218         * nptl/sysdeps/unix/sysv/linux/pthread_kill.c: Moved ...
10219         * sysdeps/unix/sysv/linux/pthread_kill.c: ... here.
10220         * nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c: Moved ...
10221         * sysdeps/unix/sysv/linux/pthread_setaffinity.c: ... here.
10222         * nptl/sysdeps/unix/sysv/linux/pthread_setname.c: Moved ...
10223         * sysdeps/unix/sysv/linux/pthread_setname.c: ... here.
10224         * nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c: Moved ...
10225         * sysdeps/unix/sysv/linux/pthread_sigqueue.c: ... here.
10226         * nptl/sysdeps/unix/sysv/linux/raise.c: Moved ...
10227         * sysdeps/unix/sysv/linux/raise.c: ... here.
10228         * nptl/sysdeps/unix/sysv/linux/timer_create.c: Moved ...
10229         * sysdeps/unix/sysv/linux/timer_create.c: ... here.
10230         * nptl/sysdeps/unix/sysv/linux/timer_delete.c: Moved ...
10231         * sysdeps/unix/sysv/linux/timer_delete.c: ... here.
10232         * nptl/sysdeps/unix/sysv/linux/timer_getoverr.c: Moved ...
10233         * sysdeps/unix/sysv/linux/timer_getoverr.c: ... here.
10234         * nptl/sysdeps/unix/sysv/linux/timer_gettime.c: Moved ...
10235         * sysdeps/unix/sysv/linux/timer_gettime.c: ... here.
10236         * nptl/sysdeps/unix/sysv/linux/timer_routines.c: Moved ...
10237         * sysdeps/unix/sysv/linux/timer_routines.c: ... here.
10238         * nptl/sysdeps/unix/sysv/linux/timer_settime.c: Moved ...
10239         * sysdeps/unix/sysv/linux/timer_settime.c: ... here.
10240         * nptl/sysdeps/unix/sysv/linux/tst-setgetname.c: Moved ...
10241         * sysdeps/unix/sysv/linux/tst-setgetname.c: ... here.
10242         * sysdeps/unix/sysv/linux/s390/jmp-unwind.c: Update #include.
10244 2014-07-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
10246         * sysdeps/generic/memcopy.h: Add comment for
10247         MEMCPY_OK_FOR_FWD_MEMMOVE.
10249 2014-07-04  Will Newton  <will.newton@linaro.org>
10251         * string/memchr.c: Merge from gnulib.
10252         [_LIBC]: Remove conditionals.
10253         (__ptr_t): Remove define.
10254         (LONG_MAX_32_BITS): Likewise.
10255         (LONG_MAX): Likewise.
10256         (MEMCHR): Use ANSI prototype and optimize algorithm.
10258         * sysdeps/arm/dl-machine.h (ELF_MACHINE_NO_REL): Define.
10260 2014-07-03  Roland McGrath  <roland@hack.frob.com>
10262         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h
10263         (lll_futex_timed_wait_bitset): Fix syscall argument count.
10265         * sysdeps/nptl/configure.ac (libc_cv_forced_unwind):
10266         Use -Dinhibit_libc=1 for unwind.h check to prevent false failure
10267         in a bare environment with no <stdlib.h> installed.
10268         * sysdeps/nptl/configure: Regenerated.
10270         * sysdeps/alpha/fpu/s_nearbyint.c: Include <math_ldbl_opt.h>.
10272         * sysdeps/unix/sysv/linux/configure.ac: Use AC_TRY_COMPILE rather than
10273         AC_EGREP_CPP for kernel header checks, so they only succeed if
10274         including <linux/version.h> actually works right.
10275         * sysdeps/unix/sysv/linux/configure: Regenerated.
10277         * sysdeps/s390/nptl/tls.h (THREAD_SET_POINTER_GUARD): Refer to the
10278         value so it's not diagnosed as unused.
10280         * sysdeps/pthread/Makefile: Conditionalize tst-timer bits (the only
10281         thing) with "ifeq ($(subdir),rt)".
10283 2014-07-03  Richard Henderson  <rth@redhat.com>
10285         * sysdeps/alpha/fpu/s_nearbyintf.c: Remove file.
10286         * sysdeps/alpha/fpu/s_nearbyint.c (__nearbyint): Remove;
10287         include sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c.
10289         * sysdeps/alpha/fpu/math_private.h (math_opt_barrier): New.
10290         (math_force_eval): New.
10292         * sysdeps/alpha/fpu/s_lround.c: Add 0.5 with chopped rounding.
10293         * sysdeps/alpha/fpu/s_lroundf.c: Likewise.
10295         * sysdeps/alpha/fpu/s_round.c: Remove file.
10296         * sysdeps/alpha/fpu/s_roundf.c: Remove file.
10298         * elf/dl-support.c (HP_TIMING_AVAIL): Do not redefine.
10299         (_dl_non_dynamic_init): Check HP_SMALL_TIMING_AVAIL instead.
10300         * elf/rtld.c (HP_TIMING_AVAIL): Do not redefine.
10301         (_dl_start_final): Check HP_SMALL_TIMING_AVAIL instead.
10302         (_dl_start, print_statistics): Likewise.
10303         * sysdeps/generic/ldsodefs.h (struct rtld_global): Only check
10304         HP_SMALL_TIMING_AVAIL in defining _dl_cpuclock_offset.
10306         * sysdeps/aarch64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
10307         * sysdeps/generic/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
10308         * sysdeps/i386/i686/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
10309         * sysdeps/ia64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
10310         * sysdeps/powerpc/powerpc32/power4/hp-timing.h
10311         (HP_SMALL_TIMING_AVAIL): Define.
10312         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
10313         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h
10314         (HP_SMALL_TIMING_AVAIL): Define.
10315         * sysdeps/sparc/sparc64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
10316         * sysdeps/x86_64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
10318         * sysdeps/aarch64/hp-timing.h: New file.
10320         * sysdeps/generic/hp-timing.h: Remove dead comment.
10321         * sysdeps/generic/hp-timing-common.h: New file.
10322         * sysdeps/alpha/hp-timing.h: Include it.
10323         (HP_TIMING_DIFF, HP_TIMING_ACCUM_NT, HP_TIMING_PRINT): Remove.
10324         * sysdeps/i386/i686/hp-timing.h: Likewise.
10325         * sysdeps/ia64/hp-timing.h: Likewise.
10326         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
10327         * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
10328         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h: Likewise.
10329         * sysdeps/sparc/sparc64/hp-timing.h: Likewise.
10330         * sysdeps/x86_64/hp-timing.h: Don't include the i686 version.
10331         (HP_TIMING_AVAIL, HP_TIMING_INLINE): Define.
10332         (hp_timing_t): New.
10334         * benchtests/bench-string.h (_dl_hp_timing_overhead): Remove.
10335         * benchtests/bench-timing.h (_dl_hp_timing_overhead): Remove.
10336         (TIMING_INIT): Remove call to HP_TIMING_DIFF_INIT.
10337         * elf/rtld.c (_dl_start_final): Likewise.
10338         * sysdeps/generic/ldsodefs.h (_dl_hp_timing_overhead): Remove.
10339         * sysdeps/alpha/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
10340         * sysdeps/generic/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
10341         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
10342         * sysdeps/ia64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
10343         * sysdeps/powerpc/powerpc32/power4/hp-timing.h
10344         (HP_TIMING_DIFF_INIT): Remove.
10345         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
10346         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h
10347         (HP_TIMING_DIFF_INIT): Remove.
10348         * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
10349         * sysdeps/i386/i686/hp-timing.c: Remove file.
10350         * sysdeps/x86_64/hp-timing.c: Remove file.
10351         * sysdeps/ia64/hp-timing.c: Remove file.
10352         * sysdeps/powerpc/powerpc32/power4/hp-timing.c: Remove file.
10353         * sysdeps/powerpc/powerpc64/hp-timing.c: Remove file.
10354         * sysdeps/sparc/sparc32/sparcv9/hp-timing.c: Remove file.
10355         * sysdeps/sparc/sparc64/hp-timing.c: Remove file.
10357         * sysdeps/alpha/hp-timing.h (HP_TIMING_ACCUM): Remove.
10358         * sysdeps/generic/hp-timing.h (HP_TIMING_ACCUM): Remove.
10359         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_ACCUM): Remove.
10360         * sysdeps/ia64/hp-timing.h (HP_TIMING_ACCUM): Remove.
10361         * sysdeps/powerpc/powerpc32/power4/hp-timing.h
10362         (HP_TIMING_ACCUM): Remove.
10363         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_ACCUM): Remove.
10364         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h (HP_TIMING_ACCUM): Remove.
10365         * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_ACCUM): Remove.
10367         * sysdeps/alpha/hp-timing.h (HP_TIMING_ZERO): Remove.
10368         * sysdeps/generic/hp-timing.h (HP_TIMING_ZERO): Remove.
10369         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_ZERO): Remove.
10370         * sysdeps/ia64/hp-timing.h (HP_TIMING_ZERO): Remove.
10371         * sysdeps/powerpc/powerpc32/power4/hp-timing.h (HP_TIMING_ZERO): Remove.
10372         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_ZERO): Remove.
10373         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h (HP_TIMING_ZERO): Remove.
10374         * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_ZERO): Remove.
10376         * sysdeps/powerpc/powerpc32/hp-timing.h: Remove file.
10378 2014-07-03  Maciej W. Rozycki  <macro@codesourcery.com>
10380         * stdlib/tst-strtod-overflow.c (TIMEOUT): Bump up to 30.
10382 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
10384         Sync up with gettext.
10385         * intl/loadmsgcat.c: Define O_BINARY if not defined.
10386         [_MSC_VER]: Include malloc.h
10387         [_LIBC]: Define PRI_MACROS_BROKEN if it is not defined.
10388         (get_sysdep_segment_value) [!__UCLIBC__]: Return "I" flag.
10389         (_nl_load_domain): Open DOMAIN_FILE in binary mode.  Don't use
10390         TEMP_FAILURE_RETRY.  Cast return of alloca.
10391         [!_LIBC] Call gl_rwlock_init.
10392         [IN_LIBGLOCALE]: Call _nl_find_msg with one less argument.
10394 2014-07-02  Roland McGrath  <roland@hack.frob.com>
10396         * misc/sys/cdefs.h: Check if __STDC_VERSION__ is defined
10397         before checking its value.
10399 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
10401         * intl/loadmsgcat.c (_nl_load_domain): Use __builtin_expect.
10403         * debug/memcpy_chk.c: Don't include pagecopy.h.
10404         * debug/mempcpy_chk.c: Likewise.
10405         * string/memcpy.c: Likewise.
10406         * string/memmove.c: Likewise.
10407         * sysdeps/powerpc/memmove.c: Likewise.
10408         * sysdeps/generic/memcopy.h: Include pagecopy.h.  Move
10409         definition of PAGE_COPY_FWD_MAYBE here...
10410         * sysdeps/generic/pagecopy.h: ... from here.
10411         * sysdeps/mach/pagecopy.h: Don't include generic pagecopy.h.
10413 2014-07-02  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
10414             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10416         * sysdeps/powerpc/strcat.c: Using macro to redefine symbol name.
10417         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcat multiarch
10418         optimizations.
10419         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
10420         (__libc_ifunc_impl_list): Likewise.
10421         * sysdeps/powerpc/powerpc64/multiarch/strcat.c: New file:
10422         multiarch strcat for PPC64.
10423         * sysdeps/powerpc/powerpc64/multiarch/strcat-ppc64.c: New file/
10424         * sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c: New file.
10426 2014-07-02  Roland McGrath  <roland@hack.frob.com>
10428         * sysdeps/unix/sysv/linux/dl-sysdep.c: Include <sys/param.h>.
10430 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
10432         * intl/loadmsgcat.c: Remove declaration of
10433         get_sysdep_segment_value.
10434         (get_sysdep_segment_value): Use ISO C style.
10435         (_nl_load_domain): Use ISO C style.  Get rid of redundant
10436         semicolon.  Fix typo and formatting in comment.
10437         (_nl_unload_domain): Use ISO C style.
10439         * sysdeps/posix/sysconf.c (__sysconf): Fix typo in macro name.
10441 2014-07-02  Will Newton  <will.newton@linaro.org>
10443         * malloc/obstack.c: Merge from gnulib master.
10444         [HAVE_CONFIG_H]: Remove conditional code.
10445         [!_LIBC]: Include config.h.
10446         [!ELIDE_CODE]: Don't include inttypes.h, include
10447         stdint.h unconditionally.
10448         (print_and_abort): Mark as _Noreturn.
10449         (_obstack_allocated_p): Mark as __attribute_pure__.
10450         (obstack_free): Rename to __obstack_free.
10451         [!__attribute__]: Remove conditional code.
10452         * malloc/obstack.h: Merge from gnulib master.
10453         [__cplusplus]: Move conditional down.
10454         [!__attribute_pure__]: Define __attribute_pure__ here
10455         if it is not already defined.
10456         (_obstack_memory_used): Mark as __attribute_pure__.
10457         [!__obstack_free]: Define as obstack_free.
10458         [__GNUC__]: Remove check for ancient NeXT gcc.
10460 2014-07-02  Will Newton  <will.newton@linaro.org>
10461             Paul Eggert  <eggert@cs.ucla.edu>
10463         * misc/sys/cdefs.h (_Noreturn): New macro, for pre-C11 compilers.
10465 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
10467         * resolv/gethnamaddr.c: Add comment warning that the file is
10468         not maintained.
10470 2014-07-01  Carlos O'Donell  <carlos@redhat.com>
10472         * sysdeps/unix/sysv/linux/hppa/librt.abilist: Remove GLIBC_2.3
10473         entries.
10475         * sysdeps/unix/sysv/linux/hppa/Versions: Remove librt GLIBC_2.3
10476         entry for aio_cancel and aio_cancel64.
10477         * sysdeps/unix/sysv/linux/hppa/ld.abilist: New file.
10478         * sysdeps/unix/sysv/linux/hppa/libBrokenLocale.abilist: New file.
10479         * sysdeps/unix/sysv/linux/hppa/libanl.abilist: New file.
10480         * sysdeps/unix/sysv/linux/hppa/libc.abilist: New file.
10481         * sysdeps/unix/sysv/linux/hppa/libcrypt.abilist: New file.
10482         * sysdeps/unix/sysv/linux/hppa/libdl.abilist: New file.
10483         * sysdeps/unix/sysv/linux/hppa/libm.abilist: New file.
10484         * sysdeps/unix/sysv/linux/hppa/libnsl.abilist: New file.
10485         * sysdeps/unix/sysv/linux/hppa/libpthread.abilist: New file.
10486         * sysdeps/unix/sysv/linux/hppa/libresolv.abilist: New file.
10487         * sysdeps/unix/sysv/linux/hppa/librt.abilist: New file.
10488         * sysdeps/unix/sysv/linux/hppa/libthread_db.abilist: New file.
10489         * sysdeps/unix/sysv/linux/hppa/libutil.abilist: New file.
10491 2014-07-01  Roland McGrath  <roland@hack.frob.com>
10493         * sysdeps/unix/sysv/linux/sysconf.c: Include <sys/param.h>.
10494         * nptl/pthread_mutex_lock.c: Likewise.
10495         * nptl/pthread_mutex_timedlock.c: Likewise.
10496         * nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: Likewise.
10498 2014-07-01  Richard henderson  <rth@redhat.com>
10500         * sysdeps/alpha/fpu/bits/mathinline.h (__isnanf): Remove.
10501         (__isnan, __isnanl): Remove.
10502         * sysdeps/alpha/fpu/s_isnan.c (__isnan): Use integer arithmetic.
10504         * sysdeps/alpha/fpu/libm-test-ulps: Update.
10506 2014-07-01  Stefan Liebler  <stli@linux.vnet.ibm.com>
10508         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
10510 2014-07-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
10512         * resolv/nss_dns/dns-host.c (getanswer_r)
10513         [MULTI_PTRS_ARE_ALIASES]: Remove code.
10515 2014-07-01  Joseph Myers  <joseph@codesourcery.com>
10517         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
10518         [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PSELECT): Do not
10519         undefine.
10520         [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PREADV): Likewise.
10521         [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PWRITEV): Likewise.
10523 2014-07-01  Roland McGrath <roland@hack.frob.com>
10525         * sysdeps/unix/sysv/linux/microblaze/arch-fork.h: New file.
10526         * sysdeps/unix/sysv/linux/microblaze/nptl/fork.c: File removed.
10528         * sysdeps/microblaze/nptl/tls.h: Define TLS_DEFINE_INIT_TP.
10529         * sysdeps/unix/sysv/linux/microblaze/nptl/createthread.c: File removed.
10531         * sysdeps/microblaze/nptl/bits/pthreadtypes.h: Moved ...
10532         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h:
10533         ... here.
10534         * sysdeps/microblaze/nptl/bits/semaphore.h: Moved ...
10535         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/semaphore.h: ... here.
10537         * sysdeps/unix/sysv/linux/microblaze/pt-vfork.S: Moved ...
10538         * sysdeps/unix/sysv/linux/microblaze/nptl/pt-vfork.S: ... here.
10539         * sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S: Moved ...
10540         * sysdeps/unix/sysv/linux/microblaze/vfork.S: ... here.
10542         * sysdeps/unix/sysv/linux/microblaze/c++-types.data: Moved ...
10543         * sysdeps/unix/sysv/linux/microblaze/nptl/c++-types.data: ... here.
10544         * sysdeps/unix/sysv/linux/microblaze/ld.abilist: Moved ...
10545         * sysdeps/unix/sysv/linux/microblaze/nptl/ld.abilist: ... here.
10546         * sysdeps/unix/sysv/linux/microblaze/libBrokenLocale.abilist:
10547         Moved ...
10548         * sysdeps/unix/sysv/linux/microblaze/nptl/libBrokenLocale.abilist:
10549         ... here.
10550         * sysdeps/unix/sysv/linux/microblaze/libanl.abilist: Moved ...
10551         * sysdeps/unix/sysv/linux/microblaze/nptl/libanl.abilist: ... here.
10552         * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Moved ...
10553         * sysdeps/unix/sysv/linux/microblaze/nptl/libc.abilist: ... here.
10554         * sysdeps/unix/sysv/linux/microblaze/libcrypt.abilist: Moved ...
10555         * sysdeps/unix/sysv/linux/microblaze/nptl/libcrypt.abilist: ... here.
10556         * sysdeps/unix/sysv/linux/microblaze/libdl.abilist: Moved ...
10557         * sysdeps/unix/sysv/linux/microblaze/nptl/libdl.abilist: ... here.
10558         * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Moved ...
10559         * sysdeps/unix/sysv/linux/microblaze/nptl/libm.abilist: ... here.
10560         * sysdeps/unix/sysv/linux/microblaze/libnsl.abilist: Moved ...
10561         * sysdeps/unix/sysv/linux/microblaze/nptl/libnsl.abilist: ... here.
10562         * sysdeps/unix/sysv/linux/microblaze/libpthread.abilist: Moved ...
10563         * sysdeps/unix/sysv/linux/microblaze/nptl/libpthread.abilist: ... here.
10564         * sysdeps/unix/sysv/linux/microblaze/libresolv.abilist: Moved ...
10565         * sysdeps/unix/sysv/linux/microblaze/nptl/libresolv.abilist: ... here.
10566         * sysdeps/unix/sysv/linux/microblaze/librt.abilist: Moved ...
10567         * sysdeps/unix/sysv/linux/microblaze/nptl/librt.abilist: ... here.
10568         * sysdeps/unix/sysv/linux/microblaze/libthread_db.abilist: Moved ...
10569         * sysdeps/unix/sysv/linux/microblaze/nptl/libthread_db.abilist:
10570         ... here.
10571         * sysdeps/unix/sysv/linux/microblaze/libutil.abilist: Moved ...
10572         * sysdeps/unix/sysv/linux/microblaze/nptl/libutil.abilist: ... here.
10573         * sysdeps/unix/sysv/linux/microblaze/localplt.data: Moved ...
10574         * sysdeps/unix/sysv/linux/microblaze/nptl/localplt.data: ... here.
10575         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Moved ...
10576         * sysdeps/unix/sysv/linux/microblaze/nptl/lowlevellock.h: ... here.
10577         * sysdeps/unix/sysv/linux/microblaze/nptl/pthread_once.c: Moved ...
10578         * sysdeps/unix/sysv/linux/microblaze/pthread_once.c: ... here.
10580 2014-07-01  David Holsgrove  <david.holsgrove@xilinx.com>
10582         * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: New file.
10583         * sysdeps/unix/sysv/linux/microblaze/socket.S: Update SINGLE_THREAD_P use.
10584         * sysdeps/unix/sysv/linux/microblaze/Makefile(libpthread-routines):
10585         Add sysdep.
10587 2014-06-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10589         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
10591 2014-06-30  Joseph Myers  <joseph@codesourcery.com>
10593         * sysdeps/mips/mips32/libm-test-ulps: Regenerated.
10594         * sysdeps/mips/mips64/libm-test-ulps: Likewise.
10596         * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
10598         * sysdeps/arm/libm-test-ulps: Regenerated.
10600 2014-06-30  Maciej W. Rozycki  <macro@codesourcery.com>
10601             Roland McGrath <roland@hack.frob.com>
10603         * test-skeleton.c (signal_handler): Kill the whole process group
10604         before killing the child individually.
10605         (main): Report any failure on `setpgid'.
10607 2014-06-30  Roland McGrath  <roland@hack.frob.com>
10609         * sysdeps/arm/nptl/tls.h: Rename the multiple inclusion guard
10610         from _TLS_H to _ARM_NPTL_TLS_H.
10611         (TLS_INIT_TP): Move macro, and #include of <sysdep.h>, to ...
10612         * sysdeps/unix/sysv/linux/arm/tls.h: ... this new file.
10614 2014-06-30  Joseph Myers  <joseph@codesourcery.com>
10616         [BZ #16539]
10617         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Include <float.h>.
10618         (__expm1l): Return argument unchanged when small but not
10619         subnormal.
10621         * soft-fp/op-1.h (_FP_UNPACK_RAW_1): Rename local variables to
10622         include macro name.
10623         (_FP_UNPACK_RAW_1_P): Likewise.
10624         (_FP_PACK_RAW_1): Likewise.
10625         (_FP_PACK_RAW_1_P): Likewise.
10626         (_FP_MUL_MEAT_1_wide): Likewise.
10627         (_FP_MUL_MEAT_DW_1_hard): Likewise.
10628         (_FP_MUL_MEAT_1_hard): Likewise.
10629         (_FP_DIV_MEAT_1_imm): Likewise.
10630         (_FP_DIV_MEAT_1_udiv_norm): Likewise.
10631         (_FP_DIV_MEAT_1_udiv): Likewise.
10632         * soft-fp/op-2.h (__FP_FRAC_DEC_2): Likewise.
10633         (_FP_UNPACK_RAW_2): Likewise.
10634         (_FP_UNPACK_RAW_2_P): Likewise.
10635         (_FP_PACK_RAW_2): Likewise.
10636         (_FP_PACK_RAW_2_P): Likewise.
10637         (_FP_MUL_MEAT_DW_2_wide): Likewise.
10638         (_FP_MUL_MEAT_2_wide): Likewise.
10639         (_FP_MUL_MEAT_DW_2_wide_3mul): Likewise.
10640         (_FP_MUL_MEAT_2_wide_3mul): Likewise.
10641         (_FP_MUL_MEAT_DW_2_gmp): Likewise.
10642         (_FP_MUL_MEAT_2_gmp): Likewise.
10643         (_FP_DIV_MEAT_2_udiv): Likewise.
10644         * soft-fp/op-4.h (_FP_FRAC_SLL_4): Likewise.
10645         (_FP_FRAC_SRL_4): Likewise.
10646         (_FP_FRAC_SRST_4): Likewise.
10647         (_FP_FRAC_SRS_4): Likewise.
10648         (_FP_UNPACK_RAW_4): Likewise.
10649         (_FP_UNPACK_RAW_4_P): Likewise.
10650         (_FP_PACK_RAW_4): Likewise.
10651         (_FP_PACK_RAW_4_P): Likewise.
10652         (_FP_MUL_MEAT_DW_4_wide): Likewise.
10653         (_FP_MUL_MEAT_4_wide): Likewise.
10654         (_FP_MUL_MEAT_4_gmp): Likewise.
10655         (umul_ppppmnnn): Likewise.
10656         (_FP_DIV_MEAT_4_udiv): Likewise.
10657         (__FP_FRAC_ADD_4): Likewise.
10658         (__FP_FRAC_SUB_3): Likewise.
10659         (__FP_FRAC_SUB_4): Likewise.
10660         (__FP_FRAC_DEC_3): Likewise.
10661         (__FP_FRAC_DEC_4): Likewise.
10662         (__FP_FRAC_ADDI_4): Likewise.
10663         * soft-fp/op-8.h (_FP_FRAC_SLL_8): Likewise.
10664         (_FP_FRAC_SRL_8): Likewise.
10665         (_FP_FRAC_SRS_8): Likewise.
10667         * soft-fp/extended.h (FP_UNPACK_RAW_E): Rename local variables to
10668         include macro name.
10669         (FP_UNPACK_RAW_EP): Likewise.
10670         (FP_PACK_RAW_E): Likewise.
10671         (FP_PACK_RAW_EP): Likewise.
10672         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Likewise.
10673         (_FP_ISSIGNAN): Likewise.
10674         (_FP_ADD_INTERNAL): Likewise.
10675         (_FP_FMA): Likewise.
10676         (_FP_CMP): Likewise.
10677         (_FP_SQRT): Likewise.
10678         (_FP_TO_INT): Likewise.
10679         (_FP_FROM_INT): Likewise.
10680         (FP_EXTEND): Likewise.
10681         (_FP_DIV_MEAT_N_loop): Likewise.
10683 2014-06-30  Maciej W. Rozycki  <macro@codesourcery.com>
10685         * sysdeps/unix/sysv/linux/bits/socket.h: Adjust macro formatting
10686         throughout.
10688 2014-06-29  Joseph Myers  <joseph@codesourcery.com>
10690         [BZ #17097]
10691         * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Return
10692         result with correct sign in case of exponents that produce
10693         overflow except for X very close to 1.
10695 2014-06-28  Paul Eggert  <eggert@cs.ucla.edu>
10697         mktime: merge #if/#ifdef usage from glibc
10698         * lib/mktime.c: Use "#if defined DEBUG && DEBUG", not "#if DEBUG",
10699         as that works with both Glibc's and Gnulib's style.
10700         See thread starting at Siddhesh Poyarekar's bug report at:
10701         http://lists.gnu.org/archive/html/bug-gnulib/2014-06/msg00102.html
10703 2014-06-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
10705         * sysdeps/generic/memcopy.h: Define MEMCPY_OK_FOR_FWD_MEMMOVE.
10706         * sysdeps/tile/memcopy.h: Redefine MEMCPY_OK_FOR_FWD_MEMMOVE.
10707         * sysdeps/tile/tilegx/memmove.c: Remove file.
10709 2014-06-27  Joseph Myers  <joseph@codesourcery.com>
10711         * Makeconfig ($(common-objpfx)soversions.mk): Do not generate
10712         abi-name definition.
10713         * scripts/soversions.awk: Do not handle or generate ABI lines.
10714         * shlib-versions: Remove ABI entries.
10715         * sysdeps/powerpc/nofpu/shlib-versions: Remove file.
10716         * sysdeps/x86_64/x32/shlib-versions: Remove ABI entry.
10718 2014-06-27  Roland McGrath  <roland@hack.frob.com>
10720         * sysdeps/unix/sysv/linux/mips/mips32/nptl/c++-types.data: Moved ...
10721         * sysdeps/unix/sysv/linux/mips/mips32/c++-types.data: ... here.
10722         * sysdeps/unix/sysv/linux/mips/mips32/fpu/nptl/libc.abilist: Moved ...
10723         * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: ... here.
10724         * sysdeps/unix/sysv/linux/mips/mips32/nptl/ld.abilist: Moved ...
10725         * sysdeps/unix/sysv/linux/mips/mips32/ld.abilist: ... here.
10726         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libBrokenLocale.abilist:
10727         Moved ...
10728         * sysdeps/unix/sysv/linux/mips/mips32/libBrokenLocale.abilist:
10729         ... here.
10730         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libanl.abilist: Moved ...
10731         * sysdeps/unix/sysv/linux/mips/mips32/libanl.abilist: ... here.
10732         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libcidn.abilist: Moved ...
10733         * sysdeps/unix/sysv/linux/mips/mips32/libcidn.abilist: ... here.
10734         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libcrypt.abilist: Moved ...
10735         * sysdeps/unix/sysv/linux/mips/mips32/libcrypt.abilist: ... here.
10736         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libdl.abilist: Moved ...
10737         * sysdeps/unix/sysv/linux/mips/mips32/libdl.abilist: ... here.
10738         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libm.abilist: Moved ...
10739         * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: ... here.
10740         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnsl.abilist: Moved ...
10741         * sysdeps/unix/sysv/linux/mips/mips32/libnsl.abilist: ... here.
10742         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_compat.abilist:
10743         Moved ...
10744         * sysdeps/unix/sysv/linux/mips/mips32/libnss_compat.abilist: ... here.
10745         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_db.abilist: Moved ...
10746         * sysdeps/unix/sysv/linux/mips/mips32/libnss_db.abilist: ... here.
10747         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_dns.abilist: Moved ...
10748         * sysdeps/unix/sysv/linux/mips/mips32/libnss_dns.abilist: ... here.
10749         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_files.abilist:
10750         Moved ...
10751         * sysdeps/unix/sysv/linux/mips/mips32/libnss_files.abilist: ... here.
10752         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_hesiod.abilist:
10753         Moved ...
10754         * sysdeps/unix/sysv/linux/mips/mips32/libnss_hesiod.abilist: ... here.
10755         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_nis.abilist: Moved ...
10756         * sysdeps/unix/sysv/linux/mips/mips32/libnss_nis.abilist: ... here.
10757         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_nisplus.abilist:
10758         Moved ...
10759         * sysdeps/unix/sysv/linux/mips/mips32/libnss_nisplus.abilist: ... here.
10760         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libpthread.abilist: Moved ...
10761         * sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist: ... here.
10762         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libresolv.abilist: Moved ...
10763         * sysdeps/unix/sysv/linux/mips/mips32/libresolv.abilist: ... here.
10764         * sysdeps/unix/sysv/linux/mips/mips32/nptl/librt.abilist: Moved ...
10765         * sysdeps/unix/sysv/linux/mips/mips32/librt.abilist: ... here.
10766         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libthread_db.abilist:
10767         Moved ...
10768         * sysdeps/unix/sysv/linux/mips/mips32/libthread_db.abilist: ... here.
10769         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libutil.abilist: Moved ...
10770         * sysdeps/unix/sysv/linux/mips/mips32/libutil.abilist: ... here.
10771         * sysdeps/unix/sysv/linux/mips/mips32/nofpu/nptl/libc.abilist:
10772         Moved ...
10773         * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist: ... here.
10774         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/c++-types.data:
10775         Moved ...
10776         * sysdeps/unix/sysv/linux/mips/mips64/n32/c++-types.data: ... here.
10777         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/ld.abilist: Moved ...
10778         * sysdeps/unix/sysv/linux/mips/mips64/n32/ld.abilist: ... here.
10779         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libBrokenLocale.abilist:
10780         Moved ...
10781         * sysdeps/unix/sysv/linux/mips/mips64/libBrokenLocale.abilist:
10782         ... here.
10783         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libBrokenLocale.abilist:
10784         Identical file removed.
10785         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libanl.abilist:
10786         Moved ...
10787         * sysdeps/unix/sysv/linux/mips/mips64/libanl.abilist: ... here.
10788         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libanl.abilist:
10789         Identical file removed.
10790         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libc.abilist: Moved ...
10791         * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: ... here.
10792         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libcrypt.abilist:
10793         Moved ...
10794         * sysdeps/unix/sysv/linux/mips/mips64/libcrypt.abilist: ... here.
10795         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libcrypt.abilist:
10796         Identical file removed.
10797         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libdl.abilist: Moved ...
10798         * sysdeps/unix/sysv/linux/mips/mips64/libdl.abilist: ... here.
10799         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libdl.abilist:
10800         Identical file removed.
10801         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libm.abilist: Moved ...
10802         * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: ... here.
10803         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libm.abilist:
10804         Identical file removed.
10805         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libnsl.abilist: Moved ...
10806         * sysdeps/unix/sysv/linux/mips/mips64/libnsl.abilist: ... here.
10807         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libnsl.abilist:
10808         Identical file removed.
10809         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libpthread.abilist:
10810         Moved ...
10811         * sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist: ... here.
10812         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libpthread.abilist:
10813         Identical file removed.
10814         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libresolv.abilist:
10815         Moved ...
10816         * sysdeps/unix/sysv/linux/mips/mips64/n32/libresolv.abilist: ... here.
10817         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/librt.abilist: Moved ...
10818         * sysdeps/unix/sysv/linux/mips/mips64/librt.abilist: ... here.
10819         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/librt.abilist:
10820         Identical file removed.
10821         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libthread_db.abilist:
10822         Moved ...
10823         * sysdeps/unix/sysv/linux/mips/mips64/libthread_db.abilist:
10824         ... here.
10825         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libthread_db.abilist:
10826         Identical file removed.
10827         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libutil.abilist:
10828         Moved ...
10829         * sysdeps/unix/sysv/linux/mips/mips64/libutil.abilist: ... here.
10830         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libutil.abilist:
10831         Identical file removed.
10832         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/c++-types.data:
10833         Moved ...
10834         * sysdeps/unix/sysv/linux/mips/mips64/n64/c++-types.data: ... here.
10835         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/ld.abilist: Moved ...
10836         * sysdeps/unix/sysv/linux/mips/mips64/n64/ld.abilist: ... here.
10837         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libc.abilist: Moved ...
10838         * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: ... here.
10839         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libresolv.abilist:
10840         Moved ...
10841         * sysdeps/unix/sysv/linux/mips/mips64/n64/libresolv.abilist: ... here.
10842         * sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h: Moved ...
10843         * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: ... here.
10845         * sysdeps/unix/sysv/linux/mips/vfork.S: Incorporate
10846         SAVE_PID and RESTORE_PID blocks from nptl/pt-vfork.S.
10847         * sysdeps/unix/sysv/linux/mips/nptl/vfork.S: File removed.
10848         * sysdeps/unix/sysv/linux/mips/nptl/pt-vfork.S: File removed.
10849         * sysdeps/unix/sysv/linux/mips/pt-vfork.S: New file.
10851 2014-06-27  Arjun Shankar  <arjun.is@lostca.se>
10853         [BZ #17092]
10854         * nscd/nscd.c (monitor_child): Return exit status of child
10855         instead of return value from wait syscall.
10857 2014-06-27  Joseph Myers  <joseph@codesourcery.com>
10859         * configure.ac (libc_commonpagesize): Remove variable.
10860         (libc_relro_required): Likewise.
10861         (libc_cv_z_relro): Remove configure test.
10862         * configure: Regenerated.
10863         * sysdeps/aarch64/preconfigure (libc_commonpagesize): Do not set
10864         variable.
10865         (libc_relro_required): Likewise.
10866         * sysdeps/alpha/preconfigure (libc_commonpagesize): Likewise.
10867         (libc_relro_required): Likewise.
10868         * sysdeps/arm/preconfigure.ac (libc_commonpagesize): Likewise.
10869         (libc_relro_required): Likewise.
10870         * sysdeps/arm/preconfigure: Regenerated.
10871         * sysdeps/ia64/preconfigure: Remove file.
10872         * sysdeps/tile/preconfigure (libc_commonpagesize): Do not set
10873         variable.
10874         (libc_relro_required): Likewise.
10876         [BZ #16561]
10877         [BZ #16562]
10878         * sysdeps/ieee754/dbl-64/e_jn.c: Include <float.h>.
10879         (__ieee754_yn): Set FE_TONEAREST mode internally and then
10880         recompute overflowing results in original rounding mode.
10881         * sysdeps/ieee754/flt-32/e_jnf.c: Include <float.h>.
10882         (__ieee754_ynf): Set FE_TONEAREST mode internally and then
10883         recompute overflowing results in original rounding mode.
10884         * sysdeps/ieee754/ldbl-128/e_jnl.c: Include <float.h>.
10885         (__ieee754_ynl): Set FE_TONEAREST mode internally and then
10886         recompute overflowing results in original rounding mode.
10887         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Include <float.h>.
10888         (__ieee754_ynl): Set FE_TONEAREST mode internally and then
10889         recompute overflowing results in original rounding mode.
10890         * sysdeps/ieee754/ldbl-96/e_jnl.c: Include <float.h>.
10891         (__ieee754_ynl): Set FE_TONEAREST mode internally and then
10892         recompute overflowing results in original rounding mode.
10893         * sysdeps/i386/fpu/fenv_private.h [!__SSE2_MATH__]
10894         (libc_feholdsetround_ctx): New macro.
10895         * math/libm-test.inc (yn_test): Use ALL_RM_TEST.
10896         * sysdeps/i386/fpu/libm-test-ulps: Update.
10897         * sysdeps/x86_64/fpu/libm-test-ulps : Likewise.
10899 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
10901         * sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h
10902         [__PIC__] (PSEUDO): Use name of _nocancel entry point in
10903         corresponding .cpsetup call.
10905 2014-06-26  Roland McGrath  <roland@hack.frob.com>
10907         * sysdeps/unix/sysv/linux/arm/libc-aeabi_read_tp.S: Moved ...
10908         * sysdeps/arm/libc-aeabi_read_tp.S: ... here.
10909         * sysdeps/arm/Makefile [$(subdir) = csu]
10910         (aeabi_routines): Add aeabi_read_tp and libc-aeabi_read_tp here.
10911         (static-only-routines): Add aeabi_read_tp here.
10912         (shared-only-routines): Add libc-aeabi_read_tp here.
10913         (CFLAGS-libc-start.c): Add -fexceptions here.
10914         * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = csu]
10915         (sysdep_routines, static-only-routines, shared-only-routines):
10916         Don't add to these here.
10917         (CFLAGS-libc-start.c): Likewise.
10919         * sysdeps/unix/sysv/linux/arm/nptl-aeabi_unwind_cpp_pr1.c: Moved ...
10920         * sysdeps/arm/nptl-aeabi_unwind_cpp_pr1.c: ... here.
10921         * sysdeps/unix/sysv/linux/arm/rt-aeabi_unwind_cpp_pr1.c: Moved ...
10922         * sysdeps/arm/rt-aeabi_unwind_cpp_pr1.c: ... here.
10923         * sysdeps/arm/Makefile [$(subdir) = rt]
10924         (librt-sysdep_routines, librt-shared-only-routines):
10925         Append rt-aeabi_unwind_cpp_pr1 here.
10926         * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = rt]
10927         (librt-sysdep_routines, librt-shared-only-routines): Don't do it here.
10928         * sysdeps/arm/nptl/Makefile [$(subdir) = nptl]
10929         (libpthread-sysdep_routines, libpthread-shared-only-routines):
10930         Append nptl-aeabi_unwind_cpp_pr1 here.
10931         (tests): Filter out tst-cleanupx4 here.
10932         * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = nptl]
10933         (libpthread-sysdep_routines, libpthread-shared-only-routines, tests):
10934         Don't do those here.
10936 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
10938         * scripts/list-sources.sh: Do not handle ports specially.
10940 2014-06-26  Roland McGrath  <roland@hack.frob.com>
10942         * sysdeps/arm/fesetenv.c: Include <fpu_control.h>.
10943         * sysdeps/arm/feupdateenv.c: Likewise.
10945         * posix/spawn_faction_addopen.c: Include <stdlib.h> for free decl.
10947 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
10949         * manual/texinfo.tex: Update to version 2014-05-05.10 with
10950         trailing whitespace removed.
10951         * scripts/config.guess: Update to version 2014-03-23.
10952         * scripts/config.sub: Update to version 2014-05-01
10953         * scripts/install-sh: Update to version 2013-12-25.23.
10954         * scripts/move-if-change: Update from gnulib.
10956 2014-06-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
10958         * debug/memmove_chk.c: Remove pagecopy.h include.
10960 2014-06-26  Paul Eggert  <eggert@cs.ucla.edu>
10962         * time/mktime.c (leapyear): Remove inline keyword.  The code is now
10963         identical to gnulib mktime.
10965 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
10967         * configure.ac: Do not test for machine being rs6000.  Do not test
10968         for powerpc*-*soft.
10969         * configure: Regenerated.
10971         [BZ #11505]
10972         * configure.ac (libc_cv_asm_cfi_directives): Remove configure
10973         test.
10974         * configure: Regenerated.
10975         * config.h.in (HAVE_ASM_CFI_DIRECTIVES): Remove macro undefine.
10976         * sysdeps/arm/configure.ac (libc_cv_asm_cfi_directive_sections):
10977         Remove configure test.
10978         * sysdeps/arm/configure: Regenerated.
10979         * sysdeps/nptl/configure.ac: Do not check
10980         libc_cv_asm_cfi_directives.
10981         * sysdeps/nptl/configure: Regenerated.
10982         * sysdeps/x86_64/nptl/configure.ac: Remove file.
10983         * sysdeps/x86_64/nptl/configure: Remove generated file.
10984         * b/sysdeps/generic/sysdep.h [HAVE_ASM_CFI_DIRECTIVES]: Make code
10985         unconditional.
10986         [!HAVE_ASM_CFI_DIRECTIVES]: Remove conditional code.
10988 2014-06-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
10990         * posix/fnmatch.c: Define WIDE_CHAR_VERSION.
10991         * posix/fnmatch_loop.c: Undefine WIDE_CHAR_VERSION.
10992         (FCT): Check value of WIDE_CHAR_VERSION instead of checking if
10993         it is defined.
10995         * elf/dl-runtime.c: Check for value of ELF_MACHINE_NO_RELA
10996         instead of whether it is defined.
10997         * sysdeps/aarch64/dl-machine.h: Define ELF_MACHINE_NO_RELA.
10998         * sysdeps/hppa/dl-machine.h: Likewise.
10999         * sysdeps/ia64/dl-machine.h: Likewise.
11000         * sysdeps/m68k/dl-machine.h: Likewise.
11001         * sysdeps/microblaze/dl-machine.h: Likewise.
11002         * sysdeps/mips/dl-machine.: Likewise.
11003         * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
11004         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
11005         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
11006         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
11007         * sysdeps/sh/dl-machine.h: Likewise.
11008         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
11009         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
11010         * sysdeps/tile/dl-machine.h: Likewise.
11011         * sysdeps/x86_64/dl-machine.h: Likewise.
11013         * nscd/connections.c (enum usekey) [SEPARATE_KEY]: Remove
11014         code.
11015         (verify_persistent_db): Likewise.
11017 2014-06-26  Roland McGrath  <roland@hack.frob.com>
11019         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/c++-types.data: Moved ...
11020         * sysdeps/unix/sysv/linux/s390/s390-32/c++-types.data: ... here.
11021         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: Moved ...
11022         * sysdeps/unix/sysv/linux/s390/s390-32/ld.abilist: ... here.
11023         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libBrokenLocale.abilist:
11024         Moved ...
11025         * sysdeps/unix/sysv/linux/s390/s390-32/libBrokenLocale.abilist:
11026         ... here.
11027         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libanl.abilist: Moved ...
11028         * sysdeps/unix/sysv/linux/s390/libanl.abilist: ... here.
11029         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libanl.abilist:
11030         Identical file removed.
11031         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Moved ...
11032         * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: ... here.
11033         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist: Moved ...
11034         * sysdeps/unix/sysv/linux/s390/s390-32/libcrypt.abilist: ... here.
11035         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libdl.abilist: Moved ...
11036         * sysdeps/unix/sysv/linux/s390/s390-32/libdl.abilist: ... here.
11037         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: Moved ...
11038         * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: ... here.
11039         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libnsl.abilist: Moved ...
11040         * sysdeps/unix/sysv/linux/s390/s390-32/libnsl.abilist: ... here.
11041         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
11042         Moved ...
11043         * sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist: ... here.
11044         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libresolv.abilist: Moved ...
11045         * sysdeps/unix/sysv/linux/s390/s390-32/libresolv.abilist: ... here.
11046         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: Moved ...
11047         * sysdeps/unix/sysv/linux/s390/s390-32/librt.abilist: ... here.
11048         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libthread_db.abilist:
11049         Moved ...
11050         * sysdeps/unix/sysv/linux/s390/s390-32/libthread_db.abilist: ... here.
11051         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: Moved ...
11052         * sysdeps/unix/sysv/linux/s390/s390-32/libutil.abilist: ... here.
11053         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/localplt.data: Moved ...
11054         * sysdeps/unix/sysv/linux/s390/localplt.data: ... here.
11055         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/localplt.data:
11056         Identical file removed.
11057         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/c++-types.data: Moved ...
11058         * sysdeps/unix/sysv/linux/s390/s390-64/c++-types.data: ... here.
11059         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: Moved ...
11060         * sysdeps/unix/sysv/linux/s390/s390-64/ld.abilist: ... here.
11061         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libBrokenLocale.abilist:
11062         Moved ...
11063         * sysdeps/unix/sysv/linux/s390/s390-64/libBrokenLocale.abilist:
11064         ... here.
11065         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Moved ...
11066         * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: ... here.
11067         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist: Moved ...
11068         * sysdeps/unix/sysv/linux/s390/s390-64/libcrypt.abilist: ... here.
11069         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libdl.abilist: Moved ...
11070         * sysdeps/unix/sysv/linux/s390/s390-64/libdl.abilist: ... here.
11071         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: Moved ...
11072         * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: ... here.
11073         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libnsl.abilist: Moved ...
11074         * sysdeps/unix/sysv/linux/s390/s390-64/libnsl.abilist: ... here.
11075         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
11076         Moved ...
11077         * sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist: ... here.
11078         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libresolv.abilist:
11079         Moved ...
11080         * sysdeps/unix/sysv/linux/s390/s390-64/libresolv.abilist: ... here.
11081         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/librt.abilist: Moved ...
11082         * sysdeps/unix/sysv/linux/s390/s390-64/librt.abilist: ... here.
11083         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libthread_db.abilist:
11084         Moved ...
11085         * sysdeps/unix/sysv/linux/s390/s390-64/libthread_db.abilist: ... here.
11086         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libutil.abilist: Moved ...
11087         * sysdeps/unix/sysv/linux/s390/s390-64/libutil.abilist: ... here.
11089         * nptl/sysdeps/unix/sysv/linux/s390/Makefile: File removed, contents
11090         folded into ...
11091         * sysdeps/unix/sysv/linux/s390/Makefile [$(subdir) = nptl]: ... here.
11092         * sysdeps/unix/sysv/linux/s390/Versions
11093         (libpthread: GLIBC_2.19): New version set.
11094         * nptl/sysdeps/unix/sysv/linux/s390/Versions: File removed.
11095         * sysdeps/unix/sysv/linux/s390/s390-64/Versions
11096         (librt: GLIBC_2.3.3): New version set.
11097         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/Versions: File removed.
11098         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.c: Moved ...
11099         * sysdeps/unix/sysv/linux/s390/elision-conf.c: ... here.
11100         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.h: Moved ...
11101         * sysdeps/unix/sysv/linux/s390/elision-conf.h: ... here.
11102         * nptl/sysdeps/unix/sysv/linux/s390/elision-lock.c: Moved ...
11103         * sysdeps/unix/sysv/linux/s390/elision-lock.c: ... here.
11104         * nptl/sysdeps/unix/sysv/linux/s390/elision-timed.c: Moved ...
11105         * sysdeps/unix/sysv/linux/s390/elision-timed.c: ... here.
11106         * nptl/sysdeps/unix/sysv/linux/s390/elision-trylock.c: Moved ...
11107         * sysdeps/unix/sysv/linux/s390/elision-trylock.c: ... here.
11108         * nptl/sysdeps/unix/sysv/linux/s390/elision-unlock.c: Moved ...
11109         * sysdeps/unix/sysv/linux/s390/elision-unlock.c: ... here.
11110         * nptl/sysdeps/unix/sysv/linux/s390/force-elision.h: Moved ...
11111         * sysdeps/unix/sysv/linux/s390/force-elision.h: ... here.
11112         * nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c: Moved ...
11113         * sysdeps/unix/sysv/linux/s390/jmp-unwind.c: ... here.
11114         * nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h: Moved ...
11115         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: ... here.
11116         * nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c: Moved ...
11117         * sysdeps/unix/sysv/linux/s390/pt-longjmp.c: ... here.
11118         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c: Moved ...
11119         * sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c: ... here.
11120         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c: Moved ...
11121         * sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c: ... here.
11122         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c: Moved ...
11123         * sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c: ... here.
11124         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c: Moved ...
11125         * sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c: ... here.
11126         * nptl/sysdeps/unix/sysv/linux/s390/pthread_once.c: Moved ...
11127         * sysdeps/unix/sysv/linux/s390/pthread_once.c: ... here.
11128         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Moved ...
11129         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: ... here.
11130         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Moved ...
11131         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: ... here.
11132         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: Moved ...
11133         * sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: ... here.
11134         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: Moved ...
11135         * sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: ... here.
11136         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: Moved ...
11137         * sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: ... here.
11138         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: Moved ...
11139         * sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: ... here.
11140         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: Moved ...
11141         * sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: ... here.
11143         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Moved ...
11144         * sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: ... here.
11145         (__libc_vfork): Define the function under this name.
11146         [!NOT_IN_libc] (__vfork): Make this an alias.
11147         [!NOT_IN_libc] (vfork): Conditionalize the weak_alias.
11148         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Moved ...
11149         * sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: ... here.
11150         (__libc_vfork): Define the function under this name.
11151         [!NOT_IN_libc] (__vfork): Make this an alias.
11152         [!NOT_IN_libc] (vfork): Conditionalize the weak_alias.
11153         * sysdeps/unix/sysv/linux/s390/pt-vfork.S: New file.
11154         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S: File removed.
11155         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S: File removed.
11156         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Remove vfork.
11157         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
11159         * sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Deconditionalize the
11160         code that was previously under [RESET_PID].
11161         * sysdeps/unix/sysv/linux/s390/s390-64/clone.S: Likewise.
11162         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/clone.S: File removed.
11163         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/clone.S: File removed.
11165         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h: Moved ...
11166         * sysdeps/aarch64/nptl/bits/pthreadtypes.h: ... here.
11167         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/semaphore.h: Moved ...
11168         * sysdeps/aarch64/nptl/bits/semaphore.h: ... here.
11169         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/local_lim.h: Moved ...
11170         * sysdeps/unix/sysv/linux/aarch64/bits/local_lim.h: ... here.
11171         * sysdeps/unix/sysv/linux/aarch64/nptl/c++-types.data: Moved ...
11172         * sysdeps/unix/sysv/linux/aarch64/c++-types.data: ... here.
11173         * sysdeps/unix/sysv/linux/aarch64/nptl/ld.abilist: Moved ...
11174         * sysdeps/unix/sysv/linux/aarch64/ld.abilist: ... here.
11175         * sysdeps/unix/sysv/linux/aarch64/nptl/libBrokenLocale.abilist:
11176         Moved ...
11177         * sysdeps/unix/sysv/linux/aarch64/libBrokenLocale.abilist: ... here.
11178         * sysdeps/unix/sysv/linux/aarch64/nptl/libanl.abilist: Moved ...
11179         * sysdeps/unix/sysv/linux/aarch64/libanl.abilist: ... here.
11180         * sysdeps/unix/sysv/linux/aarch64/nptl/libc.abilist: Moved ...
11181         * sysdeps/unix/sysv/linux/aarch64/libc.abilist: ... here.
11182         * sysdeps/unix/sysv/linux/aarch64/nptl/libcrypt.abilist: Moved ...
11183         * sysdeps/unix/sysv/linux/aarch64/libcrypt.abilist: ... here.
11184         * sysdeps/unix/sysv/linux/aarch64/nptl/libdl.abilist: Moved ...
11185         * sysdeps/unix/sysv/linux/aarch64/libdl.abilist: ... here.
11186         * sysdeps/unix/sysv/linux/aarch64/nptl/libm.abilist: Moved ...
11187         * sysdeps/unix/sysv/linux/aarch64/libm.abilist: ... here.
11188         * sysdeps/unix/sysv/linux/aarch64/nptl/libnsl.abilist: Moved ...
11189         * sysdeps/unix/sysv/linux/aarch64/libnsl.abilist: ... here.
11190         * sysdeps/unix/sysv/linux/aarch64/nptl/libpthread.abilist: Moved ...
11191         * sysdeps/unix/sysv/linux/aarch64/libpthread.abilist: ... here.
11192         * sysdeps/unix/sysv/linux/aarch64/nptl/libresolv.abilist: Moved ...
11193         * sysdeps/unix/sysv/linux/aarch64/libresolv.abilist: ... here.
11194         * sysdeps/unix/sysv/linux/aarch64/nptl/librt.abilist: Moved ...
11195         * sysdeps/unix/sysv/linux/aarch64/librt.abilist: ... here.
11196         * sysdeps/unix/sysv/linux/aarch64/nptl/libthread_db.abilist: Moved ...
11197         * sysdeps/unix/sysv/linux/aarch64/libthread_db.abilist: ... here.
11198         * sysdeps/unix/sysv/linux/aarch64/nptl/libutil.abilist: Moved ...
11199         * sysdeps/unix/sysv/linux/aarch64/libutil.abilist: ... here.
11200         * sysdeps/unix/sysv/linux/aarch64/nptl/localplt.data: Moved ...
11201         * sysdeps/unix/sysv/linux/aarch64/localplt.data: ... here.
11202         * sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h: Moved ...
11203         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: ... here.
11204         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h: Moved ...
11205         * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: ... here.
11207 2014-06-25  Roland McGrath  <roland@hack.frob.com>
11209         * sysdeps/unix/sysv/linux/mips/clone.S: Deconditionalize the code
11210         that was previously under [RESET_PID].
11211         * sysdeps/unix/sysv/linux/mips/nptl/clone.S: File removed.
11213 2014-06-25  Joseph Myers  <joseph@codesourcery.com>
11215         * sysdeps/unix/sysv/linux/dl-opendir.c (__ASSUME_O_CLOEXEC): Do
11216         not undefine and redefine.
11217         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs)
11218         [O_CLOEXEC]: Make code unconditional.
11219         (__get_nprocs) [!O_CLOEXEC]: Remove conditional code.
11220         * sysdeps/unix/sysv/linux/shm_open.c: Do not include
11221         <kernel-features.h>.
11222         [O_CLOEXEC && !__ASSUME_O_CLOEXEC] (have_o_cloexec): Remove
11223         conditional variable definition.
11224         (shm_open) [O_CLOEXEC]: Make code unconditional.
11225         (shm_open) [!O_CLOEXEC || !__ASSUME_O_CLOEXEC]: Remove conditional
11226         code.
11228         * configure.ac (USE_REGPARMS): Don't define here.
11229         * configure: Regenerated.
11230         * sysdeps/i386/configure.ac (USE_REGPARMS): Define here.
11231         * sysdeps/i386/configure: Regenerated.
11233         * nptl/createthread.c: Don't include kernel-features.h.
11234         * nptl/pthread_cancel.c: Likewise.
11235         * nptl/pthread_condattr_setclock.c: Likewise.
11236         * nptl/sysdeps/unix/sysv/linux/pt-raise.c: Likewise.
11237         * nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: Likewise.
11238         * nptl/sysdeps/unix/sysv/linux/pthread_kill.c: Likewise.
11239         * nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c: Likewise.
11240         * nptl/sysdeps/unix/sysv/linux/raise.c: Likewise.
11241         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S: Likewise.
11242         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Likewise.
11243         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S: Likewise.
11244         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Likewise.
11245         * nptl/sysdeps/unix/sysv/linux/timer_create.c: Likewise.
11246         * nptl/sysdeps/unix/sysv/linux/timer_delete.c: Likewise.
11247         * nptl/sysdeps/unix/sysv/linux/timer_getoverr.c: Likewise.
11248         * nptl/sysdeps/unix/sysv/linux/timer_gettime.c: Likewise.
11249         * nptl/sysdeps/unix/sysv/linux/timer_routines.c: Likewise.
11250         * nptl/sysdeps/unix/sysv/linux/timer_settime.c: Likewise.
11251         * nscd/gai.c: Likewise.
11252         * nss/nss_db/db-open.c: Likewise.
11253         * sysdeps/generic/ldsodefs.h: Likewise.
11254         * sysdeps/sh/nptl/tls.h: Likewise.
11255         * sysdeps/unix/sysv/linux/aarch64/sigaction.c: Likewise.
11256         * sysdeps/unix/sysv/linux/aarch64/sigcontextinfo.h: Likewise.
11257         * sysdeps/unix/sysv/linux/aarch64/vfork.S: Likewise.
11258         * sysdeps/unix/sysv/linux/adjtime.c: Likewise.
11259         * sysdeps/unix/sysv/linux/alpha/xstatconv.h: Likewise.
11260         * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
11261         * sysdeps/unix/sysv/linux/arm/sigcontextinfo.h: Likewise.
11262         * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
11263         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: Likewise.
11264         * sysdeps/unix/sysv/linux/clock_getres.c: Likewise.
11265         * sysdeps/unix/sysv/linux/clock_gettime.c: Likewise.
11266         * sysdeps/unix/sysv/linux/clock_nanosleep.c: Likewise.
11267         * sysdeps/unix/sysv/linux/clock_settime.c: Likewise.
11268         * sysdeps/unix/sysv/linux/dl-execstack.c: Likewise.
11269         * sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.
11270         * sysdeps/unix/sysv/linux/dl-sysdep.c: Likewise.
11271         * sysdeps/unix/sysv/linux/generic/futimesat.c: Likewise.
11272         * sysdeps/unix/sysv/linux/generic/poll.c: Likewise.
11273         * sysdeps/unix/sysv/linux/generic/wordsize-32/fcntl.c: Likewise.
11274         * sysdeps/unix/sysv/linux/generic/wordsize-32/fxstatat.c: Likewise.
11275         * sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c: Likewise.
11276         * sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c: Likewise.
11277         * sysdeps/unix/sysv/linux/generic/wordsize-32/preadv.c: Likewise.
11278         * sysdeps/unix/sysv/linux/generic/wordsize-32/preadv64.c: Likewise.
11279         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c: Likewise.
11280         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c: Likewise.
11281         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev.c: Likewise.
11282         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev64.c: Likewise.
11283         * sysdeps/unix/sysv/linux/getcwd.c: Likewise.
11284         * sysdeps/unix/sysv/linux/getpagesize.c: Likewise.
11285         * sysdeps/unix/sysv/linux/getsysstats.c: Likewise.
11286         * sysdeps/unix/sysv/linux/i386/fxstat.c: Likewise.
11287         * sysdeps/unix/sysv/linux/i386/lxstat.c: Likewise.
11288         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
11289         * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
11290         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
11291         * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise.
11292         * sysdeps/unix/sysv/linux/i386/xstat.c: Likewise.
11293         * sysdeps/unix/sysv/linux/ia64/system.c: Likewise.
11294         * sysdeps/unix/sysv/linux/if_index.c: Likewise.
11295         * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
11296         * sysdeps/unix/sysv/linux/ifreq.c: Likewise.
11297         * sysdeps/unix/sysv/linux/ldsodefs.h: Likewise.
11298         * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
11299         * sysdeps/unix/sysv/linux/m68k/vfork.S: Likewise.
11300         * sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S: Likewise.
11301         * sysdeps/unix/sysv/linux/mips/mips32/accept4.c: Likewise.
11302         * sysdeps/unix/sysv/linux/mips/mips32/recvmmsg.c: Likewise.
11303         * sysdeps/unix/sysv/linux/mips/mips32/sendmmsg.c: Likewise.
11304         * sysdeps/unix/sysv/linux/mips/pread.c: Likewise.
11305         * sysdeps/unix/sysv/linux/mips/pread64.c: Likewise.
11306         * sysdeps/unix/sysv/linux/mips/pwrite.c: Likewise.
11307         * sysdeps/unix/sysv/linux/mips/pwrite64.c: Likewise.
11308         * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
11309         * sysdeps/unix/sysv/linux/mmap64.c: Likewise.
11310         * sysdeps/unix/sysv/linux/netlinkaccess.h: Likewise.
11311         * sysdeps/unix/sysv/linux/powerpc/chown.c: Likewise.
11312         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c: Likewise.
11313         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
11314         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c: Likewise.
11315         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: Likewise.
11316         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Likewise.
11317         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c: Likewise.
11318         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c: Likewise.
11319         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c: Likewise.
11320         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c: Likewise.
11321         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
11322         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
11323         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: Likewise.
11324         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c: Likewise.
11325         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: Likewise.
11326         * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S: Likewise.
11327         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
11328         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Likewise.
11329         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
11330         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
11331         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
11332         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S: Likewise.
11333         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Likewise.
11334         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: Likewise.
11335         * sysdeps/unix/sysv/linux/pread.c: Likewise.
11336         * sysdeps/unix/sysv/linux/pread64.c: Likewise.
11337         * sysdeps/unix/sysv/linux/prof-freq.c: Likewise.
11338         * sysdeps/unix/sysv/linux/pwrite.c: Likewise.
11339         * sysdeps/unix/sysv/linux/pwrite64.c: Likewise.
11340         * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S: Likewise.
11341         * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S: Likewise.
11342         * sysdeps/unix/sysv/linux/s390/system.c: Likewise.
11343         * sysdeps/unix/sysv/linux/sh/pread.c: Likewise.
11344         * sysdeps/unix/sysv/linux/sh/pread64.c: Likewise.
11345         * sysdeps/unix/sysv/linux/sh/pwrite.c: Likewise.
11346         * sysdeps/unix/sysv/linux/sh/pwrite64.c: Likewise.
11347         * sysdeps/unix/sysv/linux/sigaction.c: Likewise.
11348         * sysdeps/unix/sysv/linux/sigpending.c: Likewise.
11349         * sysdeps/unix/sysv/linux/sigprocmask.c: Likewise.
11350         * sysdeps/unix/sysv/linux/sigsuspend.c: Likewise.
11351         * sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c: Likewise.
11352         * sysdeps/unix/sysv/linux/sparc/system.c: Likewise.
11353         * sysdeps/unix/sysv/linux/syslog.c: Likewise.
11354         * sysdeps/unix/sysv/linux/system.c: Likewise.
11355         * sysdeps/unix/sysv/linux/testrtsig.h: Likewise.
11356         * sysdeps/unix/sysv/linux/timespec_get.c: Likewise.
11357         * sysdeps/unix/sysv/linux/ttyname.c: Likewise.
11358         * sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
11359         * sysdeps/unix/sysv/linux/utimensat.c: Likewise.
11360         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
11361         * sysdeps/unix/sysv/linux/xstatconv.h: Likewise.
11363         * configure.ac (libc_cv_c_asmcr0_bug): Remove configure test.
11364         * configure: Regenerated.
11365         * config.h.in (BROKEN_PPC_ASM_CR0): Remove macro.
11367         * configure.ac (base_machine): Do not set specially for particular
11368         machines here.
11369         * configure: Regenerated.
11370         * sysdeps/powerpc/preconfigure: Move machine and base_machine
11371         settings from configure.ac.
11372         * sysdeps/i386/preconfigure: New file.
11373         * sysdeps/s390/preconfigure: Likewise.
11374         * sysdeps/sh/preconfigure: Likewise.
11375         * sysdeps/sparc/preconfigure: Likewise.
11377 2014-06-25  Roland McGrath  <roland@hack.frob.com>
11379         * sysdeps/sparc/sparc64/nptl/cpu_relax.S: Moved ...
11380         * sysdeps/sparc/sparc64/cpu_relax.S: ... here.
11381         * sysdeps/sparc/sparc64/nptl/pthread_spin_init.c: Moved ...
11382         * sysdeps/sparc/sparc64/pthread_spin_init.c: ... here.
11383         * sysdeps/sparc/sparc64/nptl/pthread_spin_lock.S: Moved ...
11384         * sysdeps/sparc/sparc64/pthread_spin_lock.S: ... here.
11385         * sysdeps/sparc/sparc64/nptl/pthread_spin_trylock.S: Moved ...
11386         * sysdeps/sparc/sparc64/pthread_spin_trylock.S: ... here.
11387         * sysdeps/sparc/sparc64/nptl/pthread_spin_unlock.S: Moved ...
11388         * sysdeps/sparc/sparc64/pthread_spin_unlock.S: ... here.
11389         * sysdeps/sparc/sparc64/nptl/pthreaddef.h: Moved ...
11390         * sysdeps/sparc/sparc64/pthreaddef.h: ... here.
11391         * sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: Update #include.
11392         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: Likewise.
11393         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: Likewise.
11394         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: Likewise.
11395         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: Likewise.
11396         * sysdeps/sparc/sparc64/nptl/Makefile: File removed, its contents ...
11397         * sysdeps/sparc/sparc64/Makefile: ... appended here.
11399         * sysdeps/sparc/sparc32/nptl/lowlevellock.c: Moved ...
11400         * sysdeps/sparc/sparc32/lowlevellock.c: ... here.
11401         * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: Moved ...
11402         * sysdeps/sparc/sparc32/pthread_barrier_wait.c: ... here.
11403         * sysdeps/sparc/sparc32/nptl/pthread_spin_lock.S: Moved ...
11404         * sysdeps/sparc/sparc32/pthread_spin_lock.S: ... here.
11405         * sysdeps/sparc/sparc32/nptl/pthread_spin_trylock.S: Moved ...
11406         * sysdeps/sparc/sparc32/pthread_spin_trylock.S: ... here.
11407         * sysdeps/sparc/sparc32/nptl/pthreaddef.h: Moved ...
11408         * sysdeps/sparc/sparc32/pthreaddef.h: ... here.
11409         * sysdeps/sparc/sparc32/nptl/sem_post.c: Moved ...
11410         * sysdeps/sparc/sparc32/sem_post.c: ... here.
11411         * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: Moved ...
11412         * sysdeps/sparc/sparc32/sem_timedwait.c: ... here.
11413         * sysdeps/sparc/sparc32/nptl/sem_trywait.c: Moved ...
11414         * sysdeps/sparc/sparc32/sem_trywait.c: ... here.
11415         * sysdeps/sparc/sparc32/nptl/sem_wait.c: Moved ...
11416         * sysdeps/sparc/sparc32/sem_wait.c: ... here.
11417         * sysdeps/sparc/sparc32/sparcv9/nptl/cpu_relax.S: Moved ...
11418         * sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: ... here.
11419         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_barrier_wait.c: Moved ...
11420         * sysdeps/sparc/sparc32/sparcv9/pthread_barrier_wait.c: ... here.
11421         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_init.c: Moved ...
11422         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: ... here.
11423         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_lock.S: Moved ...
11424         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: ... here.
11425         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_trylock.S: Moved ...
11426         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: ... here.
11427         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: Moved ...
11428         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.S: ... here.
11429         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_post.c: Moved ...
11430         * sysdeps/sparc/sparc32/sparcv9/sem_post.c: ... here.
11431         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_timedwait.c: Moved ...
11432         * sysdeps/sparc/sparc32/sparcv9/sem_timedwait.c: ... here.
11433         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_trywait.c: Moved ...
11434         * sysdeps/sparc/sparc32/sparcv9/sem_trywait.c: ... here.
11435         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_wait.c: Moved ...
11436         * sysdeps/sparc/sparc32/sparcv9/sem_wait.c: ... here.
11438         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/c++-types.data: Moved ...
11439         * sysdeps/unix/sysv/linux/sparc/sparc32/c++-types.data: ... here.
11440         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/ld.abilist: Moved ...
11441         * sysdeps/unix/sysv/linux/sparc/sparc32/ld.abilist: ... here.
11442         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libBrokenLocale.abilist:
11443         Moved ...
11444         * sysdeps/unix/sysv/linux/sparc/sparc32/libBrokenLocale.abilist:
11445         ... here.
11446         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libanl.abilist: Moved ...
11447         * sysdeps/unix/sysv/linux/sparc/sparc32/libanl.abilist: ... here.
11448         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Moved ...
11449         * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: ... here.
11450         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist:
11451         Moved ...
11452         * sysdeps/unix/sysv/linux/sparc/sparc32/libcrypt.abilist: ... here.
11453         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libdl.abilist: Moved ...
11454         * sysdeps/unix/sysv/linux/sparc/sparc32/libdl.abilist: ... here.
11455         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libm.abilist: Moved ...
11456         * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: ... here.
11457         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libnsl.abilist: Moved ...
11458         * sysdeps/unix/sysv/linux/sparc/sparc32/libnsl.abilist: ... here.
11459         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
11460         Moved ...
11461         * sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist: ... here.
11462         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libresolv.abilist:
11463         Moved ...
11464         * sysdeps/unix/sysv/linux/sparc/sparc32/libresolv.abilist: ... here.
11465         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/librt.abilist: Moved ...
11466         * sysdeps/unix/sysv/linux/sparc/sparc32/librt.abilist: ... here.
11467         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libthread_db.abilist:
11468         Moved ...
11469         * sysdeps/unix/sysv/linux/sparc/sparc32/libthread_db.abilist: ... here.
11470         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libutil.abilist: Moved ...
11471         * sysdeps/unix/sysv/linux/sparc/sparc32/libutil.abilist: ... here.
11472         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/localplt.data: Moved ...
11473         * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: ... here.
11474         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/c++-types.data: Moved ...
11475         * sysdeps/unix/sysv/linux/sparc/sparc64/c++-types.data: ... here.
11476         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/ld.abilist: Moved ...
11477         * sysdeps/unix/sysv/linux/sparc/sparc64/ld.abilist: ... here.
11478         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libBrokenLocale.abilist:
11479         Moved ...
11480         * sysdeps/unix/sysv/linux/sparc/sparc64/libBrokenLocale.abilist:
11481         ... here.
11482         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libanl.abilist: Moved ...
11483         * sysdeps/unix/sysv/linux/sparc/sparc64/libanl.abilist: ... here.
11484         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Moved ...
11485         * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: ... here.
11486         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist:
11487         Moved ...
11488         * sysdeps/unix/sysv/linux/sparc/sparc64/libcrypt.abilist: ... here.
11489         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libdl.abilist: Moved ...
11490         * sysdeps/unix/sysv/linux/sparc/sparc64/libdl.abilist: ... here.
11491         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libm.abilist: Moved ...
11492         * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: ... here.
11493         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libnsl.abilist: Moved ...
11494         * sysdeps/unix/sysv/linux/sparc/sparc64/libnsl.abilist: ... here.
11495         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
11496         Moved ...
11497         * sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist: ... here.
11498         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libresolv.abilist:
11499         Moved ...
11500         * sysdeps/unix/sysv/linux/sparc/sparc64/libresolv.abilist: ... here.
11501         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/librt.abilist: Moved ...
11502         * sysdeps/unix/sysv/linux/sparc/sparc64/librt.abilist: ... here.
11503         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libthread_db.abilist:
11504         Moved ...
11505         * sysdeps/unix/sysv/linux/sparc/sparc64/libthread_db.abilist: ... here.
11506         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libutil.abilist: Moved ...
11507         * sysdeps/unix/sysv/linux/sparc/sparc64/libutil.abilist: ... here.
11508         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/localplt.data: Moved ...
11509         * sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data: ... here.
11511 2014-06-25  Joseph Myers  <joseph@codesourcery.com>
11513         * timezone/checktab.awk: Update from tzcode 2014e.
11514         * timezone/private.h: Likewise.
11515         * timezone/tzfile.h: Likewise.
11516         * timezone/zdump.c: Likewise.
11517         * timezone/zic.c: Likewise.
11519         * sysdeps/unix/sysv/linux/kernel-features.h
11520         (__ASSUME_XFS_RESTRICTED_CHOWN): Remove macro.
11521         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_chown_restricted)
11522         [__ASSUME_XFS_RESTRICTED_CHOWN]: Make code unconditional.
11523         (__statfs_chown_restricted) [!__ASSUME_XFS_RESTRICTED_CHOWN]:
11524         Remove conditional code.
11526 2014-06-25  Will Newton  <will.newton@linaro.org>
11528         * sysdeps/unix/sysv/linux/arm/dl-procinfo.c
11529         (_dl_arm_cap_flags): Add HWCAP2 values.
11530         * sysdeps/unix/sysv/linux/arm/dl-procinfo.h
11531         (_DL_HWCAP_COUNT): Increase to 37.
11532         (_DL_HWCAP_LAST): New define.
11533         (_DL_HWCAP2_LAST): New define.
11534         (_dl_procinfo): Add support for printing
11535         AT_HWCAP2 entries.
11536         (_dl_string_hwcap): Use _dl_hwcap_string.
11538 2014-06-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11540         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
11542 2014-06-25  Joseph Myers  <joseph@codesourcery.com>
11544         * README: Do not mention ports directory.
11546         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMENSAT):
11547         Remove macro.
11548         * sysdeps/unix/sysv/linux/futimes.c: Do not include
11549         <kernel-features.h>.
11550         [__NR_utimensat && !__ASSUME_UTIMENSAT] (miss_utimensat): Remove
11551         conditional variable definition.
11552         (__futimes): Update comment.
11553         (__futimes) [__ASSUME_UTIMENSAT]: Make code unconditional.
11554         (__futimes) [!__ASSUME_UTIMENSAT]: Remove conditional code.
11556         [BZ #16560]
11557         * sysdeps/ieee754/dbl-64/e_exp10.c (__ieee754_exp10): Return 1 for
11558         arguments close to 0.
11559         * sysdeps/ieee754/ldbl-128/e_exp10l.c (__ieee754_exp10l):
11560         Likewise.
11561         * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c (__ieee754_exp10l):
11562         Likewise.
11563         * math/auto-libm-test-in: Add more tests of exp10.
11564         * math/auto-libm-test-out: Regenerated.
11565         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
11567         * sysdeps/unix/sysv/linux/kernel-features.h
11568         (__ASSUME_COMPLETE_READV_WRITEV): Remove macro.
11569         * sysdeps/unix/sysv/linux/readv.c: Do not include
11570         <kernel-features.h>.
11571         [!__ASSUME_COMPLETE_READV_WRITEV]: Remove conditional code.
11572         [!UIO_FASTIOV] (UIO_FASTIOV): Remove macro.
11573         (__libc_readv) [__ASSUME_COMPLETE_READV_WRITEV]: Make code
11574         unconditional.
11575         (__libc_readv) [!__ASSUME_COMPLETE_READV_WRITEV]: Remove
11576         conditional code.
11577         * sysdeps/unix/sysv/linux/writev.c: Do not include
11578         <kernel-features.h>.
11579         [!__ASSUME_COMPLETE_READV_WRITEV]: Remove conditional code.
11580         [!UIO_FASTIOV] (UIO_FASTIOV): Remove macro.
11581         (__libc_writev) [__ASSUME_COMPLETE_READV_WRITEV]: Make code
11582         unconditional.
11583         (__libc_writev) [!__ASSUME_COMPLETE_READV_WRITEV]: Remove
11584         conditional code.
11586 2014-06-25  Will Newton  <will.newton@linaro.org>
11588         * sysdeps/posix/tempname.c: Merge from gnulib, cosmetic
11589         comment changes throughout the file.  Remove checks
11590         for HAVE_*_H definitions that are not required.
11591         (__gen_tempname): Call abort if an unknown kind value is
11592         passed.
11594 2014-06-25  Andreas Schwab  <schwab@suse.de>
11596         [BZ #17086]
11597         * sysdeps/m68k/m680x0/fpu/s_scalbn.c: Add compat symbols for
11598         scalbln, scalblnf, scalblnl in libc.
11600 2014-06-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
11602         [BZ #17086]
11603         * sysdeps/i386/fpu/s_scalbn.S: Add compat symbol for libc.so.
11604         * sysdeps/i386/fpu/s_scalbnf.S: Likewise.
11605         * sysdeps/i386/fpu/s_scalbnl.S: Likewise.
11607 2014-06-24  Roland McGrath  <roland@hack.frob.com>
11609         * sysdeps/i386/i486/nptl/pthread_spin_trylock.S: Moved ...
11610         * sysdeps/i386/i486/pthread_spin_trylock.S: ... here.
11611         * sysdeps/i386/i586/nptl/pthread_spin_trylock.S: Moved ...
11612         * sysdeps/i386/i586/pthread_spin_trylock.S: ... here.
11613         Update #include.
11614         * sysdeps/i386/i686/nptl/pthread_spin_trylock.S: Moved ...
11615         * sysdeps/i386/i686/pthread_spin_trylock.S: ... here.
11616         Update #include.
11617         * sysdeps/x86_64/64/nptl/shlib-versions: Moved ...
11618         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: ... here.
11619         * sysdeps/x86_64/x32/nptl/shlib-versions: Moved ...
11620         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: ... here.
11621         * sysdeps/x86/nptl/bits/pthreadtypes.h: Moved ...
11622         * sysdeps/x86/bits/pthreadtypes.h: ... here.
11623         * sysdeps/x86/nptl/bits/semaphore.h: Moved ...
11624         * sysdeps/x86/bits/semaphore.h: ... here.
11625         * sysdeps/x86/nptl/elide.h: Moved ...
11626         * sysdeps/x86/elide.h: ... here.
11627         * sysdeps/x86_64/nptl/Implies: File removed.
11628         * sysdeps/i386/nptl/Implies: File removed.
11630 2014-06-24  Joseph Myers  <joseph@codesourcery.com>
11632         [BZ #16539]
11633         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]: Just
11634         return the argument for normal arguments with exponent below -64.
11635         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]:
11636         Likewise.
11637         * math/auto-libm-test-in: Add another test of expm1.
11638         * math/auto-libm-test-out: Regenerated.
11640         [BZ #16287]
11641         * sysdeps/ieee754/ldbl-128/s_erfl.c (__erfl): Return 1 without
11642         calling __erfcl for arguments at least 16.
11643         * math/auto-libm-test-in: Add more tests of erf.
11644         * math/auto-libm-test-out: Regenerated.
11646         * sysdeps/unix/sysv/linux/configure.ac: Remove cases for
11647         individual architectures.
11648         * sysdeps/unix/sysv/linux/configure: Regenerated.
11649         * sysdeps/unix/sysv/linux/i386/configure.ac: New file.
11650         * sysdeps/unix/sysv/linux/i386/configure: New generated file.
11651         * sysdeps/unix/sysv/linux/powerpc/configure.ac
11652         (ldd_rewrite_script): Define variable.
11653         * sysdeps/unix/sysv/linux/powerpc/configure: Regenerated.
11654         * sysdeps/unix/sysv/linux/powerpc/powerpc32/configure.ac: New
11655         file.
11656         * sysdeps/unix/sysv/linux/powerpc/powerpc32/configure: New
11657         generated file.
11658         * sysdeps/unix/sysv/linux/s390/configure.ac: New file.
11659         * sysdeps/unix/sysv/linux/s390/configure: New generated file.
11660         * sysdeps/unix/sysv/linux/sh/configure.ac: New file.
11661         * sysdeps/unix/sysv/linux/sh/configure: New generated file.
11662         * sysdeps/unix/sysv/linux/sparc/configure.ac: New file.
11663         * sysdeps/unix/sysv/linux/sparc/configure: New generated file.
11664         * sysdeps/unix/sysv/linux/x86_64/configure.ac: New file.
11665         * sysdeps/unix/sysv/linux/x86_64/configure: New generated file.
11667 2014-06-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
11669         [BZ #17084]
11670         * sysdeps/x86/nptl/bits/pthreadtypes.h (pthread_mutex_t):
11671         Rename member __data.d to __data.__elision_data.
11673 2014-06-24  Wilco  <wdijkstr@arm.com>
11675         * NEWS: Add 16918 to fixed bug list.
11677 2014-06-24  Wilco  <wdijkstr@arm.com>
11679         * sysdeps/arm/fesetenv.c (fesetenv): Optimize implementation.
11681 2014-06-24  Wilco  <wdijkstr@arm.com>
11683         * sysdeps/arm/fpu_control.h (_FPU_MASK_RM): Define.
11684         * sysdeps/arm/fenv_private.h (libc_fesetround_vfp)
11685         (libc_feholdexcept_setround_vfp) (libc_feholdsetround_vfp)
11686         (libc_feresetround_vfp) (libc_feholdsetround_vfp_ctx)
11687         (libc_feresetround_vfp_ctx): Use _FPU_MASK_RM.
11688         * sysdeps/arm/fesetround.c (fesetround): Use _FPU_MASK_RM.
11689         * sysdeps/arm/get-rounding-mode.h (get_rounding_mode):
11690         Use _FPU_MASK_RM.
11692 2014-06-24  Wilco  <wdijkstr@arm.com>
11694         * sysdeps/arm/fsetexcptflg.c (fesetexceptflag): Remove unused include.
11696 2014-06-24  Wilco  <wdijkstr@arm.com>
11698         * sysdeps/arm/feholdexcpt.c (feholdexcept): Remove space.
11699         * sysdeps/arm/fesetenv.c (fesetenv): Remove space.
11700         * sysdeps/arm/fesetround.c (fesetround): Remove space.
11701         * sysdeps/arm/fraiseexcpt.c (feraiseexcept): Remove space.
11703 2014-06-24  Wilco  <wdijkstr@arm.com>
11705         [BZ #16918]
11706         * sysdeps/arm/feupdateenv.c (feupdateenv):
11707         Rewrite to reduce FPSCR accesses and fix return value.
11709 2014-06-24  Wilco  <wdijkstr@arm.com>
11711         * sysdeps/arm/fclrexcpt.c (feclearexcept):
11712         Optimize to avoid unnecessary FPSCR writes.
11713         * sysdeps/arm/fedisblxcpt.c (fedisableexcept): Likewise.
11714         * sysdeps/arm/feenablxcpt.c (feenableexcept): Likewise.
11715         * sysdeps/arm/fsetexcptflg.c (fesetexceptflag): Likewise.
11716         * sysdeps/arm/setfpucw.c (__setfpucw): Likewise.
11718 2014-06-24  Wilco  <wdijkstr@arm.com>
11720         * sysdeps/arm/fegetround.c (fegetround): Call get_rounding_mode.
11721         * sysdeps/arm/feholdexcpt.c (feholdexcept): Call libc_feholdexcept_vfp.
11722         * sysdeps/arm/fesetround.c (fesetround): Call libc_fesetround_vfp.
11723         * sysdeps/arm/fgetexcptflg.c (fegetexceptflag):
11724         Call libc_fetestexcept_vfp.
11725         * sysdeps/arm/ftestexcept.c (fetestexcept): Call libc_fetestexcept_vfp.
11726         * sysdeps/arm/fenv_private.h: Move libc_*_vfp functions outside of
11727         __SOFTFP__ ifdef so that they can be built for softfp.
11729 2014-06-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
11731         * sysdeps/x86/nptl/elide.h (elision_adapt): Make first
11732         argument type signed char.
11734         * Makerules (check-abi): Dump diff of symlist if the test
11735         fails.
11737 2014-06-23  Roland McGrath  <roland@hack.frob.com>
11739         * sysdeps/generic/get-rounding-mode.h: Include <stdlib.h> before
11740         using abort.
11742         * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs):
11743         Remove unused variable ST.
11745 2014-06-23  Joseph Myers  <joseph@codesourcery.com>
11747         [BZ #16354]
11748         [BZ #17061]
11749         * sysdeps/ieee754/dbl-64/e_cosh.c (__ieee754_cosh): Check for
11750         small arguments before calling __expm1.
11751         * sysdeps/ieee754/flt-32/e_coshf.c (__ieee754_coshf): Check for
11752         small arguments before calling __expm1f.
11753         * sysdeps/ieee754/ldbl-128/e_coshl.c (__ieee754_coshl): Check for
11754         small arguments before calling __expm1l.
11755         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl):
11756         Likewise.
11757         * sysdeps/ieee754/ldbl-96/e_coshl.c (__ieee754_coshl): Likewise.
11758         * math/auto-libm-test-in: Add more cosh tests.  Do not allow
11759         spurious underflow for some cosh tests.
11760         * math/auto-libm-test-out: Regenerated.
11761         * sysdeps/i386/fpu/libm-test-ulps: Update.
11763         [BZ #17050]
11764         * sysdeps/ieee754/dbl-64/e_j1.c: Include <errno.h>.
11765         (__ieee754_y1): Set errno if return value overflows.
11766         * sysdeps/ieee754/flt-32/e_j1f.c: Include <errno.h>.
11767         (__ieee754_y1f): Set errno if return value overflows.
11768         * sysdeps/ieee754/ldbl-128/e_j1l.c: Include <errno.h>.
11769         (__ieee754_y1l): Set errno if return value overflows.
11770         * sysdeps/ieee754/ldbl-96/e_j1l.c: Include <errno.h>.
11771         (__ieee754_y1l): Set errno if return value overflows.
11772         * math/auto-libm-test-in: Add more tests of y0, y1 and yn.
11773         * math/auto-libm-test-out: Regenerated.
11775         * math/gen-auto-libm-tests.c: Document use of
11776         ignore-zero-inf-sign.
11777         (input_flag_type): Add value flag_ignore_zero_inf_sign.
11778         (input_flags): Add ignore-zero-inf-sign.
11779         (output_for_one_input_case): Handle flag_ignore_zero_inf_sign.
11780         * math/gen-libm-test.pl (generate_testfile): Handle
11781         ignore-zero-inf-sign.
11782         * math/auto-libm-test-in: Mark some cpow tests with
11783         ignore-zero-inf-sign and some with xfail-rounding.
11784         * math/auto-libm-test-out: Regenerated.
11785         * math/libm-test.inc (cpow_test): Use ALL_RM_TEST.
11786         * sysdeps/i386/fpu/libm-test-ulps: Update.
11787         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11789         [BZ #16315]
11790         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Ensure possibly
11791         overflowing or underflowing operations take place with sign of
11792         result.
11793         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
11794         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
11795         * sysdeps/ieee754/dbl-64/e_pow.c: Include <math.h>.
11796         (__ieee754_pow): Recompute overflowing and underflowing results in
11797         original rounding mode.
11798         * sysdeps/x86/fpu/powl_helper.c: Include <stdbool.h>.
11799         (__powl_helper): Allow negative argument X and scale negated value
11800         as needed.  Avoid passing value outside [-1, 1] to f2xm1.
11801         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Ensure possibly
11802         overflowing or underflowing operations take place with sign of
11803         result.
11804         * sysdeps/x86_64/fpu/multiarch/e_pow.c [HAVE_FMA4_SUPPORT]:
11805         Include <math.h>.
11806         * math/auto-libm-test-in: Add more tests of pow.
11807         * math/auto-libm-test-out: Regenerated.
11808         * math/libm-test.inc (pow_test): Use ALL_RM_TEST.
11809         (pow_tonearest_test_data): Remove.
11810         (pow_test_tonearest): Likewise.
11811         (pow_towardzero_test_data): Likewise.
11812         (pow_test_towardzero): Likewise.
11813         (pow_downward_test_data): Likewise.
11814         (pow_test_downward): Likewise.
11815         (pow_upward_test_data): Likewise.
11816         (pow_test_upward): Likewise.
11817         (main): Don't call removed functions.
11818         * sysdeps/i386/fpu/libm-test-ulps: Update.
11819         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11821 2014-06-23  Roland McGrath  <roland@hack.frob.com>
11823         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/c++-types.data:
11824         Moved ...
11825         * sysdeps/unix/sysv/linux/powerpc/powerpc32/c++-types.data: ... here.
11826         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
11827         Moved ...
11828         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist: ... here.
11829         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libm.abilist:
11830         Moved ...
11831         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: ... here.
11832         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/localplt.data:
11833         Moved ...
11834         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data: ... here.
11835         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/c++-types.data:
11836         File removed.
11837         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/ld.abilist:
11838         File removed.
11839         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libBrokenLocale.abilist:
11840         File removed.
11841         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libanl.abilist:
11842         File removed.
11843         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libcrypt.abilist:
11844         File removed.
11845         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libdl.abilist:
11846         File removed.
11847         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libnsl.abilist:
11848         File removed.
11849         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
11850         File removed.
11851         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libresolv.abilist:
11852         File removed.
11853         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/librt.abilist:
11854         File removed.
11855         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libthread_db.abilist:
11856         File removed.
11857         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libutil.abilist:
11858         File removed.
11859         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/ld.abilist:
11860         Moved ...
11861         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ld.abilist: ... here.
11862         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libBrokenLocale.abilist:
11863         Moved ...
11864         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libBrokenLocale.abilist:
11865         ... here.
11866         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libanl.abilist:
11867         Moved ...
11868         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libanl.abilist: ... here.
11869         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libcrypt.abilist:
11870         Moved ...
11871         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libcrypt.abilist: ... here.
11872         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libdl.abilist:
11873         Moved ...
11874         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libdl.abilist: ... here.
11875         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libnsl.abilist:
11876         Moved ...
11877         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libnsl.abilist: ... here.
11878         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libpthread.abilist:
11879         Moved ...
11880         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist: ... here.
11881         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libresolv.abilist:
11882         Moved ...
11883         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libresolv.abilist: ... here.
11884         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/librt.abilist:
11885         Moved ...
11886         * sysdeps/unix/sysv/linux/powerpc/powerpc32/librt.abilist: ... here.
11887         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libthread_db.abilist: Moved ...
11888         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libthread_db.abilist:
11889         ... here.
11890         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libutil.abilist:
11891         Moved ...
11892         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libutil.abilist: ... here.
11893         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libc.abilist:
11894         Moved ...
11895         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
11896         ... here.
11897         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libm.abilist:
11898         Moved ...
11899         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
11900         ... here.
11901         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
11902         Moved ...
11903         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data:
11904         ... here.
11905         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/c++-types.data:
11906         Moved ...
11907         * sysdeps/unix/sysv/linux/powerpc/powerpc64/c++-types.data: ... here.
11908         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist:
11909         Moved ...
11910         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld-le.abilist: ... here.
11911         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist: Moved ...
11912         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld.abilist: ... here.
11913         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist:
11914         Moved ...
11915         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale-le.abilist:
11916         ... here.
11917         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale.abilist:
11918         Moved ...
11919         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale.abilist:
11920         ... here.
11921         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist:
11922         Moved ...
11923         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl-le.abilist: ... here.
11924         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl.abilist:
11925         Moved ...
11926         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl.abilist: ... here.
11927         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist:
11928         Moved ...
11929         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist: ... here.
11930         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
11931         Moved ...
11932         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: ... here.
11933         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist:
11934         Moved ...
11935         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt-le.abilist:
11936         ... here.
11937         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist:
11938         Moved ...
11939         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt.abilist: ... here.
11940         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist:
11941         Moved ...
11942         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl-le.abilist: ... here.
11943         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl.abilist:
11944         Moved ...
11945         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl.abilist: ... here.
11946         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist:
11947         Moved ...
11948         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: ... here.
11949         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist: Moved ...
11950         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: ... here.
11951         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist:
11952         Moved ...
11953         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl-le.abilist: ... here.
11954         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl.abilist:
11955         Moved ...
11956         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl.abilist: ... here.
11957         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist:
11958         Moved ...
11959         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread-le.abilist:
11960         ... here.
11961         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
11962         Moved ...
11963         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread.abilist:
11964         ... here.
11965         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist:
11966         Moved ...
11967         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv-le.abilist:
11968         ... here.
11969         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv.abilist:
11970         Moved ...
11971         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv.abilist: ... here.
11972         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist:
11973         Moved ...
11974         * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt-le.abilist: ... here.
11975         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt.abilist:
11976         Moved ...
11977         * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt.abilist: ... here.
11978         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist:
11979         Moved ...
11980         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db-le.abilist:
11981         ... here.
11982         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db.abilist:
11983         Moved ...
11984         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db.abilist:
11985         ... here.
11986         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist:
11987         Moved ...
11988         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil-le.abilist:
11989         ... here.
11990         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil.abilist:
11991         Moved ...
11992         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil.abilist: ... here.
11993         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/localplt.data:
11994         Moved ...
11995         * sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data: ... here.
11997 2014-06-23  Will Newton  <will.newton@linaro.org>
11998             Wilco  <wdijkstr@arm.com>
12000         * sysdeps/generic/math_private.h: Add generic HAVE_RM_CTX
12001         implementation.  Include get-rounding-mode.h.
12002         [!HAVE_RM_CTX]: Define HAVE_RM_CTX to zero.
12003         [!libc_feholdsetround_noex_ctx]: Define
12004         libc_feholdsetround_noex_ctx.
12005         [!libc_feholdsetround_noexf_ctx]: Define
12006         libc_feholdsetround_noexf_ctx.
12007         [!libc_feholdsetround_noexl_ctx]: Define
12008         libc_feholdsetround_noexl_ctx.
12009         (libc_feholdsetround_ctx): New function.
12010         (libc_feresetround_ctx): New function.
12011         (libc_feholdsetround_noex_ctx): New function.
12012         (libc_feresetround_noex_ctx): New function.
12014 2014-06-23  Roland McGrath  <roland@hack.frob.com>
12016         * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h: Moved ...
12017         * sysdeps/mips/nptl/bits/pthreadtypes.h: ... here.
12018         * sysdeps/unix/sysv/linux/mips/nptl/bits/semaphore.h: Moved ...
12019         * sysdeps/mips/nptl/bits/semaphore.h: ... here.
12020         * sysdeps/unix/sysv/linux/mips/nptl/bits/local_lim.h: Moved ...
12021         * sysdeps/unix/sysv/linux/mips/bits/local_lim.h: ... here.
12023         * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h: Moved ...
12024         * sysdeps/m68k/nptl/bits/pthreadtypes.h: ... here.
12025         * sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h: Moved ...
12026         * sysdeps/m68k/nptl/bits/semaphore.h: ... here.
12027         * sysdeps/unix/sysv/linux/m68k/nptl/c++-types.data: Moved ...
12028         * sysdeps/unix/sysv/linux/m68k/c++-types.data: ... here.
12029         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/bits/atomic.h: Moved ...
12030         * sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h: ... here.
12031         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/ld.abilist: Moved ...
12032         * sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist: ... here.
12033         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libBrokenLocale.abilist:
12034         Moved ...
12035         * sysdeps/unix/sysv/linux/m68k/coldfire/libBrokenLocale.abilist:
12036         ... here.
12037         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libanl.abilist: Moved ...
12038         * sysdeps/unix/sysv/linux/m68k/coldfire/libanl.abilist: ... here.
12039         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libc.abilist: Moved ...
12040         * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: ... here.
12041         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libcrypt.abilist:
12042         Moved ...
12043         * sysdeps/unix/sysv/linux/m68k/coldfire/libcrypt.abilist: ... here.
12044         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libdl.abilist: Moved ...
12045         * sysdeps/unix/sysv/linux/m68k/coldfire/libdl.abilist: ... here.
12046         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libm.abilist: Moved ...
12047         * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: ... here.
12048         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libnsl.abilist: Moved ...
12049         * sysdeps/unix/sysv/linux/m68k/coldfire/libnsl.abilist: ... here.
12050         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libpthread.abilist:
12051         Moved ...
12052         * sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist: ... here.
12053         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libresolv.abilist:
12054         Moved ...
12055         * sysdeps/unix/sysv/linux/m68k/coldfire/libresolv.abilist: ... here.
12056         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/librt.abilist: Moved ...
12057         * sysdeps/unix/sysv/linux/m68k/coldfire/librt.abilist: ... here.
12058         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libthread_db.abilist:
12059         Moved ...
12060         * sysdeps/unix/sysv/linux/m68k/coldfire/libthread_db.abilist: ... here.
12061         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libutil.abilist: Moved ...
12062         * sysdeps/unix/sysv/linux/m68k/coldfire/libutil.abilist: ... here.
12063         * sysdeps/unix/sysv/linux/m68k/nptl/localplt.data: Moved ...
12064         * sysdeps/unix/sysv/linux/m68k/localplt.data: ... here.
12065         * sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h: Moved ...
12066         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: ... here.
12067         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/ld.abilist: Moved ...
12068         * sysdeps/unix/sysv/linux/m68k/m680x0/ld.abilist: ... here.
12069         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libBrokenLocale.abilist:
12070         Moved ...
12071         * sysdeps/unix/sysv/linux/m68k/m680x0/libBrokenLocale.abilist:
12072         ... here.
12073         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libanl.abilist: Moved ...
12074         * sysdeps/unix/sysv/linux/m68k/m680x0/libanl.abilist: ... here.
12075         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libc.abilist: Moved ...
12076         * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: ... here.
12077         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libcrypt.abilist: Moved ...
12078         * sysdeps/unix/sysv/linux/m68k/m680x0/libcrypt.abilist: ... here.
12079         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libdl.abilist: Moved ...
12080         * sysdeps/unix/sysv/linux/m68k/m680x0/libdl.abilist: ... here.
12081         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libm.abilist: Moved ...
12082         * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: ... here.
12083         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libnsl.abilist: Moved ...
12084         * sysdeps/unix/sysv/linux/m68k/m680x0/libnsl.abilist: ... here.
12085         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libpthread.abilist:
12086         Moved ...
12087         * sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist: ... here.
12088         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libresolv.abilist: Moved ...
12089         * sysdeps/unix/sysv/linux/m68k/m680x0/libresolv.abilist: ... here.
12090         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/librt.abilist: Moved ...
12091         * sysdeps/unix/sysv/linux/m68k/m680x0/librt.abilist: ... here.
12092         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libthread_db.abilist:
12093         Moved ...
12094         * sysdeps/unix/sysv/linux/m68k/m680x0/libthread_db.abilist: ... here.
12095         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libutil.abilist: Moved ...
12096         * sysdeps/unix/sysv/linux/m68k/m680x0/libutil.abilist: ... here.
12097         * sysdeps/unix/sysv/linux/m68k/nptl/sysdep-cancel.h: Moved ...
12098         * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: ... here.
12100         * sysdeps/unix/sysv/linux/sh/nptl/c++-types.data: Moved ...
12101         * sysdeps/unix/sysv/linux/sh/c++-types.data: ... here.
12102         * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: Moved ...
12103         * sysdeps/unix/sysv/linux/sh/ld.abilist: ... here.
12104         * sysdeps/unix/sysv/linux/sh/nptl/libBrokenLocale.abilist: Moved ...
12105         * sysdeps/unix/sysv/linux/sh/libBrokenLocale.abilist: ... here.
12106         * sysdeps/unix/sysv/linux/sh/nptl/libanl.abilist: Moved ...
12107         * sysdeps/unix/sysv/linux/sh/libanl.abilist: ... here.
12108         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Moved ...
12109         * sysdeps/unix/sysv/linux/sh/libc.abilist: ... here.
12110         * sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist: Moved ...
12111         * sysdeps/unix/sysv/linux/sh/libcrypt.abilist: ... here.
12112         * sysdeps/unix/sysv/linux/sh/nptl/libdl.abilist: Moved ...
12113         * sysdeps/unix/sysv/linux/sh/libdl.abilist: ... here.
12114         * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: Moved ...
12115         * sysdeps/unix/sysv/linux/sh/libm.abilist: ... here.
12116         * sysdeps/unix/sysv/linux/sh/nptl/libnsl.abilist: Moved ...
12117         * sysdeps/unix/sysv/linux/sh/libnsl.abilist: ... here.
12118         * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist: Moved ...
12119         * sysdeps/unix/sysv/linux/sh/libpthread.abilist: ... here.
12120         * sysdeps/unix/sysv/linux/sh/nptl/libresolv.abilist: Moved ...
12121         * sysdeps/unix/sysv/linux/sh/libresolv.abilist: ... here.
12122         * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: Moved ...
12123         * sysdeps/unix/sysv/linux/sh/librt.abilist: ... here.
12124         * sysdeps/unix/sysv/linux/sh/nptl/libthread_db.abilist: Moved ...
12125         * sysdeps/unix/sysv/linux/sh/libthread_db.abilist: ... here.
12126         * sysdeps/unix/sysv/linux/sh/nptl/libutil.abilist: Moved ...
12127         * sysdeps/unix/sysv/linux/sh/libutil.abilist: ... here.
12129 2014-06-23  Joseph Myers  <joseph@codesourcery.com>
12131         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_GNU]
12132         (FALLOC_FL_COLLAPSE_RANGE): New macro.
12133         [__USE_GNU] (FALLOC_FL_ZERO_RANGE): Likewise.
12134         * sysdeps/unix/sysv/linux/bits/in.h (IP_PMTUDISC_OMIT): Likewise.
12135         (IPV6_PMTUDISC_INTERFACE): Likewise.
12136         (IPV6_PMTUDISC_OMIT): Likewise.
12138 2014-06-23  Andreas Schwab  <schwab@suse.de>
12140         * nptl/sysdeps/unix/sysv/linux/mq_notify.c (init_mq_netlink):
12141         Remove unused errout label.
12143 2014-06-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12145         * sysdeps/powerpc/bits/hwcap.h [PPC_FEATURE2_HAS_VEC_CRYPTO]: New
12146         macro: hardware supports Vector Crypto instructions.
12148 2014-06-23  Will Newton  <will.newton@linaro.org>
12150         * elf/dl-lookup.c: Use __glibc_unlikely and __glibc_likely
12151         rather than __builtin_expect.
12153         * elf/dl-lookup.c (undefined_msg): Remove variable.
12154         (_dl_lookup_symbol_x): Replace undefined_msg with string
12155         literal.
12157         * elf/dl-lookup.c (do_lookup_unique): New function.
12158         (do_lookup_x): Move STB_GNU_UNIQUE handling code
12159         to a separate function.
12161 2014-06-23  Andreas Schwab  <schwab@suse.de>
12163         [BZ #17079]
12164         * nss/nss_files/files-XXX.c (get_contents): Store overflow marker
12165         before reading the next line.
12167 2014-06-23  Will Newton  <will.newton@linaro.org>
12169         * test-skeleton.c (signal_handler): Use printf and %m
12170         rather than perror.  Use printf rather than fprintf to
12171         stderr.  Use puts rather than fputs to stderr.
12172         (main): Likewise.
12174 2014-06-22  Ludovic Courtès  <ludo@gnu.org>
12176         * nscd/nscd.c (thread_info_t): Remove typedef.
12177         (thread_info): Remove variable.
12179 2014-06-21  Allan McRae  <allan@archlinux.org>
12181         * NEWS: Mention CVE-2014-4043.
12183 2014-06-20  Roland McGrath  <roland@hack.frob.com>
12185         * nptl/sysdeps/unix/sysv/linux/smp.h: Moved ...
12186         * nptl/smp.h: ... here.
12188         * nptl/sysdeps/unix/sysv/linux/rtld-lowlevel.h: File removed.
12190         * include/libc-symbols.h (HAVE_CONFIG_H, STDC_HEADERS): New macros.
12191         * catgets/Makefile (catgets-CPPFLAGS): Remove -DHAVE_CONFIG_H.
12192         * locale/Makefile (CPPFLAGS-locale-programs): Likewise.
12193         * stdlib/strtol_l.c [_LIBC] (STDC_HEADERS): Don't define it.
12195         * nptl/allocatestack.c: Include <stack-aliasing.h>.
12196         * nptl/stack-aliasing.h: New file.
12197         * sysdeps/i386/i686/stack-aliasing.h: New file.
12198         * sysdeps/i386/i686/nptl/Makefile: File removed.
12199         * sysdeps/x86_64/stack-aliasing.h: New file.
12200         * sysdeps/x86_64/nptl/Makefile
12201         (CFLAGS-pthread_create.c): Variable removed.
12203         * nptl/sysdeps/unix/sysv/linux/bits/local_lim.h: Moved ...
12204         * sysdeps/unix/sysv/linux/bits/local_lim.h: ... here, replacing the
12205         old file.
12206         * nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h: Moved ...
12207         * sysdeps/unix/sysv/linux/bits/posix_opt.h: ... here, replacing the
12208         old file.
12210 2014-06-21  Joseph Myers  <joseph@codesourcery.com>
12212         * sysdeps/unix/sysv/linux/arm/kernel-features.h
12213         (__ASSUME_SIGFRAME_V2): Remove macro.
12214         * sysdeps/unix/sysv/linux/arm/sigrestorer.S: Update comment.
12215         [!__ASSUME_SIGFRAME_V2]: Remove conditional code.
12216         (__default_sa_restorer_v2): Rename to __default_sa_restorer.
12217         (__default_rt_sa_restorer_v2): Rename to __default_rt_sa_restorer.
12218         * sysdeps/unix/sysv/linux/arm/sigaction.c (__default_sa_restorer):
12219         Declare as function.  Remove conditional macro definitions.
12220         (__default_rt_sa_restorer): Likewise.
12221         (__default_sa_restorer_v1): Remove declaration.
12222         (__default_sa_restorer_v2): Likewise.
12223         (__default_rt_sa_restorer_v1): Likewise.
12224         (__default_rt_sa_restorer_v2): Likewise.
12225         * sysdeps/unix/sysv/linux/arm/Versions (GLIBC_PRIVATE): Remove
12226         __default_sa_restorer_v1, __default_rt_sa_restorer_v1,
12227         __default_sa_restorer_v2 and __default_rt_sa_restorer_v2.
12229 2014-06-20  Roland McGrath  <roland@hack.frob.com>
12231         * sysdeps/unix/sysv/linux/sparc/Makefile [$(subdir) = nptl]
12232         (libpthread-routines): Add sysdep.
12233         * nptl/sysdeps/unix/sysv/linux/sparc/Makefile: File removed.
12234         * sysdeps/unix/sysv/linux/sparc/Versions
12235         (libpthread: GLIBC_2.3.3): New version set.
12236         * nptl/sysdeps/unix/sysv/linux/sparc/Versions: File removed.
12237         * nptl/sysdeps/unix/sysv/linux/sparc/aio_cancel.c: Moved ...
12238         * sysdeps/unix/sysv/linux/sparc/aio_cancel.c: ... here.
12239         * nptl/sysdeps/unix/sysv/linux/sparc/internaltypes.h: Moved ...
12240         * sysdeps/sparc/nptl/internaltypes.h: ... here.  Use #include_next.
12241         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_destroy.c:
12242         Moved ...
12243         * sysdeps/sparc/nptl/pthread_barrier_destroy.c: ... here.
12244         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_init.c: Moved ...
12245         * sysdeps/sparc/nptl/pthread_barrier_init.c: ... here.
12246         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_wait.c: Moved ...
12247         * sysdeps/sparc/nptl/pthread_barrier_wait.c: ... here.
12248         * nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c: Moved ...
12249         * sysdeps/sparc/nptl/sem_init.c: ... here.
12250         * nptl/sysdeps/unix/sysv/linux/sparc/sem_post.c: Moved ...
12251         * sysdeps/sparc/nptl/sem_post.c: ... here.
12252         * nptl/sysdeps/unix/sysv/linux/sparc/sem_timedwait.c: Moved ...
12253         * sysdeps/sparc/nptl/sem_timedwait.c: ... here.
12254         * nptl/sysdeps/unix/sysv/linux/sparc/sem_wait.c: Moved ...
12255         * sysdeps/sparc/nptl/sem_wait.c: ... here.
12256         * nptl/sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Moved ...
12257         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: ... here.
12258         * sysdeps/sparc/sparc32/sparcv9/Makefile [$(subdir) = nptl]
12259         (libpthread-routines): Add cpu_relax.
12260         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/Makefile:
12261         File removed.
12262         * sysdeps/unix/sysv/linux/sparc/sparc64/Versions
12263         (librt: GLIBC_2.3.3): New version set.
12264         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/Versions: File removed.
12265         * sysdeps/sparc/sparc64/nptl/Makefile: New file.
12266         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile [$(subdir) = nptl]
12267         (CFLAGS-pause.c, CFLAGS-sigsuspend.c): New variables.
12268         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/Makefile: File removed.
12269         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/lowlevellock.c: Moved ...
12270         * sysdeps/sparc/sparc32/nptl/lowlevellock.c: ... here.
12271         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pthread_barrier_wait.c:
12272         Moved ...
12273         * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: ... here.
12274         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_post.c: Moved ...
12275         * sysdeps/sparc/sparc32/nptl/sem_post.c: ... here.
12276         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_timedwait.c: Moved ...
12277         * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: ... here.
12278         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_trywait.c: Moved ...
12279         * sysdeps/sparc/sparc32/nptl/sem_trywait.c: ... here.
12280         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c: Moved ...
12281         * sysdeps/sparc/sparc32/nptl/sem_wait.c: ... here.
12282         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/cpu_relax.S:
12283         Moved ...
12284         * sysdeps/sparc/sparc32/sparcv9/nptl/cpu_relax.S: ... here.
12285         Update #include.
12286         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/pthread_barrier_wait.c:
12287         Moved ...
12288         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_barrier_wait.c: ... here.
12289         Update #include.
12290         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_post.c:
12291         Moved ...
12292         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_post.c: ... here.
12293         Update #include.
12294         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_timedwait.c:
12295         Moved ...
12296         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_timedwait.c: ... here.
12297         Update #include.
12298         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_trywait.c:
12299         Moved ...
12300         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_trywait.c: ... here.
12301         Update #include.
12302         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_wait.c:
12303         Moved ...
12304         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_wait.c: ... here.
12305         Update #include.
12306         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/cpu_relax.S: Moved ...
12307         * sysdeps/sparc/sparc64/nptl/cpu_relax.S: ... here.
12308         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Moved ...
12309         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: ... here.
12310         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Moved ...
12311         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: ... here.
12312         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c: Moved ...
12313         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c: ... here.
12314         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c: Moved ...
12315         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c: ... here.
12316         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c:
12317         Moved ...
12318         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c: ... here.
12319         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c: Moved ...
12320         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c: ... here.
12321         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c: Moved ...
12322         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c: ... here.
12324 2014-06-20  Joseph Myers  <joseph@codesourcery.com>
12326         * nptl/pthread_cond_wait.c: Include <kernel-features.h>.
12327         * nptl/pthread_rwlock_timedrdlock.c: Likewise.
12328         * nptl/pthread_rwlock_timedwrlock.c: Likewise.
12329         * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c: Likewise.
12330         * nscd/nscd.c: Likewise.
12331         * sysdeps/i386/nptl/tcb-offsets.sym: Likewise.
12332         * sysdeps/powerpc/nptl/tcb-offsets.sym: Likewise.
12333         * sysdeps/sh/nptl/tcb-offsets.sym: Likewise.
12334         * sysdeps/x86_64/nptl/tcb-offsets.sym: Likewise.
12336         * nptl/sysdeps/unix/sysv/linux/mq_notify.c: Do not include
12337         <kernel-features.h>.
12338         (init_mq_netlink): Remove conditional have_sock_cloexec
12339         definitions.  Remove code conditional on have_sock_cloexec < 0.
12340         (init_mq_netlink) [!SOCK_CLOEXEC]: Remove conditional code.
12341         (init_mq_netlink) [!__ASSUME_SOCK_CLOEXEC]: Likewise.
12342         * sysdeps/unix/sysv/linux/opensock.c: Do not include
12343         <kernel-features.h>.
12344         (__opensock) [SOCK_CLOEXEC]: Make code unconditional.
12345         (__opensock) [!__ASSUME_SOCK_CLOEXEC]: Remove conditional code.
12347 2014-06-20  H.J. Lu  <hongjiu.lu@intel.com>
12349         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
12350         Add tests for memset_chk and memset.
12352         * sysdeps/x86_64/multiarch/init-arch.h (HAS_AVX2): Defined
12353         with AVX2_Usable.
12355 2014-06-20  Maciej W. Rozycki  <macro@codesourcery.com>
12357         [BZ #16046]
12358         * elf/tst-dl-iter-static.c: New file.
12359         * elf/Makefile (tests-static): Add tst-dl-iter-static.
12361         * stdlib/tst-qsort2.c (main): Fix off-by-one argc interpretation
12362         error.
12364 2014-06-20  Joseph Myers  <joseph@codesourcery.com>
12366         * sysdeps/unix/sysv/linux/kernel-features.h
12367         (__ASSUME_F_GETOWN_EX): Remove macro.
12368         * sysdeps/unix/sysv/linux/fcntl.c: Do not include
12369         <kernel-features.h>.
12370         (miss_F_GETOWN_EX): Remove variable or macro.
12371         (do_fcntl): Do not check miss_F_GETOWN_EX.
12372         (do_fcntl) [!__ASSUME_F_GETOWN_EX]: Remove conditional code.
12374         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_AT_RANDOM):
12375         Remove macro.
12376         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard)
12377         [!__ASSUME_AT_RANDOM]: Remove conditional code.
12378         (_dl_setup_pointer_guard) [!__ASSUME_AT_RANDOM]: Likewise.
12380         * sysdeps/unix/sysv/linux/kernel-features.h
12381         (__ASSUME_ADJ_OFFSET_SS_READ): Remove macro.
12382         * sysdeps/unix/sysv/linux/adjtime.c (ADJTIME)
12383         [ADJ_OFFSET_SS_READ]: Make code unconditional.
12384         (ADJTIME) [!ADJ_OFFSET_SS_READ]: Remove conditional code.
12386 2014-06-20  Maciej W. Rozycki  <macro@codesourcery.com>
12388         [BZ #17075]
12389         * sysdeps/arm/dl-machine.h (elf_machine_rel) <R_ARM_TLS_DESC>:
12390         Fix calculation of the symbol's value.
12391         * sysdeps/arm/tst-armtlsdescloc.c: New file.
12392         * sysdeps/arm/tst-armtlsdesclocmod.c: New file.
12393         * sysdeps/arm/tst-armtlsdescextnow.c: New file.
12394         * sysdeps/arm/tst-armtlsdescextlazymod.c: New file.
12395         * sysdeps/arm/tst-armtlsdescextlazy.c: New file.
12396         * sysdeps/arm/tst-armtlsdescextnowmod.c: New file.
12397         * sysdeps/arm/Makefile (tests): Add `tst-armtlsdesc',
12398         `tst-armtlsdescextnow' and `tst-armtlsdescextlazy'.
12399         (modules-names): Add `tst-armtlsdescmod',
12400         `tst-armtlsdescextlazymod' and `tst-armtlsdescextnowmod'.
12401         (CPPFLAGS-tst-armtlsdescextnowmod.c): New variable.
12402         (CPPFLAGS-tst-armtlsdescextlazymod.c): Likewise.
12403         (CFLAGS-tst-armtlsdesclocmod.c): Likewise.
12404         (CFLAGS-tst-armtlsdescextnowmod.c): Likewise.
12405         (CFLAGS-tst-armtlsdescextlazymod.c): Likewise.
12406         (LDFLAGS-tst-armtlsdescextnowmod.so): Likewise.
12407         ($(objpfx)tst-armtlsdescloc): New dependency.
12408         ($(objpfx)tst-armtlsdescextnow): Likewise.
12409         ($(objpfx)tst-armtlsdescextlazy): Likewise.
12410         * sysdeps/arm/configure.ac: Add a check for tools' GNU descriptor
12411         TLS scheme support.
12412         * sysdeps/arm/configure: Regenerate.
12414 2014-06-20  Joseph Myers  <joseph@codesourcery.com>
12416         * include/fcntl.h (__atfct_seterrno): Remove prototype.
12417         (__atfct_seterrno_2): Likewise.
12418         * sysdeps/unix/sysv/linux/alpha/dl-fxstatat64.c: Do not include
12419         <kernel-features.h>.
12420         (__ASSUME_ATFCTS): Do not undefine and redefine.
12421         * sysdeps/unix/sysv/linux/alpha/fxstatat.c [__ASSUME_ATFCTS]
12422         (__have_atfcts): Remove conditional definition.
12423         (__fxstatat([__NR_fstatat64]: Make code unconditional.
12424         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code and code
12425         unreachable if [__ASSUME_ATFCTS].
12426         * sysdeps/unix/sysv/linux/dl-fxstatat64.c (__ASSUME_ATFCTS): Do
12427         not undefine and redefine.
12428         * sysdeps/unix/sysv/linux/faccessat.c: Do not include
12429         <kernel-features.h>.
12430         (faccessat) [__NR_faccessat]: Make code unconditional.
12431         (faccessat) [!__ASSUME_ATFCTS]: Remove conditional code.
12432         * sysdeps/unix/sysv/linux/fchmodat.c: Do not include
12433         <kernel-features.h>.
12434         (fchmodat) [__NR_fchmodat]: Make code unconditional.
12435         (fchmodat) [!__ASSUME_ATFCTS]: Remove conditional code.
12436         * sysdeps/unix/sysv/linux/fchownat.c: Do not include
12437         <kernel-features.h>.
12438         (fchownat) [__NR_fchownat]: Make code unconditional.
12439         (fchownat) [!__ASSUME_ATFCTS]: Remove conditional code.
12440         * sysdeps/unix/sysv/linux/futimesat.c: Do not include
12441         <kernel-features.h>.
12442         (futimesat) [__NR_futimesat]: Make code unconditional.
12443         (futimesat) [!__ASSUME_ATFCTS]: Remove conditional code.
12444         * sysdeps/unix/sysv/linux/fxstatat.c: Do not include
12445         <kernel-features.h>.
12446         (__fxstatat) [__NR_newfstatat]: Make code unconditional.
12447         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
12448         * sysdeps/unix/sysv/linux/fxstatat64.c: Do not include
12449         <kernel-features.h>.
12450         (__fxstatat64) [__NR_fstatat64]: Make code unconditional.
12451         (__fxstatat64) [!__ASSUME_ATFCTS]: Remove conditional code.
12452         * sysdeps/unix/sysv/linux/i386/fchownat.c: Remove file.
12453         * sysdeps/unix/sysv/linux/i386/fxstatat.c: Do not include
12454         <kernel-features.h>.
12455         (__fxstatat) [__NR_fstatat64]: Make code unconditional.
12456         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
12457         * sysdeps/unix/sysv/linux/linkat.c: Do not include
12458         <kernel-features.h>.
12459         (linkat) [__NR_linkat]: Make code unconditional.
12460         (linkat) [!__ASSUME_ATFCTS]: Remove conditional code.
12461         * sysdeps/unix/sysv/linux/m68k/fchownat.c: Remove file.
12462         * sysdeps/unix/sysv/linux/mips/mips64/fxstatat64.c: Do not include
12463         <kernel-features.h>.
12464         (__fxstatat64) [__NR_newfstatat]: Make code unconditional.
12465         (__fxstatat64) [!__ASSUME_ATFCTS]: Remove conditional code.
12466         * sysdeps/unix/sysv/linux/mkdirat.c: Do not include
12467         <kernel-features.h>.
12468         (mkdirat) [__NR_mkdirat]: Make code unconditional.
12469         (mkdirat) [!__ASSUME_ATFCTS]: Remove conditional code.
12470         * sysdeps/unix/sysv/linux/openat.c: Do not include
12471         <kernel-features.h>.
12472         [!__ASSUME_ATFCTS] (__atfct_seterrno): Remove function.
12473         [!__ASSUME_ATFCTS] (__have_atfcts): Remove variable.
12474         (OPENAT_NOT_CANCEL) [__NR_openat]: Make code unconditional.
12475         (OPENAT_NOT_CANCEL) [!__ASSUME_ATFCTS]: Remove conditional code.
12476         * sysdeps/unix/sysv/linux/powerpc/fchownat.c: Remove file.
12477         * sysdeps/unix/sysv/linux/readlinkat.c: Do not include
12478         <kernel-features.h>.
12479         (readlinkat) [__NR_readlinkat]: Make code unconditional.
12480         (readlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.  Return
12481         result of INLINE_SYSCALL directly, not via int variable.
12482         * sysdeps/unix/sysv/linux/renameat.c: Do not include
12483         <kernel-features.h>.
12484         [!__ASSUME_ATFCTS] (__atfct_seterrno_2): Remove function.
12485         (renameat) [__NR_renameat]: Make code unconditional.
12486         (renameat) [!__ASSUME_ATFCTS]: Remove conditional code.
12487         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Remove file.
12488         * sysdeps/unix/sysv/linux/sh/fchownat.c: Remove file.
12489         * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Remove file.
12490         * sysdeps/unix/sysv/linux/sparc/sparc64/dl-fxstatat64.c
12491         (__ASSUME_ATFCTS): Do not undefine and redefine.
12492         * sysdeps/unix/sysv/linux/symlinkat.c: Do not include
12493         <kernel-features.h>.
12494         (symlinkat) [__NR_symlinkat]: Make code unconditional.
12495         (symlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.
12496         * sysdeps/unix/sysv/linux/unlinkat.c: Do not include
12497         <kernel-features.h>.
12498         (unlinkat) [__NR_unlinkat]: Make code unconditional.
12499         (unlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.
12500         * sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c
12501         (__ASSUME_ATFCTS): Do not undefine and redefine.
12502         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Do not include
12503         <kernel-features.h>.
12504         (__fxstatat) [__NR_newfstatat]: Make code unconditional.
12505         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
12506         * sysdeps/unix/sysv/linux/xmknodat.c: Do not include
12507         <kernel-features.h>.
12508         (__xmknodat) [__NR_mknodat]: Make code unconditional.
12509         (__xmknodat) [!__ASSUME_ATFCTS]: Remove conditional code.
12511 2014-06-20  H.J. Lu  <hongjiu.lu@intel.com>
12513         * sysdeps/x86_64/multiarch/rtld-strlen.S: Removed.
12515 2014-06-20  Andreas Schwab  <schwab@linux-m68k.org>
12517         [BZ #17069]
12518         * posix/regcomp.c (parse_reg_exp): Deallocate partially
12519         constructed tree before returning error.
12520         * posix/bug-regexp36.c: Expand test case.
12522 2014-06-20  Stefan Liebler  <stli@linux.vnet.ibm.com>
12524         [BZ #6803]
12525         * math/libm-test.inc (scalbln_test_date):
12526         Add errno expectations.
12527         * math/w_scalblnf.c: New File.
12528         Add wrapper which checks for setting errno to ERANGE.
12529         Add weak_alias for corresponding scalbln function.
12530         * math/w_scalbln.c: Likewise.
12531         * math/w_scalblnl.c: Likewise.
12532         * math/Makefile (libm-calls): Add w_scalbln.
12533         * sysdeps/ieee754/flt-32/s_scalblnf.c:
12534         Remove weak_alias for corresponding scalbln function.
12535         * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
12536         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: Likewise.
12537         * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
12538         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
12539         * sysdeps/sparc/sparc64/soft-fp/s_scalblnl.c: Likewise.
12540         * sysdeps/i386/fpu/s_scalbnf.S: Likewise.
12541         * sysdeps/i386/fpu/s_scalbn.S: Likewise.
12542         * sysdeps/i386/fpu/s_scalbnl.S: Likewise.
12543         * sysdeps/m68k/m680x0/fpu/s_scalbn.c: Likewise.
12544         * sysdeps/ieee754/ldbl-64-128/s_scalblnl.c:
12545         Remove long_double_symbol for scalblnl function in libm, libc.
12546         * sysdeps/ieee754/ldbl-64-128/w_scalblnl.c: New File.
12547         Add wrapper which checks for setting errno to ERANGE.
12548         Add long_double_symbol for scalblnl function in libm, libc.
12549         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c:
12550         Remove long_double_symbol for scalblnl in libm.
12551         * sysdeps/ieee754/ldbl-128ibm/w_scalblnl.c: New File.
12552         Add wrapper which checks for setting errno to ERANGE.
12553         Add long_double_symbol for scalblnl function in libm.
12554         * sysdeps/ia64/fpu/w_scalblnf.c: New File.
12555         Do not use wrapper because of own implementation.
12557 2014-06-19  H.J. Lu  <hongjiu.lu@intel.com>
12559         * sysdeps/x86/nptl/bits/pthreadtypes.h (pthread_rwlock_t): Use
12560         3 bytes for __pad1 for x32.
12561         (__PTHREAD_RWLOCK_ELISION_EXTRA): Likewise.
12563 2014-06-19  Ling Ma  <ling.ml@alibaba-inc.com>
12564             H.J. Lu  <hongjiu.lu@intel.com>
12566         * sysdeps/x86_64/multiarch/Makefile: Add memset-avx2.
12567         * sysdeps/x86_64/multiarch/memset-avx2.S: New file.
12568         * sysdeps/x86_64/multiarch/memset.S: Likewise.
12569         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
12570         * sysdeps/x86_64/multiarch/rtld-memset.S: Likewise.
12572 2014-06-19  Andreas Schwab  <schwab@linux-m68k.org>
12574         [BZ #17069]
12575         * posix/regcomp.c (parse_expression): Deallocate partially
12576         constructed tree before returning error.
12577         * posix/Makefile.c (tests): Add bug-regex36.
12578         (generated): Add bug-regex36.mtrace.
12579         (tests-special): Add $(objpfx)bug-regex36-mem.out
12580         (bug-regex36-ENV): New variable.
12581         ($(objpfx)bug-regex36-mem.out): New rule.
12582         * posix/bug-regex36.c: New file.
12584 2014-06-19  Will Newton  <will.newton@linaro.org>
12586         * malloc/malloc.c (systrim): If extra is zero then return
12587         early.
12589 2014-06-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
12591         * benchtests/Makefile ($(objpfx)bench-%.c): Remove $(.).
12593 2014-06-19  Richard Earnshaw  <rearnsha@arm.com>
12595         * sysdeps/aarch64/strchr.S: New file.
12597 2014-06-18  Joseph Myers  <joseph@codesourcery.com>
12599         [BZ #17022]
12600         * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Do not subtract 1
12601         from arguments -2 or below.
12602         * sysdeps/i386/i686/fpu/e_logl.S (__ieee754_logl): Likewise.
12603         * sysdeps/x86_64/fpu/e_logl.S (__ieee754_logl): Likewise.
12605 2014-06-18  Andreas Schwab  <schwab@suse.de>
12607         [BZ #17062]
12608         * posix/fnmatch_loop.c (FCT): Rerrange loop for skipping over rest
12609         of a bracket expr not to run off the end of the string.
12610         * posix/Makefile (tests): Add tst-fnmatch3.
12611         * posix/tst-fnmatch3.c: New file.
12613 2014-06-18  Joseph Myers  <joseph@codesourcery.com>
12615         * elf/Makefile ($(objpfx)tst-unused-dep.out): Use $(rtld-prefix).
12616         * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
12617         [$(cross-compiling) = no]: Likewise.
12618         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
12619         [$(cross-compiling) = no]: Likewise.
12621 2014-16-17  Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
12623         [BZ #17031]
12624         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Consider the low
12625         double, adjusted for any remainder from the high double.
12626         * math/libm-test.inc (nearbyint): Add tests.
12627         (rint): Likewise.
12629 2014-06-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12631         * nptl/sysdeps/powerpc/Makefile: Moved ...
12632         * sysdeps/powerpc/nptl/Makefile: ... here.
12633         * nptl/sysdeps/powerpc/pthread_spin_lock.c: Moved ...
12634         * sysdeps/powerpc/nptl/pthread_spin_lock.c: .. here.
12635         * nptl/sysdeps/powerpc/pthread_spin_trylock.c: Moved ...
12636         * sysdeps/powerpc/nptl/pthread_spin_trylock.c: ... here.
12637         * nptl/sysdeps/powerpc/pthreaddef.h: Moved ...
12638         * sysdeps/powerpc/nptl/pthreaddef.h: ... here.
12639         * nptl/sysdeps/powerpc/tcb-offsets.sym: Moved ...
12640         * sysdeps/powerpc/nptl/tcb-offsets.sym: ... here.
12641         * nptl/sysdeps/powerpc/tls.h: Moved ...
12642         * sysdeps/powerpc/nptl/tls.h: ... here.
12644 2014-06-16  Joseph Myers  <joseph@codesourcery.com>
12646         [BZ #16681]
12647         * sysdeps/i386/fpu/s_ceil.S (__ceil): Add CFI.
12648         * sysdeps/i386/fpu/s_ceilf.S (__ceilf): Likewise.
12649         * sysdeps/i386/fpu/s_ceill.S (__ceill): Likewise.
12650         * sysdeps/i386/fpu/s_floor.S (__floor): Likewise.
12651         * sysdeps/i386/fpu/s_floorf.S (__floorf): Likewise.
12652         * sysdeps/i386/fpu/s_floorl.S (__floorl): Likewise.
12653         * sysdeps/i386/fpu/s_trunc.S (__trunc): Likewise.
12654         * sysdeps/i386/fpu/s_truncf.S (__truncf): Likewise.
12655         * sysdeps/i386/fpu/s_truncl.S (__truncl): Likewise.
12657 2014-06-17  Andreas Schwab  <schwab@linux-m68k.org>
12659         * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
12661 2014-06-16  Andreas Schwab  <schwab@linux-m68k.org>
12663         * sysdeps/m68k/m680x0/bits/huge_vall.h: Fix missing space after
12664         defined operator.
12666         * scripts/cross-test-ssh.sh (timeoutfactor): Default to
12667         $TIMEOUTFACTOR.
12669 2014-06-16  Florian Weimer  <fweimer@redhat.com>
12671         [BZ #17058]
12672         * nptl/tst-setuid2.c (do_test): Fix tautological comparison in
12673         non-executed part of the test.
12675 2014-06-16  Andreas Schwab  <schwab@suse.de>
12677         * string/bits/string2.h (strdup, strndup): Update feature guard.
12679 2014-06-14  David S. Miller  <davem@davemloft.net>
12681         * sysdeps/sparc/fpu/libm-test-ulps: Update.
12683 2014-06-14  Andreas Schwab  <schwab@linux-m68k.org>
12685         * sysdeps/unix/sysv/linux/m68k/clone.S: Deconditionalize the code
12686         that was previously under [RESET_PID].
12687         * sysdeps/unix/sysv/linux/m68k/nptl/clone.S: Remove file.
12689         * sysdeps/unix/sysv/linux/m68k/pt-vfork.c: New file.
12690         * sysdeps/unix/sysv/linux/m68k/nptl/pt-vfork.S: Remove file.
12691         * sysdeps/unix/sysv/linux/m68k/vfork.S: Include <tcb-offsets.h>.
12692         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
12693         (__libc_vfork): New strong alias.
12694         * sysdeps/unix/sysv/linux/m68k/nptl/vfork.S: Remove file.
12696 2014-06-14 Andi Kleen  <ak@linux.intel.com>
12698         * sysdeps/generic/elide.h: New file.
12700 2014-06-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
12702         * Makefile (installed-headers): Adjust path of pthread.h header.
12704 2014-06-13  Roland McGrath  <roland@hack.frob.com>
12706         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Moved ...
12707         * sysdeps/s390/nptl/bits/pthreadtypes.h: ... here.
12708         * nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h: Moved ...
12709         * sysdeps/s390/nptl/bits/semaphore.h: ... here.
12711         * nptl/sysdeps/s390/Makefile: Moved ...
12712         * sysdeps/s390/nptl/Makefile: ... here.
12713         * nptl/sysdeps/s390/pthread_spin_init.c: Moved ...
12714         * sysdeps/s390/nptl/pthread_spin_init.c: ... here.
12715         * nptl/sysdeps/s390/pthread_spin_lock.c: Moved ...
12716         * sysdeps/s390/nptl/pthread_spin_lock.c: ... here.
12717         * nptl/sysdeps/s390/pthread_spin_trylock.c: Moved ...
12718         * sysdeps/s390/nptl/pthread_spin_trylock.c: ... here.
12719         * nptl/sysdeps/s390/pthread_spin_unlock.c: Moved ...
12720         * sysdeps/s390/nptl/pthread_spin_unlock.c: ... here.
12721         * nptl/sysdeps/s390/pthreaddef.h: Moved ...
12722         * sysdeps/s390/nptl/pthreaddef.h: ... here.
12723         * nptl/sysdeps/s390/tcb-offsets.sym: Moved ...
12724         * sysdeps/s390/nptl/tcb-offsets.sym: ... here.
12725         * nptl/sysdeps/s390/tls.h: Moved ...
12726         * sysdeps/s390/nptl/tls.h: ... here.
12728         * sysdeps/unix/sysv/linux/s390/arch-fork.h: New file.
12729         * nptl/sysdeps/unix/sysv/linux/s390/fork.c: File removed.
12731 2014-06-13  David S. Miller  <davem@davemloft.net>
12733         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S: Delete.
12734         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pt-vfork.S: Delete.
12735         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: Moved ...
12736         * sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: ... here.
12737         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S: Delete.
12738         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/pt-vfork.S: Delete.
12739         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: Moved ...
12740         * sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: ... here.
12741         * sysdeps/unix/sysv/linux/sparc/fork.S: Delete.
12742         * sysdeps/unix/sysv/linux/sparc/pt-vfork.S: New file.
12743         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__thread_start):
12744         Remove RESET_PID cpp guards.
12745         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__thread_start):
12746         Remove RESET_PID cpp guards.
12747         * sysdeps/unix/sysv/linux/sparc/vfork.S: Delete.
12749 2014-06-13  Andreas Schwab  <schwab@linux-m68k.org>
12751         * sysdeps/m68k/jmpbuf-unwind.h (_JMPBUF_UNWINDS, _jmpbuf_sp): Cast
12752         __sp to uintptr_t.
12754 2014-06-13  Andi Kleen  <ak@linux.intel.com>
12756         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: Remove.
12757         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S: dito.
12758         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S: dito.
12759         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: dito.
12760         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: dito.
12761         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S: dito.
12762         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S: dito.
12763         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S: dito.
12764         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S: dito.
12765         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S: dito.
12766         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S: dito.
12767         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S: dito.
12768         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S: dito.
12769         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S: dito.
12770         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S: dito.
12771         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: dito.
12772         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S: dito.
12773         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S: dito.
12774         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: dito.
12775         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: dito.
12777         * nptl/pthread_rwlock_rdlock.c: Include elide.h.
12778         (pthread_rwlock_rdlock): Add elision.
12779         * nptl/pthread_rwlock_wrlock.c: Include elide.h.
12780         (pthread_rwlock_wrlock): Add elision.
12781         * nptl/pthread_rwlock_trywrlock.c: Include elide.h.
12782         (pthread_rwlock_trywrlock): Add elision.
12783         * nptl/pthread_rwlock_tryrdlock.c: Include elide.h.
12784         (pthread_rwlock_tryrdlock): Add elision.
12785         * nptl/pthread_rwlock_unlock.c: Include elide.h.
12786         (pthread_rwlock_tryrdlock): Add elision unlock.
12787         * nptl/sysdeps/pthread/pthread.h:
12788         (__PTHREAD_RWLOCK_ELISION_EXTRA): Handle new define
12789         (PTHREAD_RWLOCK_INITIALIZER,
12790         PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP):
12791         Handle new elision field.
12792         * sysdeps/x86/nptl/elide.h: New file. Add generic elision macros.
12793         * sysdeps/arm/nptl/bits/pthreadtypes.h
12794         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
12795         * sysdeps/sh/nptl/bits/pthreadtypes.h
12796         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
12797         * sysdeps/tile/nptl/bits/pthreadtypes.h
12798         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
12799         * sysdeps/a/nptl/bits/pthreadtypes.h
12800         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
12801         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h
12802         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
12803         * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h
12804         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
12805         * sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h
12806         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
12807         * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h
12808         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
12809         * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h
12810         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
12811         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h
12812         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
12813         * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h
12814         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
12815         * sysdeps/unix/sysv/linux/powerpc/nptl/bits/pthreadtypes.h
12816         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
12817         * sysdeps/unix/sysv/linux/x86/elision-conf.c:
12818         (elision_init): Set try_xbegin to zero when no RTM.
12819         * sysdeps/x86/nptl/bits/pthreadtypes.h
12820         (pthread_rwlock_t): Change __pad1 to __rwelision.
12821         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
12823 2014-06-13  Andi Kleen  <ak@linux.intel.com>
12825         * nptl/pthread_rwlock_rdlock (__pthread_rwlock_rdlock):
12826         Split into __do_pthread_rwlock_rdlock and __pthread_rwlock_rdlock.
12827         * nptl/pthread_rwlock_wrlock (__pthread_rwlock_wrlock):
12828         Split into __do_pthread_rwlock_wrlock and __pthread_wrlock_rdlock.
12830 2014-06-13  Meador Inge  <meadori@codesourcery.com>
12832         [BZ #16996]
12833         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Ensure
12834         that the cached result has been set before returning it.
12836 2014-06-12  Roland McGrath  <roland@hack.frob.com>
12838         * nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h: Moved ...
12839         * sysdeps/sparc/nptl/bits/pthreadtypes.h: ... here.
12840         * nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h: Moved ...
12841         * sysdeps/sparc/nptl/bits/semaphore.h: ... here.
12842         * nptl/sysdeps/unix/sysv/linux/sparc/bits/local_lim.h: Moved ...
12843         * sysdeps/unix/sysv/linux/sparc/bits/local_lim.h: ... here.
12845         * nptl/sysdeps/sparc/Makefile: Moved ...
12846         * sysdeps/sparc/nptl/Makefile: ... here.
12847         * nptl/sysdeps/sparc/tcb-offsets.sym: Moved ...
12848         * sysdeps/sparc/nptl/tcb-offsets.sym: ... here.
12849         * nptl/sysdeps/sparc/tls.h: Moved ...
12850         * sysdeps/sparc/nptl/tls.h: ... here.
12851         * nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S: Moved ...
12852         * sysdeps/sparc/sparc32/nptl/pthread_spin_lock.S: ... here.
12853         * nptl/sysdeps/sparc/sparc32/pthread_spin_trylock.S: Moved ...
12854         * sysdeps/sparc/sparc32/nptl/pthread_spin_trylock.S: ... here.
12855         * nptl/sysdeps/sparc/sparc32/pthreaddef.h: Moved ...
12856         * sysdeps/sparc/sparc32/nptl/pthreaddef.h: ... here.
12857         * nptl/sysdeps/sparc/sparc64/pthread_spin_init.c: Moved ...
12858         * sysdeps/sparc/sparc64/nptl/pthread_spin_init.c: ... here.
12859         * nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S: Moved ...
12860         * sysdeps/sparc/sparc64/nptl/pthread_spin_lock.S: ... here.
12861         * nptl/sysdeps/sparc/sparc64/pthread_spin_trylock.S: Moved ...
12862         * sysdeps/sparc/sparc64/nptl/pthread_spin_trylock.S: ... here.
12863         * nptl/sysdeps/sparc/sparc64/pthread_spin_unlock.S: Moved ...
12864         * sysdeps/sparc/sparc64/nptl/pthread_spin_unlock.S: ... here.
12865         * nptl/sysdeps/sparc/sparc64/pthreaddef.h: Moved ...
12866         * sysdeps/sparc/sparc64/nptl/pthreaddef.h: ... here.
12867         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: Moved ...
12868         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_init.c: ... here.
12869         Update #include.
12870         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: Moved ...
12871         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_lock.S: ... here.
12872         Update #include.
12873         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: Moved ...
12874         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_trylock.S: ... here.
12875         Update #include.
12876         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.S: Moved ...
12877         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: ... here.
12878         Update #include.
12880         * nptl/sysdeps/sparc/tls.h (TLS_DEFINE_INIT_TP): New macro.
12882         * sysdeps/unix/sysv/linux/sparc/arch-fork.h: New file.
12883         * nptl/sysdeps/unix/sysv/linux/sparc/fork.c: File removed.
12885         * sysdeps/pthread/posix-timer.h: Include <list.h>.
12886         (struct list_links): Type removed.
12887         (struct thread_node, struct timer_node): Replace struct list_links
12888         with struct list_head.
12889         (list_unlink_ip): Likewise.
12890         * sysdeps/pthread/timer_routines.c
12891         (timer_free_list, thread_free_list, thread_active_list): Likewise.
12892         (list_append, list_insbefore): Likewise.
12893         (list_init): Function removed.
12894         (thread_init, init_module): Use INIT_LIST_HEAD instead.
12895         * sysdeps/nptl/Makefile: Move tst-timer bits to ...
12896         * sysdeps/pthread/Makefile: ... here, new file.
12898         * nptl/sysdeps/unix/sysv/linux/Implies: Moved ...
12899         * sysdeps/nptl/Implies: ... here.
12900         * sysdeps/unix/sysv/linux/Implies: Add nptl.
12901         * nptl/sysdeps/pthread/list.h: Moved ...
12902         * include/list.h: ... here.
12903         * nptl/sysdeps/pthread/createthread.c: Moved ...
12904         * nptl/createthread.c: ... here.
12905         * nptl/sysdeps/unix/sysv/linux/createthread.c: Update #include.
12906         * nptl/sysdeps/pthread/pt-longjmp.c: Moved ...
12907         * nptl/pt-longjmp.c: ... here.
12908         * nptl/sysdeps/pthread/Makefile: Moved ...
12909         * sysdeps/nptl/Makefile: ... here.
12910         * nptl/sysdeps/pthread/Subdirs: Moved ...
12911         * sysdeps/nptl/Subdirs: ... here.
12912         * nptl/sysdeps/pthread/aio_misc.h: Moved ...
12913         * sysdeps/nptl/aio_misc.h: ... here.
12914         * nptl/sysdeps/pthread/bits/libc-lock.h: Moved ...
12915         * sysdeps/nptl/bits/libc-lock.h: ... here.
12916         * nptl/sysdeps/pthread/bits/libc-lockP.h: Moved ...
12917         * sysdeps/nptl/bits/libc-lockP.h: ... here.
12918         * nptl/sysdeps/pthread/bits/stdio-lock.h: Moved ...
12919         * sysdeps/nptl/bits/stdio-lock.h: ... here.
12920         * nptl/sysdeps/pthread/configure: Moved ...
12921         * sysdeps/nptl/configure: ... here.
12922         * nptl/sysdeps/pthread/configure.ac: Moved ...
12923         * sysdeps/nptl/configure.ac: ... here.
12924         * nptl/sysdeps/pthread/gai_misc.h: Moved ...
12925         * sysdeps/nptl/gai_misc.h: ... here.
12926         * nptl/sysdeps/pthread/librt-cancellation.c: Moved ...
12927         * sysdeps/nptl/librt-cancellation.c: ... here.
12928         * nptl/sysdeps/pthread/malloc-machine.h: Moved ...
12929         * sysdeps/nptl/malloc-machine.h: ... here.
12930         * nptl/sysdeps/pthread/pthread-functions.h: Moved ...
12931         * sysdeps/nptl/pthread-functions.h: ... here.
12932         * nptl/sysdeps/pthread/pthread.h: Moved ...
12933         * sysdeps/nptl/pthread.h: ... here.
12934         * nptl/sysdeps/pthread/setxid.h: Moved ...
12935         * sysdeps/nptl/setxid.h: ... here.
12936         * nptl/sysdeps/pthread/sigfillset.c: Moved ...
12937         * sysdeps/nptl/sigfillset.c: ... here.
12938         * nptl/sysdeps/pthread/tcb-offsets.h: Moved ...
12939         * sysdeps/nptl/tcb-offsets.h: ... here.
12940         * nptl/sysdeps/pthread/tst-mqueue8x.c: Moved ...
12941         * sysdeps/nptl/tst-mqueue8x.c: ... here.
12942         * nptl/sysdeps/pthread/unwind-forcedunwind.c: Moved ...
12943         * sysdeps/nptl/unwind-forcedunwind.c: ... here.
12944         * nptl/sysdeps/pthread/allocalim.h: Moved ...
12945         * sysdeps/pthread/allocalim.h: ... here.
12946         * nptl/sysdeps/pthread/bits/sigthread.h: Moved ...
12947         * sysdeps/pthread/bits/sigthread.h: ... here.
12948         * nptl/sysdeps/pthread/flockfile.c: Moved ...
12949         * sysdeps/pthread/flockfile.c: ... here.
12950         * nptl/sysdeps/pthread/ftrylockfile.c: Moved ...
12951         * sysdeps/pthread/ftrylockfile.c: ... here.
12952         * nptl/sysdeps/pthread/funlockfile.c: Moved ...
12953         * sysdeps/pthread/funlockfile.c: ... here.
12954         * nptl/sysdeps/pthread/posix-timer.h: Moved ...
12955         * sysdeps/pthread/posix-timer.h: ... here.
12956         * nptl/sysdeps/pthread/timer_create.c: Moved ...
12957         * sysdeps/pthread/timer_create.c: ... here.
12958         * nptl/sysdeps/pthread/timer_delete.c: Moved ...
12959         * sysdeps/pthread/timer_delete.c: ... here.
12960         * nptl/sysdeps/pthread/timer_getoverr.c: Moved ...
12961         * sysdeps/pthread/timer_getoverr.c: ... here.
12962         * nptl/sysdeps/pthread/timer_gettime.c: Moved ...
12963         * sysdeps/pthread/timer_gettime.c: ... here.
12964         * nptl/sysdeps/pthread/timer_routines.c: Moved ...
12965         * sysdeps/pthread/timer_routines.c: ... here.
12966         * nptl/sysdeps/pthread/timer_settime.c: Moved ...
12967         * sysdeps/pthread/timer_settime.c: ... here.
12968         * nptl/sysdeps/pthread/tst-timer.c: Moved ...
12969         * sysdeps/pthread/tst-timer.c: ... here.
12970         * nptl/sysdeps/pthread/pthread_sigmask.c: Moved ...
12971         * sysdeps/unix/sysv/linux/pthread_sigmask.c: ... here.
12973         * sysdeps/unix/sysv/linux/sigprocmask.c: Include <nptl/pthreadP.h>.
12974         * nptl/sysdeps/pthread/sigprocmask.c: File removed.
12976         * nptl/sysdeps/i386/i486/pthread_spin_trylock.S: Moved ...
12977         * sysdeps/i386/i486/nptl/pthread_spin_trylock.S: ... here.
12978         * nptl/sysdeps/i386/i586/pthread_spin_trylock.S: Moved ...
12979         * sysdeps/i386/i586/nptl/pthread_spin_trylock.S: ... here.
12980         Update #include target.
12981         * nptl/sysdeps/i386/i686/Makefile: Moved ...
12982         * sysdeps/i386/i686/nptl/Makefile: ... here.
12983         * nptl/sysdeps/i386/i686/pthread_spin_trylock.S: Moved ...
12984         * sysdeps/i386/i686/nptl/pthread_spin_trylock.S: ... here.
12985         Update #include target.
12986         * nptl/sysdeps/i386/i686/tls.h: Moved ...
12987         * sysdeps/i386/i686/nptl/tls.h: ... here.  Use #include_next.
12988         * nptl/sysdeps/i386/Makefile: Moved ...
12989         * sysdeps/i386/nptl/Makefile: ... here.
12990         * nptl/sysdeps/i386/pthread_spin_init.c: Moved ...
12991         * sysdeps/i386/nptl/pthread_spin_init.c: ... here.
12992         * sysdeps/x86_64/nptl/pthread_spin_init.c: Update #include target.
12993         * nptl/sysdeps/i386/pthread_spin_lock.S: Moved ...
12994         * sysdeps/i386/nptl/pthread_spin_lock.S: ... here.
12995         * nptl/sysdeps/i386/pthread_spin_unlock.S: Moved ...
12996         * sysdeps/i386/nptl/pthread_spin_unlock.S: ... here.
12997         * nptl/sysdeps/i386/pthreaddef.h: Moved ...
12998         * sysdeps/i386/nptl/pthreaddef.h: ... here.
12999         * nptl/sysdeps/i386/tcb-offsets.sym: Moved ...
13000         * sysdeps/i386/nptl/tcb-offsets.sym: ... here.
13001         * nptl/sysdeps/i386/tls.h: Moved ...
13002         * sysdeps/i386/nptl/tls.h: ... here.
13004         * sysdeps/sh/Makefile [$(subdir) = csu]
13005         (gen-as-const-headers): Add tcb-offsets.sym.
13006         * nptl/sysdeps/sh/Makefile: File removed.
13007         * nptl/sysdeps/sh/pthread_spin_init.c: Moved ...
13008         * sysdeps/sh/nptl/pthread_spin_init.c: ... here.
13009         * nptl/sysdeps/sh/pthread_spin_lock.c: Moved ...
13010         * sysdeps/sh/nptl/pthread_spin_lock.c: ... here.
13011         * nptl/sysdeps/sh/pthread_spin_trylock.S: Moved ...
13012         * sysdeps/sh/nptl/pthread_spin_trylock.S: ... here.
13013         * nptl/sysdeps/sh/pthread_spin_unlock.S: Moved ...
13014         * sysdeps/sh/nptl/pthread_spin_unlock.S: ... here.
13015         * nptl/sysdeps/sh/pthreaddef.h: Moved ...
13016         * sysdeps/sh/nptl/pthreaddef.h: ... here.
13017         * nptl/sysdeps/sh/tcb-offsets.sym: Moved ...
13018         * sysdeps/sh/nptl/tcb-offsets.sym: ... here.
13019         * nptl/sysdeps/sh/tls.h: Moved ...
13020         * sysdeps/sh/nptl/tls.h: ... here.
13021         * nptl/sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: Moved ...
13022         * sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: ... here.
13023         * nptl/sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h: Moved ...
13024         * sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h: ... here.
13025         * nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.S: Moved ...
13026         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: ... here.
13027         * nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.h: Moved ...
13028         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: ... here.
13029         * nptl/sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: Moved ...
13030         * sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: ... here.
13031         * nptl/sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: Moved ...
13032         * sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: ... here.
13033         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: Moved ...
13034         * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: ... here.
13035         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: Moved ...
13036         * sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: ... here.
13037         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Moved ...
13038         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: ... here.
13039         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Moved ...
13040         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: ... here.
13041         * nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S: Moved ...
13042         * sysdeps/unix/sysv/linux/sh/pthread_once.S: ... here.
13043         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: Moved ...
13044         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: ... here.
13045         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S:
13046         Moved ...
13047         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S: ... here.
13048         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S:
13049         Moved ...
13050         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S: ... here.
13051         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: Moved ...
13052         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: ... here.
13053         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Moved ...
13054         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: ... here.
13055         * nptl/sysdeps/unix/sysv/linux/sh/sem_post.S: Moved ...
13056         * sysdeps/unix/sysv/linux/sh/sem_post.S: ... here.
13057         * nptl/sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Moved ...
13058         * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: ... here.
13059         * nptl/sysdeps/unix/sysv/linux/sh/sem_trywait.S: Moved ...
13060         * sysdeps/unix/sysv/linux/sh/sem_trywait.S: ... here.
13061         * nptl/sysdeps/unix/sysv/linux/sh/sem_wait.S: Moved ...
13062         * sysdeps/unix/sysv/linux/sh/sem_wait.S: ... here.
13063         * nptl/sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: Moved ...
13064         * sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: ... here.
13065         * nptl/sysdeps/unix/sysv/linux/sh/smp.h: Moved ...
13066         * sysdeps/unix/sysv/linux/sh/smp.h: ... here.
13067         * nptl/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Moved ...
13068         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: ... here.
13070 2014-06-12  Stefan Liebler  <stli@linux.vnet.ibm.com>
13072         * posix/spawn_faction_addopen.c: Include string.h.
13074 2014-06-11  Roland McGrath  <roland@hack.frob.com>
13076         * nptl/sysdeps/x86_64/64/shlib-versions: Moved ...
13077         * sysdeps/x86_64/64/nptl/shlib-versions: ... here.
13078         * nptl/sysdeps/x86_64/Makefile: Moved ...
13079         * sysdeps/x86_64/nptl/Makefile: ... here.
13080         * nptl/sysdeps/x86_64/configure: Moved ...
13081         * sysdeps/x86_64/nptl/configure: ... here.
13082         * nptl/sysdeps/x86_64/configure.ac: Moved ...
13083         * sysdeps/x86_64/nptl/configure.ac: ... here.
13084         * nptl/sysdeps/x86_64/pthread_spin_init.c: Moved ...
13085         * sysdeps/x86_64/nptl/pthread_spin_init.c: ... here.
13086         * nptl/sysdeps/x86_64/pthread_spin_lock.S: Moved ...
13087         * sysdeps/x86_64/nptl/pthread_spin_lock.S: ... here.
13088         * nptl/sysdeps/x86_64/pthread_spin_trylock.S: Moved ...
13089         * sysdeps/x86_64/nptl/pthread_spin_trylock.S: ... here.
13090         * nptl/sysdeps/x86_64/pthread_spin_unlock.S: Moved ...
13091         * sysdeps/x86_64/nptl/pthread_spin_unlock.S: ... here.
13092         * nptl/sysdeps/x86_64/pthreaddef.h: Moved ...
13093         * sysdeps/x86_64/nptl/pthreaddef.h: ... here.
13094         * nptl/sysdeps/x86_64/tcb-offsets.sym: Moved ...
13095         * sysdeps/x86_64/nptl/tcb-offsets.sym: ... here.
13096         * nptl/sysdeps/x86_64/tls.h: Moved ...
13097         * sysdeps/x86_64/nptl/tls.h: ... here.
13098         * nptl/sysdeps/x86_64/x32/shlib-versions: Moved ...
13099         * sysdeps/x86_64/x32/nptl/shlib-versions: ... here.
13100         * nptl/sysdeps/x86_64/x32/tls.h: Moved ...
13101         * sysdeps/x86_64/x32/nptl/tls.h: ... here.
13103         * sysdeps/x86_64/x32/nptl/tls.h: Use #include_next.
13105 2014-06-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13107         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
13109 2014-06-11  Joseph Myers  <joseph@codesourcery.com>
13111         * conform/data/sys/mman.h-data [POSIX] (size_t): Do not require
13112         type.
13113         [POSIX] (off_t): Likewise.
13114         * conform/data/sys/stat.h-data (S_IRGRP): Require constant.
13115         [POSIX] (S_ISBLK): Require macro.
13116         [POSIX] (S_ISCHR): Likewise.
13117         [POSIX] (S_ISDIR): Likewise.
13118         [POSIX] (S_ISFIFO): Likewise.
13119         [POSIX] (S_ISREG): Likewise.
13120         [POSIX || XPG3 || XPG4 || UNIX98] (S_TYPEISTMO): Do not list
13121         optional-macro.
13122         * conform/data/sys/types.h-data [POSIX] (blkcnt_t): Do not require
13123         type.
13124         [POSIX] (time_t): Likewise.
13125         [POSIX] (timer_t): Likewise.
13127 2014-06-11  Florian Weimer  <fweimer@redhat.com>
13129         [BZ #17048]
13130         * posix/spawn_int.h (struct __spawn_action): Make the path string
13131         non-const to support deallocation.
13132         * posix/spawn_faction_addopen.c
13133         (posix_spawn_file_actions_addopen): Make a copy of the pathname.
13134         * posix/spawn_faction_destroy.c
13135         (posix_spawn_file_actions_destroy): Adjust comment.  Deallocate
13136         path in all spawn_do_open actions.
13137         * posix/tst-spawn.c (do_test): Exercise the copy operation in
13138         posix_spawn_file_actions_addopen.
13140 2014-06-11  Chris Metcalf  <cmetcalf@tilera.com>
13142         * sysdeps/unix/sysv/linux/tile/pt-vfork.c: New file.
13143         * sysdeps/unix/sysv/linux/tile/pt-vfork.S: Remove file.
13144         * sysdeps/unix/sysv/linux/tile/vfork.S (__vfork): Make PT_VFORK
13145         conditional code always true.
13146         (__libc_vfork): New alias.
13148 2014-06-11  Roland McGrath  <roland@hack.frob.com>
13150         * sysdeps/tile/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
13151         * sysdeps/unix/sysv/linux/tile/createthread.c: File removed.
13153         * nptl/sysdeps/s390/tls.h (TLS_DEFINE_INIT_TP): New macro.
13155         * sysdeps/alpha/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
13156         * sysdeps/unix/sysv/linux/alpha/createthread.c: File removed.
13158         * nptl/sysdeps/powerpc/tls.h (TLS_DEFINE_INIT_TP): New macro.
13159         * sysdeps/unix/sysv/linux/powerpc/createthread.c: File removed.
13161         * sysdeps/aarch64/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
13162         * sysdeps/unix/sysv/linux/aarch64/nptl/createthread.c: File removed.
13164 2014-06-11  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
13166         * sysdeps/powerpc/powerpc64/power7/strcmp.S: New file: Optimization.
13167         * sysdeps/powerpc/powerpc64/multiarch/strcmp.c: New file:
13168         multiarch strcmp for PPC64.
13169         * sysdeps/powerpc/powerpc64/multiarch/strcmp-ppc64.S: New file.
13170         * sysdeps/powerpc/powerpc64/multiarch/strcmp-power7.S: New file.
13171         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcmp
13172         multiarch optimizations.
13173         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
13174         (__libc_ifunc_impl_list): Likewise.
13176 2014-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
13178         * benchtests/scripts/validate_benchout.py: New script.
13179         * benchtests/Makefile (bench-func): Call it.
13180         * benchtests/scripts/benchout.schema.json: New file.
13182 2014-06-10  Chris Metcalf  <cmetcalf@tilera.com>
13184         * sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h: Moved ...
13185         * sysdeps/tile/nptl/bits/pthreadtypes.h: ... here.
13186         * sysdeps/unix/sysv/linux/tile/nptl/bits/semaphore.h: Moved ...
13187         * sysdeps/tile/nptl/bits/semaphore.h: ... here.
13188         * sysdeps/unix/sysv/linux/tile/nptl/Makefile: Removed, merged into ...
13189         * sysdeps/unix/sysv/linux/tile/Makefile: ... here.
13190         * sysdeps/unix/sysv/linux/tile/nptl/clone.S: Moved ...
13191         * sysdeps/unix/sysv/linux/tile/clone.S: ... here.
13192         * sysdeps/unix/sysv/linux/tile/nptl/createthread.c: Moved ...
13193         * sysdeps/unix/sysv/linux/tile/createthread.c: ... here.
13194         * sysdeps/unix/sysv/linux/tile/nptl/lowlevellock.h: Moved ...
13195         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: ... here.
13196         * sysdeps/unix/sysv/linux/tile/nptl/pt-vfork.S: Moved ...
13197         * sysdeps/unix/sysv/linux/tile/pt-vfork.S: ... here.
13198         * sysdeps/unix/sysv/linux/tile/nptl/sysdep-cancel.h: Moved ...
13199         * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: ... here.
13200         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/c++-types.data:
13201         Moved ...
13202         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/c++-types.data:
13203         ... here.
13204         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/ld.abilist:
13205         Moved ...
13206         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/ld.abilist: ... here.
13207         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libBrokenLocale.abilist:
13208         Moved ...
13209         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libBrokenLocale.abilist:
13210         ... here.
13211         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libanl.abilist:
13212         Moved ...
13213         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libanl.abilist:
13214         ... here.
13215         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libc.abilist:
13216         Moved ...
13217         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libc.abilist: ... here.
13218         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libcrypt.abilist:
13219         Moved ...
13220         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libcrypt.abilist:
13221         ... here.
13222         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libdl.abilist:
13223         Moved ...
13224         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libdl.abilist:
13225         ... here.
13226         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libm.abilist:
13227         Moved ...
13228         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist: ... here.
13229         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libnsl.abilist:
13230         Moved ...
13231         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libnsl.abilist:
13232         ... here.
13233         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libpthread.abilist:
13234         Moved ...
13235         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libpthread.abilist:
13236         ... here.
13237         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libresolv.abilist:
13238         Moved ...
13239         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libresolv.abilist:
13240         ... here.
13241         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/librt.abilist:
13242         Moved ...
13243         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/librt.abilist: ... here.
13244         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libthread_db.abilist:
13245         Moved ...
13246         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libthread_db.abilist:
13247         ... here.
13248         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libutil.abilist:
13249         Moved ...
13250         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libutil.abilist:
13251         ... here.
13252         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/c++-types.data:
13253         Moved ...
13254         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/c++-types.data:
13255         ... here.
13256         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/ld.abilist:
13257         Moved ...
13258         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/ld.abilist: ... here.
13259         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libBrokenLocale.abilist:
13260         Moved ...
13261         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libBrokenLocale.abilist:
13262         ... here.
13263         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libanl.abilist:
13264         Moved ...
13265         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libanl.abilist:
13266         ... here.
13267         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libc.abilist:
13268         Moved ...
13269         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libc.abilist: ... here.
13270         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libcrypt.abilist:
13271         Moved ...
13272         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libcrypt.abilist:
13273         ... here.
13274         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libdl.abilist:
13275         Moved ...
13276         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libdl.abilist: ... here.
13277         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libm.abilist:
13278         Moved ...
13279         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist: ... here.
13280         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libnsl.abilist:
13281         Moved ...
13282         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libnsl.abilist:
13283         ... here.
13284         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libpthread.abilist:
13285         Moved ...
13286         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libpthread.abilist:
13287         ... here.
13288         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libresolv.abilist:
13289         Moved ...
13290         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libresolv.abilist:
13291         ... here.
13292         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/librt.abilist:
13293         Moved ...
13294         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/librt.abilist: ... here.
13295         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libthread_db.abilist:
13296         Moved ...
13297         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libthread_db.abilist:
13298         ... here.
13299         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libutil.abilist:
13300         Moved ...
13301         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libutil.abilist:
13302         ... here.
13303         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/c++-types.data: Moved ...
13304         * sysdeps/unix/sysv/linux/tile/tilepro/c++-types.data: ... here.
13305         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/ld.abilist: Moved ...
13306         * sysdeps/unix/sysv/linux/tile/tilepro/ld.abilist: ... here.
13307         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libBrokenLocale.abilist:
13308         Moved ...
13309         * sysdeps/unix/sysv/linux/tile/tilepro/libBrokenLocale.abilist:
13310         ... here.
13311         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libanl.abilist: Moved ...
13312         * sysdeps/unix/sysv/linux/tile/tilepro/libanl.abilist: ... here.
13313         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libc.abilist: Moved ...
13314         * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: ... here.
13315         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libcrypt.abilist: Moved ...
13316         * sysdeps/unix/sysv/linux/tile/tilepro/libcrypt.abilist: ... here.
13317         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libdl.abilist: Moved ...
13318         * sysdeps/unix/sysv/linux/tile/tilepro/libdl.abilist: ... here.
13319         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libm.abilist: Moved ...
13320         * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: ... here.
13321         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libnsl.abilist: Moved ...
13322         * sysdeps/unix/sysv/linux/tile/tilepro/libnsl.abilist: ... here.
13323         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libpthread.abilist:
13324         Moved ...
13325         * sysdeps/unix/sysv/linux/tile/tilepro/libpthread.abilist: ... here.
13326         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libresolv.abilist:
13327         Moved ...
13328         * sysdeps/unix/sysv/linux/tile/tilepro/libresolv.abilist: ... here.
13329         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/librt.abilist: Moved ...
13330         * sysdeps/unix/sysv/linux/tile/tilepro/librt.abilist: ... here.
13331         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libthread_db.abilist:
13332         Moved ...
13333         * sysdeps/unix/sysv/linux/tile/tilepro/libthread_db.abilist: ... here.
13334         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libutil.abilist: Moved ...
13335         * sysdeps/unix/sysv/linux/tile/tilepro/libutil.abilist: ... here.
13336         * sysdeps/unix/sysv/linux/tile/nptl/vfork.S: Moved ...
13337         * sysdeps/unix/sysv/linux/tile/vfork.S: ... here.
13338         * sysdeps/unix/sysv/linux/tile/nptl/waitpid.S: Moved ...
13339         * sysdeps/unix/sysv/linux/tile/waitpid.S: ... here.
13341 2014-06-10  Wilco  <wdijkstr@arm.com>
13343         * math/test-fenv-return.c: New file.
13344         * math/Makefile: Add new test test-fenv-return.
13346 2014-06-10  Joseph Myers  <joseph@codesourcery.com>
13348         [BZ #17042]
13349         * sysdeps/i386/fpu/e_log2.S (__ieee754_log2): Take absolete value
13350         when x - 1 is zero.
13351         * sysdeps/i386/fpu/e_log2f.S (__ieee754_log2f): Likewise.
13352         * sysdeps/i386/fpu/e_log2l.S (__ieee754_log2l): Likewise.
13353         * sysdeps/ieee754/ldbl-128/e_log2l.c (__ieee754_log2l): Return
13354         0.0L for an argument of 1.0L.
13355         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c (__ieee754_log2l):
13356         Likewise.
13357         * sysdeps/x86_64/fpu/e_log2l.S (__ieee754_log2l): Take absolute
13358         value when x - 1 is zero.
13359         * math/libm-test.inc (log2_test): Use ALL_RM_TEST.
13360         * sysdeps/i386/fpu/libm-test-ulps: Update.
13361         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
13363 2014-06-09  Bernard Ogden  <bernie.ogden@linaro.org>
13365         [BZ #15119]
13366         * ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.c: Remove file.
13368 2014-06-09  Roland McGrath  <roland@hack.frob.com>
13370         * nptl/sysdeps/sh/tls.h (TLS_DEFINE_INIT_TP): New macro.
13371         * nptl/sysdeps/unix/sysv/linux/sh/createthread.c: File removed.
13373 2014-06-09  Roland McGrath  <roland@hack.frob.com>
13375         * sysdeps/m68k/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
13376         * sysdeps/unix/sysv/linux/m68k/nptl/createthread.c: File removed.
13378         * sysdeps/hppa/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
13379         * sysdeps/unix/sysv/linux/hppa/nptl/createthread.c: File removed.
13381         * sysdeps/mips/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
13382         * sysdeps/unix/sysv/linux/mips/nptl/createthread.c: File removed.
13384         * sysdeps/arm/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
13385         * sysdeps/unix/sysv/linux/arm/createthread.c: File removed.
13387         * nptl/sysdeps/pthread/createthread.c (TLS_DEFINE_INIT_TP): New macro,
13388         if not already defined.
13389         (do_clone): Use that in place of PREPARE_CREATE and TLS_VALUE.
13390         * nptl/sysdeps/x86_64/tls.h (TLS_DEFINE_INIT_TP): New macro.
13391         * nptl/sysdeps/i386/tls.h (tls_fill_user_desc): New function.
13392         (TLS_INIT_TP): Use it.
13393         (TLS_DEFINE_INIT_TP): New macro.
13394         * sysdeps/unix/sysv/linux/i386/createthread.c: File removed.
13396 2014-06-09  Joseph Myers  <joseph@codesourcery.com>
13398         * conform/data/termios.h-data [POSIX] (IUCLC): Do not expect
13399         constant.
13400         [POSIX] (IXANY): Likewise.
13401         [POSIX] (OLCUC): Likewise.
13402         [POSIX || POSIX2008] (CBAUD): Do not allow.
13403         [POSIX || POSIX2008] (DEFECHO): Likewise.
13404         [POSIX || POSIX2008] (ECHOCTL): Likewise.
13405         [POSIX || POSIX2008] (ECHOKE): Likewise.
13406         [POSIX || POSIX2008] (ECHOPRT): Likewise.
13407         [POSIX || POSIX2008] (EXTA): Likewise.
13408         [POSIX || POSIX2008] (EXTB): Likewise.
13409         [POSIX || POSIX2008] (FLUSHO): Likewise.
13410         [POSIX || POSIX2008] (LOBLK): Likewise.
13411         [POSIX || POSIX2008] (PENDIN): Likewise.
13412         [POSIX || POSIX2008] (SWTCH): Likewise.
13413         [POSIX || POSIX2008] (VDISCARD): Likewise.
13414         [POSIX || POSIX2008] (VDSUSP): Likewise.
13415         [POSIX || POSIX2008] (VLNEXT): Likewise.
13416         [POSIX || POSIX2008] (VREPRINT): Likewise.
13417         [POSIX || POSIX2008] (VSTATUS): Likewise.
13418         [POSIX || POSIX2008] (VWERASE): Likewise.
13419         (B*): Change to B[0123456789]*.
13420         * conform/data/time.h-data [POSIX || UNIX98]
13421         (CLOCK_PROCESS_CPUTIME_ID): Do not expect constant.
13422         [POSIX || UNIX98] (CLOCK_THREAD_CPUTIME_ID): Likewise.
13423         [POSIX || UNIX98] (CLOCK_MONOTONIC): Likewise.
13424         [POSIX] (tm_*): Do not allow.
13426 2014-06-07  Joseph Myers  <joseph@codesourcery.com>
13428         * Makefile (install): Don't set LANGUAGE.
13429         * Makefile.in (install): Likewise.
13430         * assert/Makefile (test-assert-ENV): Remove variable.
13431         (test-assert-perr-ENV): Likewise.
13432         * elf/Makefile (neededtest4-ENV): Likewise.
13433         * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
13434         [$(cross-compiling) = no]: Don't set LANGUAGE.
13435         * io/ftwtest-sh (LANG): Remove variable.
13436         * libio/Makefile (tst-widetext-ENV): Likewise.
13437         * manual/install.texi (Running make install): Don't refer to
13438         environment settings for make install.
13439         * INSTALL: Regenerated.
13440         * nptl/tst-tls6.sh: Don't set LANG.
13441         * posix/globtest.sh (LANG): Remove variable.
13442         * string/Makefile (tester-ENV): Likewise.
13443         (inl-tester-ENV): Likewise.
13444         (noinl-tester-ENV): Likewise.
13445         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
13446         [$(cross-compiling) = no]: Don't set LANGUAGE.
13447         * timezone/Makefile (build-testdata): Use $(built-program-cmd)
13448         without explicit environment settings.
13450 2014-06-06  Roland McGrath  <roland@hack.frob.com>
13452         * nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Moved ...
13453         * sysdeps/sh/nptl/bits/pthreadtypes.h: ... here.
13454         * nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h: Moved ...
13455         * sysdeps/sh/nptl/bits/semaphore.h: ... here.
13457 2014-06-06  Chris Metcalf  <cmetcalf@tilera.com>
13459         * crypt/crypt-private.h [DOS]: Add some includes taken from the
13460         other files in the crypt directory.
13461         * crypt/crypt.c: Remove duplicate includes.
13462         * crypt/crypt-entry.c: Likewise.
13463         * crypt/crypt_util.c: Likewise.
13465 2014-06-06  Joseph Myers  <joseph@codesourcery.com>
13467         * Makeconfig (run-program-env): New variable.
13468         (run-program-prefix-before-env): Likewise.
13469         (run-program-prefix-after-env): Likewise.
13470         (run-program-prefix): Define in terms of new variables.
13471         (built-program-cmd-before-env): New variable.
13472         (built-program-cmd-after-env): Likewise.
13473         (built-program-cmd): Define in terms of new variables.
13474         (test-program-prefix-before-env): New variable.
13475         (test-program-prefix-after-env): Likewise.
13476         (test-program-prefix): Define in terms of new variables.
13477         (test-program-cmd-before-env): New variable.
13478         (test-program-cmd-after-env): Likewise.
13479         (test-program-cmd): Define in terms of new variables.
13480         * Rules (make-test-out): Use $(run-program-env).
13481         * scripts/cross-test-ssh.sh (env_blacklist): Remove variable.
13482         (help): Do not mention environment variables.  Mention
13483         --timeoutfactor option.
13484         (timeoutfactor): New variable.
13485         (blacklist_exports): Remove function.
13486         (exports): Remove variable.
13487         (command): Do not include ${exports}.
13488         * manual/install.texi (Configuring and compiling): Do not mention
13489         test wrappers preserving environment variables.  Mention that last
13490         assignment to a variable must take precedence.
13491         * INSTALL: Regenerated.
13492         * benchtests/Makefile (run-bench): Use $(run-program-env).
13493         * catgets/Makefile ($(objpfx)test1.cat): Use
13494         $(built-program-cmd-before-env), $(run-program-env) and
13495         $(built-program-cmd-after-env).
13496         ($(objpfx)test2.cat): Do not specify environment variables
13497         explicitly.
13498         ($(objpfx)de/libc.cat): Use $(built-program-cmd-before-env),
13499         $(run-program-env) and $(built-program-cmd-after-env).
13500         ($(objpfx)test-gencat.out): Use $(test-program-cmd-before-env),
13501         $(run-program-env) and $(test-program-cmd-after-env).
13502         ($(objpfx)sample.SJIS.cat): Do not specify environment variables
13503         explicitly.
13504         * catgets/test-gencat.sh: Use test_program_cmd_before_env,
13505         run_program_env and test_program_cmd_after_env arguments.
13506         * elf/Makefile ($(objpfx)tst-pathopt.out): Use $(run-program-env).
13507         * elf/tst-pathopt.sh: Use run_program_env argument.
13508         * iconvdata/Makefile ($(objpfx)iconv-test.out): Use
13509         $(test-wrapper-env) and $(run-program-env).
13510         * iconvdata/run-iconv-test.sh: Use test_wrapper_env and
13511         run_program_env arguments.
13512         * iconvdata/tst-table.sh: Do not set GCONV_PATH explicitly.
13513         * intl/Makefile ($(objpfx)tst-gettext.out): Use
13514         $(test-program-prefix-before-env), $(run-program-env) and
13515         $(test-program-prefix-after-env).
13516         ($(objpfx)tst-gettext2.out): Likewise.
13517         * intl/tst-gettext.sh: Use test_program_prefix_before_env,
13518         run_program_env and test_program_prefix_after_env arguments.
13519         * intl/tst-gettext2.sh: Likewise.
13520         * intl/tst-gettext4.sh: Do not set environment variables
13521         explicitly.
13522         * intl/tst-gettext6.sh: Likewise.
13523         * intl/tst-translit.sh: Likewise.
13524         * malloc/Makefile ($(objpfx)tst-mtrace.out): Use
13525         $(test-program-prefix-before-env), $(run-program-env) and
13526         $(test-program-prefix-after-env).
13527         * malloc/tst-mtrace.sh: Use test_program_prefix_before_env,
13528         run_program_env and test_program_prefix_after_env arguments.
13529         * math/Makefile (run-regen-ulps): Use $(run-program-env).
13530         * nptl/Makefile ($(objpfx)tst-tls6.out): Use $(run-program-env).
13531         * nptl/tst-tls6.sh: Use run_program_env argument.  Set LANG=C
13532         explicitly with each use of ${test_wrapper_env}.
13533         * posix/Makefile ($(objpfx)wordexp-tst.out): Use
13534         $(test-program-prefix-before-env), $(run-program-env) and
13535         $(test-program-prefix-after-env).
13536         * posix/tst-getconf.sh: Do not set environment variables
13537         explicitly.
13538         * posix/wordexp-tst.sh: Use test_program_prefix_before_env,
13539         run_program_env and test_program_prefix_after_env arguments.
13540         * stdio-common/tst-printf.sh: Do not set environment variables
13541         explicitly.
13542         * stdlib/Makefile ($(objpfx)tst-fmtmsg.out): Use
13543         $(test-program-prefix-before-env), $(run-program-env) and
13544         $(test-program-prefix-after-env).
13545         * stdlib/tst-fmtmsg.sh: Use test_program_prefix_before_env,
13546         run_program_env and test_program_prefix_after_env arguments.
13547         Split $test calls into $test_pre and $test.
13548         * timezone/Makefile (build-testdata): Use
13549         $(built-program-cmd-before-env), $(run-program-env) and
13550         $(built-program-cmd-after-env).
13552 2014-06-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13554         * sysdeps/powerpc/powerpc64/power7/strncat.S [STRLEN]: Define it as
13555         strlen for non SHARED builds.
13557 2014-06-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
13559         * nptl/allocatestack.c (check_list): Inlined function...
13560         (__reclaim_stacks): ... here.
13562 2014-06-05  Ondřej Bílka  <neleai@seznam.cz>
13564         [BZ #15698]
13565         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs_internal): Fix
13566         memory overrun.
13568 2014-06-05  Joseph Myers  <joseph@codesourcery.com>
13570         * Rules (make-test-out): Include
13571         LOCPATH=$(common-objpfx)localedata in default environment.
13572         * debug/Makefile (tst-chk1-ENV): Remove variable.
13573         (tst-chk2-ENV): Likewise.
13574         (tst-chk3-ENV): Likewise.
13575         (tst-chk4-ENV): Likewise.
13576         (tst-chk5-ENV): Likewise.
13577         (tst-chk6-ENV): Likewise.
13578         (tst-lfschk1-ENV): Likewise.
13579         (tst-lfschk2-ENV): Likewise.
13580         (tst-lfschk3-ENV): Likewise.
13581         (tst-lfschk4-ENV): Likewise.
13582         (tst-lfschk5-ENV): Likewise.
13583         (tst-lfschk6-ENV): Likewise.
13584         * iconvdata/Makefile (bug-iconv6-ENV): Likewise.
13585         (tst-iconv7-ENV): Likewise.
13586         * intl/Makefile (LOCPATH-ENV): Likewise.
13587         (tst-codeset-ENV): Likewise.
13588         (tst-gettext3-ENV): Likewise.
13589         (tst-gettext5-ENV): Likewise.
13590         * libio/Makefile (tst-widetext-ENV): Don't set LOCPATH.
13591         (tst-fopenloc-ENV): Likewise.
13592         (tst-fgetws-ENV): Remove variable.
13593         (tst-ungetwc1-ENV): Likewise.
13594         (tst-ungetwc2-ENV): Likewise.
13595         (bug-ungetwc2-ENV): Likewise.
13596         (tst-swscanf-ENV): Likewise.
13597         (bug-ftell-ENV): Likewise.
13598         (tst-fgetwc-ENV): Likewise.
13599         (tst-fseek-ENV): Likewise.
13600         (tst-ftell-partial-wide-ENV): Likewise.
13601         (tst-ftell-active-handler-ENV): Likewise.
13602         (tst-ftell-append-ENV): Likewise.
13603         * posix/Makefile (tst-fnmatch-ENV): Likewise.
13604         (tst-regexloc-ENV): Likewise.
13605         (bug-regex1-ENV): Likewise.
13606         (tst-regex-ENV): Likewise.
13607         (tst-regex2-ENV): Likewise.
13608         (bug-regex5-ENV): Likewise.
13609         (bug-regex6-ENV): Likewise.
13610         (bug-regex17-ENV): Likewise.
13611         (bug-regex18-ENV): Likewise.
13612         (bug-regex19-ENV): Likewise.
13613         (bug-regex20-ENV): Likewise.
13614         (bug-regex22-ENV): Likewise.
13615         (bug-regex23-ENV): Likewise.
13616         (bug-regex25-ENV): Likewise.
13617         (bug-regex26-ENV): Likewise.
13618         (bug-regex30-ENV): Likewise.
13619         (bug-regex32-ENV): Likewise.
13620         (bug-regex33-ENV): Likewise.
13621         (bug-regex34-ENV): Likewise.
13622         (bug-regex35-ENV): Likewise.
13623         (tst-rxspencer-ENV): Likewise.
13624         (tst-rxspencer-no-utf8-ENV): Likewise.
13625         * stdio-common/Makefile (tst-sprintf-ENV): Likewise.
13626         (tst-sscanf-ENV): Likewise.
13627         (tst-swprintf-ENV): Likewise.
13628         (tst-swscanf-ENV): Likewise.
13629         (test-vfprintf-ENV): Likewise.
13630         (scanf13-ENV): Likewise.
13631         (bug14-ENV): Likewise.
13632         (tst-grouping-ENV): Likewise.
13633         * stdlib/Makefile (tst-strtod-ENV): Likewise.
13634         (tst-strtod3-ENV): Likewise.
13635         (tst-strtod4-ENV): Likewise.
13636         (tst-strtod5-ENV): Likewise.
13637         (testmb2-ENV): Likewise./
13638         * string/Makefile (tst-strxfrm-ENV): Likewise.
13639         (tst-strxfrm2-ENV): Likewise.
13640         (bug-strcoll1-ENV): Likewise.
13641         (test-strcasecmp-ENV): Likewise.
13642         (test-strncasecmp-ENV): Likewise.
13643         * time/Makefile (tst-strptime-ENV): Likewise.
13644         (tst-ftime_l-ENV): Likewise.
13645         * wcsmbs/Makefile (tst-btowc-ENV): Likewise.
13646         (tst-mbrtowc-ENV): Likewise.
13647         (tst-wcrtomb-ENV): Likewise.
13648         (tst-mbrtowc2-ENV): Likewise.
13649         (tst-c16c32-1-ENV): Likewise.
13650         (tst-mbsnrtowcs-ENV): Likewise.
13652 2014-06-05  Ondřej Bílka  <neleai@seznam.cz>
13654         * manual/resource.texi (How to get information about the memory
13655         subsystem?): Fix typo.
13656         Reported by Peon de la Parra Ivan <peon@keba.com>
13658 2014-06-03  Guo Yixuan  <culu.gyx@gmail.com>
13660         [BZ #16882]
13661         * nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S
13662         (pthread_spin_lock): Branch out of spin loop to proper location.
13663         * nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S
13664         (pthread_spin_lock): Likewise.
13666         * nptl/tst-spin4.c: New test.
13667         * nptl/Makefile (tests): Add tst-spin4.
13669 2014-06-03  Andreas Schwab  <schwab@suse.de>
13671         [BZ #15946]
13672         * resolv/res_send.c (send_dg): Reload file descriptor after
13673         calling reopen.
13675 2014-06-03  Stefan Liebler  <stli@linux.vnet.ibm.com>
13677         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
13679 2014-06-03  Richard Henderson  <rth@redhat.com>
13681         * sysdeps/unix/sysv/linux/aarch64/pt-vfork.c: New file.
13682         * sysdeps/unix/sysv/linux/aarch64/nptl/pt-vfork.S: Remove file.
13683         * sysdeps/unix/sysv/linux/aarch64/vfork.S (__vfork): Incorporate
13684         SAVE_PID and RESTORE_PID blocks from pt-vfork.S.  Map 0 to INT_MIN
13685         in the SAVE_PID block.
13686         (__libc_vfork): New alias.
13687         * sysdeps/unix/sysv/linux/aarch64/nptl/vfork.S: Remove file.
13689         * sysdeps/unix/sysv/linux/aarch64/clone.S (__clone): Save args for
13690         child in registers, not on the stack.  Remove RESET_PID conditionals.
13691         * sysdeps/unix/sysv/linux/aarch64/nptl/clone.S: Remove file.
13693 2014-06-03  Marcus Shawcroft  <marcus.shawcroft@arm.com>
13695         * sysdeps/aarch64/libm-test-ulps: Regenerate.
13697 2014-06-03  Wilco  <wdijkstr@arm.com>
13699         * sysdeps/aarch64/fpu/math_private.h (libc_fesetround_aarch64)
13700         (libc_feholdexcept_setround_aarch64) (libc_feholdsetround_aarch64)
13701         (libc_feresetround_aarch64) (libc_feholdsetround_aarch64_ctx):
13702         Use _FPU_FPCR_RM_MASK for rounding mask rather than FE_TOWARDZERO.
13703         * sysdeps/aarch64/fpu/get-rounding-mode.h (get_rounding_mode):
13704         Likewise.
13706 2014-06-03  Wilco  <wdijkstr@arm.com>
13708         * sysdeps/aarch64/fpu/math_private.h
13709         (libc_feholdexcept_aarch64) (libc_feholdexcept_setround_aarch64)
13710         (libc_fetestexcept_aarch64) (libc_fesetenv_aarch64)
13711         (libc_feupdateenv_test_aarch64) (libc_feholdsetround_aarch64)
13712         (libc_feresetround_aarch64) (libc_feholdsetround_aarch64_ctx):
13713         Fix declarations.
13715 2014-06-03  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
13717         * crypt/crypt-private.h: Include ufc-crypt.h.
13718         (__b64_from_24bit): Declare extern.
13719         * crypt/crypt_util.c(__b64_from_24bit): New function.
13720         (b64t): New static const variable.
13721         * crypt/md5-crypt.c (b64_from_24bit): Remove function.
13722         (b64t): Remove variable.
13723         (__md5_crypt_r): Replace b64_from_24bit with __b64_from_24bit.
13724         * crypt/sha256-crypt.c: Include crypt-private.h.
13725         (b64t): Remove variable.
13726         (__sha256_crypt_r): Remove b64_from_24bit and replace
13727         with __b64_from_24bit.
13728         * crypt/sha512-crypt.c: Likewise.
13730 2014-06-02  Roland McGrath  <roland@hack.frob.com>
13732         * nptl/sysdeps/unix/sysv/linux/sh/vfork.S: Moved ...
13733         * sysdeps/unix/sysv/linux/sh/vfork.S: ... here.
13734         Label the code __libc_vfork rather than __vfork.
13735         [!NOT_IN_libc] (vfork): Define as weak alias.
13736         [!NOT_IN_libc] (__vfork): Define as strong alias, and libc_hidden_def.
13737         * sysdeps/unix/sysv/linux/sh/pt-vfork.S: New file.
13738         * nptl/sysdeps/unix/sysv/linux/sh/pt-vfork.S: File removed.
13740 2014-06-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
13742         * malloc/malloc.c (malloc_info): Fix format specifier for
13743         n_mmaps.
13745 2014-06-02  Wilco  <wdijkstr@arm.com>
13747         * sysdeps/aarch64/fpu/fpu_control.h (_FPU_SETCW): Remove ISB after
13748         FPCR write.
13750 2014-06-02  Wilco  <wdijkstr@arm.com>
13752         [BZ #17009]
13753         * sysdeps/aarch64/fpu/feupdateenv (feupdateenv):
13754         Rewrite to reduce FPCR/FPSR accesses.
13756 2014-06-01  David S. Miller  <davem@davemloft.net>
13758         * sysdeps/sparc/fpu/libm-test-ulps: Update.
13760 2014-05-31  David S. Miller  <davem@davemloft.net>
13762         * sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_y1f): Force computations
13763         to occur in round to nearest mode when |x| >= 2.0
13765 2014-05-30  Richard Henderson  <rth@twiddle.net>
13767         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (PSEUDO_RET): Remove.
13768         (PSEUDO_RET_NOERRNO): Remove.
13769         (ret): Don't redefine.
13770         (ret_NOERRNO): Define in terms of ret.
13771         (ret_ERRVAL): Likewise.
13773         * sysdeps/unix/sysv/linux/aarch64/ioctl.S (__ioctl): Remove the
13774         use of PSEUDO_RET; perform the error check directly.
13776 2014-05-30 Marko Myllynen  <myllynen@redhat.com>
13778         * sysdeps/x86_64/link-defines.sym (BND_SIZE): Replace __int128
13779         with __int128_t.
13781 2014-05-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
13783         * malloc/malloc (malloc_info): Fix formatting.
13785 2014-05-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
13786             Roland McGrath  <roland@hack.frob.com>
13788         * malloc/malloc (malloc_info): Also print mmapped statistics.
13790 2014-05-30  Roland McGrath  <roland@hack.frob.com>
13792         * sysdeps/unix/sysv/linux/m68k/arch-fork.h: New file.
13793         * sysdeps/unix/sysv/linux/m68k/nptl/fork.c: File removed.
13795 2014-05-30  Ondřej Bílka  <neleai@seznam.cz>
13797         * malloc/malloc.c (malloc_info): Inline mi_arena.
13799 2014-05-29  Richard Henderson  <rth@twiddle.net>
13801         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (INTERNAL_VSYSCALL_NCS):
13802         Remove comma before expanding ASM_ARGS_##nr.
13803         (INTERNAL_SYSCALL_RAW): Make _sys_result signed, instead of casting.
13804         Make _x0 a strict output; make _x8 a strict input; adjust expansion
13805         of ASM_ARGS_##nr.
13806         (CLOBBER_ARGS_0, CLOBBER_ARGS_1, CLOBBER_ARGS_2): Remove.
13807         (CLOBBER_ARGS_3, CLOBBER_ARGS_4, CLOBBER_ARGS_5): Remove.
13808         (CLOBBER_ARGS_6, CLOBBER_ARGS_7): Remove.
13809         (ASM_ARGS_1): Add leading comma.
13811         * sysdeps/unix/sysv/linux/aarch64/sysdep.h [NOT_IN_libc]
13812         (SYSCALL_ERROR_HANDLER): Use tpidr_el0 instead of a call
13813         to __errno_location.
13814         * sysdeps/unix/sysv/linux/aarch64/nptl/localplt.data (libpthread.so):
13815         Remove the expected plt for __errno_location.
13817         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
13818         [NOT_IN_libc] (SINGLE_THREAD_P): Use tpidr_el0 instead of a
13819         call to __read_tp.
13821         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
13822         Always allocate 64 bytes of stack frame.  Use ldp/stp to create
13823         it and break it down.
13824         (DOCARGS_0, DOCARGS_1): Do nothing.
13825         (DOCARGS_2): Update to store into the new stack frame.
13826         (DOCARGS_3, DOCARGS_4, DOCARGS_5, DOCARGS_6): Likewise.
13827         (UNDOCARGS_1): Update to restore from the new stack frame.
13828         (UNDOCARGS_2, UNDOCARGS_3, UNDOCARGS_4): Likewise.
13829         (UNDOCARGS_5, UNDOCARGS_6): Likewise.
13831         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
13832         (SINGLE_THREAD_P): New parameter for result regno.
13833         (PSEUDO): Update to match; use cbz instead of beq.
13835         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
13836         Use ENTRY to define the _nocancel entry point.  Share the syscall
13837         and syscall error check paths with the cancel path.
13838         (PSEUDO_END): New.
13840         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h: Adjust
13841         whitespace; tabs before and after asm mnemonics.
13843 2014-05-29  Eric Wong  <normalperson@yhbt.net>
13845         [BZ #15132]
13846         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
13847         Call fstat64 or stat64 internally, depending on arguments passed.
13848         Replace stat buffer argument with file descriptor argument.
13849         (INTERNAL_STATVFS): Update arguments to match __statvfs_getflags.
13850         * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs):
13851         Pass fd to __internal_statvfs instead of calling fstat64.
13852         * sysdeps/unix/sysv/linux/fstatvfs64.c (__fstatvfs64):
13853         Pass fd to __internal_statvfs64 instead of calling fstat64.
13854         * sysdeps/unix/sysv/linux/statvfs.c (statvfs):
13855         Pass -1 to __internal_statvfs instead of calling stat64.
13856         * sysdeps/unix/sysv/linux/statvfs64.c (__statvfs64):
13857         Pass -1 to __internal_statvfs64 instead of calling stat64.
13859 2014-05-28  Roland McGrath  <roland@hack.frob.com>
13861         * sysdeps/unix/sysv/linux/sh/clone.S: Deconditionalize the code
13862         that was previously under [RESET_PID].
13863         * nptl/sysdeps/unix/sysv/linux/sh/clone.S: File removed.
13865         * sysdeps/unix/sysv/linux/tile/arch-fork.h: New file.
13866         * sysdeps/unix/sysv/linux/tile/nptl/fork.c: File removed.
13868 2014-05-27  Roland McGrath  <roland@hack.frob.com>
13870         * sysdeps/unix/sysv/linux/ia64/arch-fork.h: New file.
13872         * sysdeps/unix/sysv/linux/sh/arch-fork.h: New file.
13873         * nptl/sysdeps/unix/sysv/linux/sh/fork.c: File removed.
13875 2014-05-27  Ondřej Bílka  <neleai@seznam.cz>
13877         * elf/dl-deps.c (_dl_map_object_deps): Remove duplicate code.
13879 2014-05-27  Andreas Schwab  <schwab@suse.de>
13881         * csu/libc-tls.c (__libc_setup_tls): Remove second argument from
13882         TLS_INIT_TP macro.
13883         * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
13884         * elf/rtld.c (init_tls, dl_main): Likewise.
13885         * nptl/sysdeps/i386/tls.h (TLS_INIT_TP): Likewise.
13886         * nptl/sysdeps/powerpc/tls.h (TLS_INIT_TP): Likewise.
13887         * nptl/sysdeps/s390/tls.h (TLS_INIT_TP): Likewise.
13888         * nptl/sysdeps/sh/tls.h (TLS_INIT_TP): Likewise.
13889         * nptl/sysdeps/sparc/tls.h (TLS_INIT_TP): Likewise.
13890         * nptl/sysdeps/x86_64/tls.h (TLS_INIT_TP): Likewise.
13891         * sysdeps/aarch64/nptl/tls.h (TLS_INIT_TP): Likewise.
13892         * sysdeps/alpha/nptl/tls.h (TLS_INIT_TP): Likewise.
13893         * sysdeps/arm/nptl/tls.h (TLS_INIT_TP): Likewise.
13894         * sysdeps/hppa/nptl/tls.h (TLS_INIT_TP): Likewise.
13895         * sysdeps/ia64/nptl/tls.h (TLS_INIT_TP): Likewise.
13896         * sysdeps/m68k/nptl/tls.h (TLS_INIT_TP): Likewise.
13897         * sysdeps/mach/hurd/i386/tls.h (_hurd_tls_init): Likewise.
13898         * sysdeps/microblaze/nptl/tls.h (TLS_INIT_TP): Likewise.
13899         * sysdeps/mips/nptl/tls.h (TLS_INIT_TP): Likewise.
13900         * sysdeps/tile/nptl/tls.h (TLS_INIT_TP): Likewise.
13901         * sysdeps/generic/tls.h: Update description.
13903 2014-05-27  Will Newton  <will.newton@linaro.org>
13905         [BZ #16990]
13906         * sysdeps/arm/dl-tlsdesc.S (_dl_tlsdesc_resolve_hold): Save
13907         and restore r2 rather than just restoring.
13909 2014-05-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
13911         [BZ #16724]
13912         * libio/tst-ftell-append.c: New test case.
13913         * libio/Makefile (tests): Add test case.
13914         * libio/fileops.c (do_ftell): Don't trust _IO_read_end when in
13915         append mode.
13916         * libio/wfileops.c (do_ftell_wide): Likewise.
13918 2014-05-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13920         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
13922         * nptl/sysdeps/unix/sysv/linux/powerpc/Versions: Remove, merge into
13923         ...
13924         * sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions: ... here.
13925         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Likewise.
13926         * nptl/sysdeps/unix/sysv/linux/powerpc/Makefile: Moved rules to ...
13927         * sysdeps/unix/sysv/linux/powerpc/Makefile: ... here.
13928         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h: Moved ...
13929         * sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h: ... here.
13930         * nptl/sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Moved ...
13931         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: ...here.
13932         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h:
13933         Moved ...
13934         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: ... here.
13935         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h:
13936         Moved ...
13937         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: ... here.
13938         * nptl/sysdeps/unix/sysv/linux/powerpc/createthread.c: Moved ...
13939         * sysdeps/unix/sysv/linux/powerpc/createthread.c: ... here.
13940         * nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: Moved ...
13941         * sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: ... here.
13942         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstack.c: Moved
13943         ...
13944         * sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstack.c: ... here.
13945         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c:
13946         Moved ...
13947         * sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c: ...
13948         here.
13949         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c: Moved
13950         ...
13951         * sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c: ... here.
13952         * nptl/sysdeps/unix/sysv/linux/powerpc/sem_post.c: Moved ...
13953         * sysdeps/unix/sysv/linux/powerpc/sem_post.c: ... here.
13955         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Moved ...
13956         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: ... here.
13957         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h: Moved ...
13958         * sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h: ... here.
13960         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Remove,
13961         merge into ...
13962         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: ... here.
13963         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c: Moved
13964         ...
13965         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c: ... here.
13966         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c: Moved
13967         ...
13968         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c: ... here.
13969         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c:
13970         Moved ...
13971         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c: ...
13972         here.
13973         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c:
13974         Moved ...
13975         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c: ... here.
13976         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c:
13977         Moved ...
13978         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c: ... here.
13980         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Remove
13981         conditional [RESET_PID].
13982         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Likewise.
13983         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: File
13984         removed.
13985         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: File
13986         removed.
13988         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: Include
13989         <tcb-offsets.h>.
13990         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
13991         (__libc_vfork): New strong alias.
13992         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S: File
13993         removed.
13994         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: File
13995         Removed.
13997         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: Include
13998         <tcb-offsets.h>.
13999         (__vfork): Incorporate save/retore of PID from nptl/vfork.S here.
14000         (__libc_vfork): New strong alias.
14001         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S: File
14002         removed.
14003         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: File
14004         removed.
14006 2014-05-26  Carlos O'Donell  <carlos@redhat.com>
14008         * malloc/malloc.c (mi_arena): New function.
14009         (malloc_info): Remove nested function mi_arena. Call non-nosted
14010         function mi_arena.
14012 2014-05-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14014         * sysdeps/powerpc/powerpc32/power4/memset.S (memset): Replace insrdi
14015         by insrwi.
14016         * sysdeps/powerpc/powerpc32/power6/memset.S (memset): Likewise.
14017         * sysdeps/powerpc/powerpc32/power7/memset.S (memset): Likewise.
14018         * sysdeps/powerpc/powerpc32/power7/memchr.S (memchr): Likewise.
14019         * sysdeps/powerpc/powerpc32/power7/memrchr.S (memrchr): Likewise.
14020         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S (rawmemchr): Likewise.
14021         * sysdeps/powerpc/powerpc32/power7/strchr.S (strchr): Likewise.
14022         * sysdeps/powerpc/powerpc32/power7/strchrnul.S (strchrnul): Likewise.
14024 2014-05-26  Andreas Schwab  <schwab@suse.de>
14026         [BZ #16984]
14027         * locale/programs/repertoire.c (repertoire_read): Add slash
14028         between I18NPATH element and file name.
14029         * locale/programs/locfile.c (locfile_read): Likewise.
14031 2014-05-26  Stefan Liebler  <stli@linux.vnet.ibm.com>
14033         * nptl/pthread_mutexattr_settype.c
14034         (__pthread_mutexattr_settype):
14035         Disable lock elision for PTHREAD_MUTEX_NORMAL.
14037 2014-05-26  Stefan Liebler  <stli@linux.vnet.ibm.com>
14039         * nptl/tst-mutex5 (do_test):
14040         Use #ifndef ENABLE_LOCK_ELISION instead of #ifdef.
14042 2014-05-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
14044         * benchtests/README: Document 'init' directive.
14045         * benchtests/bench-skeleton.c (main) [BENCH_INIT]: Call
14046         BENCH_INIT.
14047         * scripts/bench.py (gen_source): Define BENCH_INIT macro.
14048         (parse_file): Recognize 'init' directive.
14050 2014-05-26  Kyle McMartin  <kyle@redhat.com>
14052         [BZ #16796]
14053         * sysdeps/aarch64/nptl/tls.h: increase TCB alignment to the
14054         alignment of struct pthread.
14056 2014-05-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
14058         [BZ #16878]
14059         * nscd/netgroupcache.c (addgetnetgrentX): Look for
14060         NSS_STATUS_TRYAGAIN to indicate insufficient buffer space.
14061         * nscd/nss_files/files-netgrp.c (_nss_netgroup_parseline): Use
14062         NSS_STATUS_TRYAGAIN to indicate insufficient buffer space.
14064 2014-05-25  Richard Henderson  <rth@twiddle.net>
14066         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
14067         (SINGLE_THREAD_P_PIC): Remove.
14068         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h
14069         (SINGLE_THREAD_P_PIC): Remove.
14071         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (PSEUDO_RET): Move
14072         branch to syscall error ...
14073         (PSEUDO): ... here.
14074         [NOT_IN_libc] (SYSCALL_ERROR_HANDLER): Rename the label
14075         from __local_syscall_error to .Lsyscall_error.
14076         [!NOT_IN_libc] (SYSCALL_ERROR_HANDLER): Branch to __syscall_error.
14077         (SYSCALL_ERROR): Update label name.
14079         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
14080         Do not use DOARGS/UNDOARGS.
14081         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (DO_CALL): Likewise.
14082         (DOARGS_0, DOARGS_1, DOARGS_2, DOARGS_3): Remove.
14083         (DOARGS_4, DOARGS_5, DOARGS_6, DOARGS_7): Remove.
14084         (UNDOARGS_0, UNDOARGS_1, UNDOARGS_2, UNDOARGS_3): Remove.
14085         (UNDOARGS_4, UNDOARGS_5, UNDOARGS_6, UNDOARGS_7): Remove.
14087         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (DO_CALL): Fix
14088         block comment.
14090         * sysdeps/unix/sysv/linux/alpha/vfork.S (vfork, __vfork): Only
14091         define if !NOT_IN_libc.
14092         * sysdeps/unix/sysv/linux/alpha/pt-vfork.S (vfork, __vfork): Only
14093         define with non-default symbol versions.
14095 2014-05-23  Richard Henderson  <rth@twiddle.net>
14097         * nptl/pt-vfork.c (vfork_resolve): Rename from vfork_ifunc.
14098         (vfork, __vfork): Define via compat_symbol.
14100         * nptl/pt-vfork.c: Error if !HAVE_IFUNC.
14101         [!HAVE_IFUNC] (vfork_compat): Remove.
14102         [!HAVE_IFUNC] (DEFINE_VFORK): Remove.
14104 2014-05-23  Joseph Myers  <joseph@codesourcery.com>
14106         [BZ #16978]
14107         * posix/tar.h [!__USE_XOPEN2K] (TSVTX): Define macro.
14108         * conform/Makefile (test-xfail-POSIX/tar.h/conform): Remove
14109         variable.
14111 2014-05-23  Richard Henderson  <rth@twiddle.net>
14113         * sysdeps/unix/sysv/linux/alpha/nptl/Makefile: Merge into...
14114         * sysdeps/unix/sysv/linux/alpha/Makefile: ... here.
14115         * sysdeps/unix/sysv/linux/alpha/nptl/Versions: Merge into...
14116         * sysdeps/unix/sysv/linux/alpha/Versions: ... here.
14118         * sysdeps/unix/sysv/linux/alpha/nptl/aio_cancel.c: Moved ...
14119         * sysdeps/unix/sysv/linux/alpha/aio_cancel.c: ... here.
14120         * sysdeps/unix/sysv/linux/alpha/nptl/bits/local_lim.h: Moved ...
14121         * sysdeps/unix/sysv/linux/alpha/bits/local_lim.h: ... here.
14122         * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h: Moved ...
14123         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h: ... here.
14124         * sysdeps/unix/sysv/linux/alpha/nptl/bits/semaphore.h: Moved ...
14125         * sysdeps/unix/sysv/linux/alpha/bits/semaphore.h: ... here.
14126         * sysdeps/unix/sysv/linux/alpha/nptl/c++-types.data: Moved ...
14127         * sysdeps/unix/sysv/linux/alpha/c++-types.data: ... here.
14128         * sysdeps/unix/sysv/linux/alpha/nptl/createthread.c: Moved ...
14129         * sysdeps/unix/sysv/linux/alpha/createthread.c: ... here.
14130         * sysdeps/unix/sysv/linux/alpha/nptl/ld.abilist: Moved ...
14131         * sysdeps/unix/sysv/linux/alpha/ld.abilist: ... here.
14132         * sysdeps/unix/sysv/linux/alpha/nptl/libBrokenLocale.abilist: Moved ...
14133         * sysdeps/unix/sysv/linux/alpha/libBrokenLocale.abilist: ... here.
14134         * sysdeps/unix/sysv/linux/alpha/nptl/libanl.abilist: Moved ...
14135         * sysdeps/unix/sysv/linux/alpha/libanl.abilist: ... here.
14136         * sysdeps/unix/sysv/linux/alpha/nptl/libc.abilist: Moved ...
14137         * sysdeps/unix/sysv/linux/alpha/libc.abilist: ... here.
14138         * sysdeps/unix/sysv/linux/alpha/nptl/libcrypt.abilist: Moved ...
14139         * sysdeps/unix/sysv/linux/alpha/libcrypt.abilist: ... here.
14140         * sysdeps/unix/sysv/linux/alpha/nptl/libdl.abilist: Moved ...
14141         * sysdeps/unix/sysv/linux/alpha/libdl.abilist: ... here.
14142         * sysdeps/unix/sysv/linux/alpha/nptl/libm.abilist: Moved ...
14143         * sysdeps/unix/sysv/linux/alpha/libm.abilist: ... here.
14144         * sysdeps/unix/sysv/linux/alpha/nptl/libnsl.abilist: Moved ...
14145         * sysdeps/unix/sysv/linux/alpha/libnsl.abilist: ... here.
14146         * sysdeps/unix/sysv/linux/alpha/nptl/libpthread.abilist: Moved ...
14147         * sysdeps/unix/sysv/linux/alpha/libpthread.abilist: ... here.
14148         * sysdeps/unix/sysv/linux/alpha/nptl/libresolv.abilist: Moved ...
14149         * sysdeps/unix/sysv/linux/alpha/libresolv.abilist: ... here.
14150         * sysdeps/unix/sysv/linux/alpha/nptl/librt.abilist: Moved ...
14151         * sysdeps/unix/sysv/linux/alpha/librt.abilist: ... here.
14152         * sysdeps/unix/sysv/linux/alpha/nptl/libthread_db.abilist: Moved ...
14153         * sysdeps/unix/sysv/linux/alpha/libthread_db.abilist: ... here.
14154         * sysdeps/unix/sysv/linux/alpha/nptl/libutil.abilist: Moved ...
14155         * sysdeps/unix/sysv/linux/alpha/libutil.abilist: ... here.
14156         * sysdeps/unix/sysv/linux/alpha/nptl/localplt.data: Moved ...
14157         * sysdeps/unix/sysv/linux/alpha/localplt.data: ... here.
14158         * sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h: Moved ...
14159         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: ... here.
14160         * sysdeps/unix/sysv/linux/alpha/nptl/sem_post.c: Moved ...
14161         * sysdeps/unix/sysv/linux/alpha/sem_post.c: ... here.
14162         * sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h: Moved ...
14163         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: ... here.
14164         * sysdeps/unix/sysv/linux/alpha/nptl/timer_create.c: Moved ...
14165         * sysdeps/unix/sysv/linux/alpha/timer_create.c: ... here.
14166         * sysdeps/unix/sysv/linux/alpha/nptl/timer_delete.c: Moved ...
14167         * sysdeps/unix/sysv/linux/alpha/timer_delete.c: ... here.
14168         * sysdeps/unix/sysv/linux/alpha/nptl/timer_getoverr.c: Moved ...
14169         * sysdeps/unix/sysv/linux/alpha/timer_getoverr.c: ... here.
14170         * sysdeps/unix/sysv/linux/alpha/nptl/timer_gettime.c: Moved ...
14171         * sysdeps/unix/sysv/linux/alpha/timer_gettime.c: ... here.
14172         * sysdeps/unix/sysv/linux/alpha/nptl/timer_settime.c: Moved ...
14173         * sysdeps/unix/sysv/linux/alpha/timer_settime.c: ... here.
14175         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove vfork.
14176         * sysdeps/unix/sysv/linux/alpha/nptl/vfork.S: Move file ...
14177         * sysdeps/unix/sysv/linux/alpha/vfork.S: ... here.  Restore PID
14178         before exiting on error.
14179         (__libc_vfork): New strong alias.
14180         * sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S: Remove file.
14181         * sysdeps/unix/sysv/linux/alpha/pt-vfork.S: New file.
14183         * sysdeps/unix/sysv/linux/alpha/clone.S: Deconditionalize the code
14184         that was previously under [RESET_PID].
14185         * sysdeps/unix/sysv/linux/alpha/nptl/clone.S: File removed.
14187         * sysdeps/unix/sysv/linux/alpha/nptl/fork.c: Remove file.
14189 2014-05-23  Joseph Myers  <joseph@codesourcery.com>
14191         [BZ #16977]
14192         * sysdeps/i386/fpu/e_log10.S (__ieee754_log10): Take absolute
14193         value when x - 1 is zero.
14194         * sysdeps/i386/fpu/e_log10f.S (__ieee754_log10f): Likewise.
14195         * sysdeps/i386/fpu/e_log10l.S (__ieee754_log10l): Likewise.
14196         * sysdeps/ieee754/ldbl-128/e_log10l.c (__ieee754_log10l): Return
14197         0.0L for an argument of 1.0L.
14198         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c (__ieee754_log10l):
14199         Likewise.
14200         * sysdeps/x86_64/fpu/e_log10l.S (__ieee754_log10l): Take absolute
14201         value when x - 1 is zero.
14202         * math/libm-test.inc (log10_test): Use ALL_RM_TEST.
14203         * sysdeps/i386/fpu/libm-test-ulps: Update.
14204         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
14206 2014-05-23  Rasmus Villemoes  <rv@rasmusvillemoes.dk>
14208         * manual/filesys.texi (Scanning Directory Content): Fix prototype of
14209         alphasort and versionsort.
14211 2014-05-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14213         * sysdeps/powerpc/fpu/math_private.h [copysign]: Remove unneeded
14214         macro.
14215         [copysignf]: Likewise.
14217 2014-05-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
14219         * crypt/md5-crypt.c: Fix formatting.
14221 2014-05-22  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
14223         * crypt/md5-crypt.c (__md5_crypt_r): Remove a nested function.
14224         (b64_from_24bit): New function.
14226 2014-05-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14228         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c (memchr): Remove
14229         libc_hidden_builtin_def to ifunc.
14230         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c
14231         [libc_hidden_builtin_def]: Define hidden definition to __memchr_ppc32.
14233 2014-05-21  Roland McGrath  <roland@hack.frob.com>
14235         * sysdeps/unix/sysv/linux/aarch64/arch-fork.h: New file.
14236         * sysdeps/unix/sysv/linux/aarch64/nptl/fork.c: File removed.
14238 2014-05-21  Joseph Myers  <joseph@codesourcery.com>
14240         * nscd/Depend (linuxthreads): Remove.
14241         (nptl): Add.
14242         * resolv/Depend (linuxthreads): Remove.
14243         * rt/Depend (linuxthreads): Remove.
14245         * Makeconfig [$(build-hardcoded-path-in-tests) = yes]
14246         (rtld-tests-LDFLAGS): Use $(elf-objpfx) instead of
14247         $(common-objpfx)elf/.
14248         (link-libc-before-gnulib): Likewise.
14249         (elfobjdir): Remove variable.
14250         * Makefile (install): Use $(elf-objpfx) instead of
14251         $(common-objpfx)elf/.
14252         * Makerules (link-libc-args): Use $(elf-objpfx) instead of
14253         $(elfobjdir)/.
14254         (link-libc-deps): Likewise.
14255         ($(common-objpfx)libc.so): Likewise.
14256         ($(common-objpfx)linkobj/libc.so): Likewise.
14257         [$(cross-compiling) = no] (symbolic-link-prog): Use $(elf-objpfx)
14258         instead of $(common-objpfx)elf/.
14259         (symbolic-link-list): Likewise.
14260         * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
14261         [$(cross-compiling) = no]: Likewise.
14262         * sysdeps/arm/Makefile (gnulib-arch): Use $(elf-objpfx) instead of
14263         $(elfobjdir)/.
14264         (static-gnulib-arch): Likewise.
14265         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
14266         [$(cross-compiling) = no]: Use $(elf-objpfx) instead of
14267         $(common-objpfx)elf/.
14269 2014-05-21  Richard Henderson  <rth@redhat.com>
14271         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
14272         (SINGLE_THREAD_P): Use the correct width load.  Fold
14273         into the ldr offset.
14275         * sysdeps/unix/sysv/linux/aarch64/sysdep.h [RTLD_PRIVATE_ERRNO]
14276         (SYSCALL_ERROR_HANDLER): Fold add insn into str offset.
14278 2014-05-20  Joseph Myers  <joseph@codesourcery.com>
14280         * sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c
14281         (libgcc_s_resume): Use __attribute_used__.
14282         * sysdeps/unix/sysv/linux/arm/unwind-resume.c (libgcc_s_resume):
14283         Likewise.
14285 2014-05-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14287         * sysdeps/powerpc/fpu/math_private.h [__copysignf]: Fix copysign macro
14288         optimization when used with float constants.
14290         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
14292 2014-05-20  Aurelien Jarno  <aurelien@aurel32.net>
14294         [BZ #16915]
14295         * locale/nl_langinfo_l.c: Make direct reference to every
14296         _nl_current_CATEGORY symbol.
14297         * localedata/Makefile (test-srcs): Add tst-langinfo-static.
14298         (tests-static): Add tst-langinfo-static.
14299         (tests-special): Add tst-langinfo-static.out.
14300         ($(objpfx)tst-langinfo.out): Redirect output.
14301         ($(objpfx)tst-langinfo-static.out): New.
14302         * localedata/tst-langinfo.sh: Send output to stdout.
14303         * localedata/tst-langinfo-static.c: New file.
14305         [BZ #16965]
14306         * stdlib/strtod_l.c (round_and_return): Add code to shift limbs
14307         when the shift amount is modulo the limb size.
14309 2014-05-20  Richard Henderson  <rth@redhat.com>
14311         [BZ #16967]
14312         * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h (struct sigaction):
14313         Change type of sa_flags from unsigned int to int.
14315         [BZ #16966]
14316         * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h: Remove file.
14318         * sysdeps/alpha/dl-machine.h (ELF_MACHINE_NO_RELA): Define.
14320 2014-05-20  Will Newton  <will.newton@linaro.org>
14322         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
14323         Test the return value of the system call in the nocancel case.
14325 2014-05-20  Will Newton  <will.newton@linaro.org>
14326             Yvan Roux  <yvan.roux@linaro.org>
14328         * sysdeps/unix/sysv/linux/aarch64/sys/user.h: Remove unused
14329         #include of asm/ptrace.h.
14330         (PTRACE_GET_THREAD_AREA): Remove #undef.
14331         (PTRACE_GETHBPREGS): Likewise.
14332         (PTRACE_SETHBPREGS): Likewise.
14333         (struct user_regs_struct): New structure.
14334         (struct user_fpsimd_struct): New structure.
14335         * sysdeps/unix/sysv/linux/aarch64/sys/procfs.h: Remove unused
14336         #include of asm/ptrace.h and second #include of sys/user.h.
14337         (PTRACE_GET_THREAD_AREA): Remove #undef.
14338         (PTRACE_GETHBPREGS): Likewise.
14339         (PTRACE_SETHBPREGS): Likewise.
14340         (ELF_NGREG): Use new struct user_regs_struct.
14341         (elf_fpregset_t): Use new struct user_fpsimd_struct.
14343 2014-05-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14345         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypof.c: Moved ...
14346         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf.c: ... here.
14348 2014-05-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
14350         [BZ #16958]
14351         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Add missing
14352         membar to avoid block loads/stores to overlap previous stores.
14354 2014-05-17  Richard Henderson  <rth@redhat.com>
14356         * sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h (PSEUDO):
14357         Create the __##syscall_name##_nocancel entry point.
14358         * sysdeps/unix/sysv/linux/alpha/sigsuspend.S (__sigsuspend_nocancel):
14359         Remove; let the sysdep-cancel.h code create it.
14361 2014-05-17  David S. Miller  <davem@davemloft.net>
14363         * sysdeps/unix/sysv/linux/sparc/bits/termios.h (PAGEOUT, WRAP):
14364         Protect with __USE_GNU.
14365         (TIOCSET_TEMPT): Likewise.
14366         (TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
14367         TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI): Remove as
14368         these are already provided in bits/ioctl-types.h
14370 2014-05-16  Roland McGrath  <roland@hack.frob.com>
14372         * sysdeps/unix/sysv/linux/alpha/arch-fork.h: New file.
14373         * sysdeps/unix/sysv/linux/ia64/nptl/fork.c: File removed.
14375         * sysdeps/unix/sysv/linux/not-cancel.h (waitpid_not_cancel):
14376         Use wait4 regardless of [__NR_waitpid].
14378 2014-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
14380         PR libgcc/60166
14381         * sysdeps/arm/soft-fp/sfp-machine.h (_FP_NANFRAC_S, _FP_NANFRAC_D)
14382         (_FP_NANSIGN_Q): Set the quiet bit.
14384 2014-05-16  Joseph Myers  <joseph@codesourcery.com>
14386         * benchtests/Makefile
14387         ($(addprefix $(objpfx)bench-,$(bench-math))): Depend on $(libm),
14388         not $(common-objpfx)math/libm.so.
14389         ($(addprefix $(objpfx)bench-,$(bench-pthread))): Depend on
14390         $(shared-thread-library), not $(common-objpfx)nptl/libpthread.so.
14391         * elf/Makefile ($(objpfx)noload): Depend on $(libdl), not
14392         $(common-objpfx)dlfcn/libdl.so.
14393         ($(objpfx)tst-audit8): Depend on $(libm), not
14394         $(common-objpfx)math/libm.so.
14395         * malloc/Makefile ($(objpfx)libmemusage.so): Depend on $(libdl),
14396         not $(common-objpfx)dlfcn/libdl.so.
14397         * math/Makefile
14398         ($(addprefix $(objpfx),$(filter-out $(tests-static),$(tests)))):
14399         Depend on $(libm), not $(objpfx)libm.so.  Do not condition on
14400         [$(build-shared) = yes].
14401         ($(objpfx)test-fenv-tls): Depend on $(shared-thread-library), not
14402         $(common-objpfx)nptl/libpthread.so.
14403         * misc/Makefile ($(objpfx)tst-tsearch): Depend on $(libm), not
14404         $(common-objpfx)math/libm.so$(libm.so-version) or
14405         $(common-objpfx)math/libm.a depending on [$(build-shared) = yes].
14406         * nptl/Makefile ($(objpfx)tst-unload): Depend on $(libdl), not
14407         $(common-objpfx)dlfcn/libdl.so.
14408         * setjmp/Makefile (link-libm): Remove variable.
14409         ($(objpfx)tst-setjmp-fp): Depend on $(libm), not $(link-libm).
14410         * stdio-common/Makefile (link-libm): Remove variable.
14411         ($(objpfx)tst-printf-round): Depend on $(libm), not $(link-libm).
14412         * stdlib/Makefile (link-libm): Remove variable.
14413         ($(objpfx)bug-getcontext): Depend on $(libm), not $(link-libm).
14414         ($(objpfx)tst-strtod-round): Likewise.
14415         ($(objpfx)tst-tininess): Likewise.
14416         ($(objpfx)tst-strtod-underflow): Likewise.
14417         ($(objpfx)tst-strtod6): Likewise.
14418         ($(objpfx)tst-tls-atexit): Depend on $(shared-thread-library) and
14419         $(libdl), not $(common-objpfx)nptl/libpthread.so and
14420         $(common-objpfx)dlfcn/libdl.so.
14422 2014-05-16  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14424         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_MISC]: Guard
14425         BSD terminal modes definitions.
14427 2014-05-16  Roland McGrath  <roland@hack.frob.com>
14429         * sysdeps/unix/sysv/linux/arm/arch-fork.h: New file.
14430         * sysdeps/unix/sysv/linux/arm/fork.c: File removed.
14432         * sysdeps/unix/sysv/linux/arch-fork.h: New file.
14433         * sysdeps/unix/sysv/linux/i386/fork.h: Moved ...
14434         * sysdeps/unix/sysv/linux/i386/arch-fork.h: ... here.
14435         Don't do #include_next.
14436         * sysdeps/unix/sysv/linux/x86_64/fork.h: Moved ...
14437         * sysdeps/unix/sysv/linux/x86_64/arch-fork.h: ... here.
14438         Don't do #include_next.
14439         * sysdeps/unix/sysv/linux/mips/arch-fork.h: New file.
14440         * sysdeps/unix/sysv/linux/mips/fork.h: File removed.
14441         * sysdeps/unix/sysv/linux/powerpc/arch-fork.h: New file.
14442         * sysdeps/unix/sysv/linux/powerpc/fork.h: File removed.
14444 2014-05-16  Allan McRae  <allan@archlinux.org>
14446         * po/sv.po: Update Swedish translation from translation project.
14448         * timezone/Makefile ($(objpfx)tzselect): Use correct variable
14449         in sed expression.
14451 2014-05-16  Aurelien Jarno  <aurelien@aurel32.net>
14453         [BZ #16917]
14454         * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_internal): Return
14455         errno if the TIOCGPTN ioctl fails with an error different than
14456         EINVAL.
14457         * login/tst-ptsname.c: New file.
14458         * login/Makefile (tests): Add tst-ptsname.
14460         [BZ #16943]
14461         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Declare prlimit
14462         and prlimit64.
14464 2014-05-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
14466         [BZ #16849]
14467         * sysdeps/posix/getaddrinfo.c (gaih_inet): Only check for
14468         herrno to return EAI_AGAIN.
14470 2014-05-14  Roland McGrath  <roland@hack.frob.com>
14472         * sysdeps/unix/sysv/linux/i386/nptl/c++-types.data: Moved ...
14473         * sysdeps/unix/sysv/linux/i386/c++-types.data: ... here.
14474         * sysdeps/unix/sysv/linux/i386/nptl/ld.abilist: Moved ...
14475         * sysdeps/unix/sysv/linux/i386/ld.abilist: ... here.
14476         * sysdeps/unix/sysv/linux/i386/nptl/libBrokenLocale.abilist: Moved ...
14477         * sysdeps/unix/sysv/linux/i386/libBrokenLocale.abilist: ... here.
14478         * sysdeps/unix/sysv/linux/i386/nptl/libanl.abilist: Moved ...
14479         * sysdeps/unix/sysv/linux/i386/libanl.abilist: ... here.
14480         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Moved ...
14481         * sysdeps/unix/sysv/linux/i386/libc.abilist: ... here.
14482         * sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist: Moved ...
14483         * sysdeps/unix/sysv/linux/i386/libcrypt.abilist: ... here.
14484         * sysdeps/unix/sysv/linux/i386/nptl/libdl.abilist: Moved ...
14485         * sysdeps/unix/sysv/linux/i386/libdl.abilist: ... here.
14486         * sysdeps/unix/sysv/linux/i386/nptl/libm.abilist: Moved ...
14487         * sysdeps/unix/sysv/linux/i386/libm.abilist: ... here.
14488         * sysdeps/unix/sysv/linux/i386/nptl/libnsl.abilist: Moved ...
14489         * sysdeps/unix/sysv/linux/i386/libnsl.abilist: ... here.
14490         * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: Moved ...
14491         * sysdeps/unix/sysv/linux/i386/libpthread.abilist: ... here.
14492         * sysdeps/unix/sysv/linux/i386/nptl/libresolv.abilist: Moved ...
14493         * sysdeps/unix/sysv/linux/i386/libresolv.abilist: ... here.
14494         * sysdeps/unix/sysv/linux/i386/nptl/librt.abilist: Moved ...
14495         * sysdeps/unix/sysv/linux/i386/librt.abilist: ... here.
14496         * sysdeps/unix/sysv/linux/i386/nptl/libthread_db.abilist: Moved ...
14497         * sysdeps/unix/sysv/linux/i386/libthread_db.abilist: ... here.
14498         * sysdeps/unix/sysv/linux/i386/nptl/libutil.abilist: Moved ...
14499         * sysdeps/unix/sysv/linux/i386/libutil.abilist: ... here.
14500         * sysdeps/unix/sysv/linux/i386/nptl/localplt.data: Moved ...
14501         * sysdeps/unix/sysv/linux/i386/localplt.data: ... here.
14502         * sysdeps/unix/sysv/linux/x86_64/64/nptl/c++-types.data: Moved ...
14503         * sysdeps/unix/sysv/linux/x86_64/64/c++-types.data: ... here.
14504         * sysdeps/unix/sysv/linux/x86_64/64/nptl/ld.abilist: Moved ...
14505         * sysdeps/unix/sysv/linux/x86_64/64/ld.abilist: ... here.
14506         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libBrokenLocale.abilist:
14507         Moved ...
14508         * sysdeps/unix/sysv/linux/x86_64/64/libBrokenLocale.abilist: ... here.
14509         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libanl.abilist: Moved ...
14510         * sysdeps/unix/sysv/linux/x86_64/64/libanl.abilist: ... here.
14511         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Moved ...
14512         * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: ... here.
14513         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist: Moved ...
14514         * sysdeps/unix/sysv/linux/x86_64/64/libcrypt.abilist: ... here.
14515         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libdl.abilist: Moved ...
14516         * sysdeps/unix/sysv/linux/x86_64/64/libdl.abilist: ... here.
14517         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libm.abilist: Moved ...
14518         * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: ... here.
14519         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libnsl.abilist: Moved ...
14520         * sysdeps/unix/sysv/linux/x86_64/64/libnsl.abilist: ... here.
14521         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist: Moved ...
14522         * sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist: ... here.
14523         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libresolv.abilist: Moved ...
14524         * sysdeps/unix/sysv/linux/x86_64/64/libresolv.abilist: ... here.
14525         * sysdeps/unix/sysv/linux/x86_64/64/nptl/librt.abilist: Moved ...
14526         * sysdeps/unix/sysv/linux/x86_64/64/librt.abilist: ... here.
14527         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libthread_db.abilist: Moved ...
14528         * sysdeps/unix/sysv/linux/x86_64/64/libthread_db.abilist: ... here.
14529         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libutil.abilist: Moved ...
14530         * sysdeps/unix/sysv/linux/x86_64/64/libutil.abilist: ... here.
14531         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/c++-types.data: Moved ...
14532         * sysdeps/unix/sysv/linux/x86_64/x32/c++-types.data: ... here.
14533         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/ld.abilist: Moved ...
14534         * sysdeps/unix/sysv/linux/x86_64/x32/ld.abilist: ... here.
14535         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libBrokenLocale.abilist:
14536         Moved ...
14537         * sysdeps/unix/sysv/linux/x86_64/x32/libBrokenLocale.abilist: ... here.
14538         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libanl.abilist: Moved ...
14539         * sysdeps/unix/sysv/linux/x86_64/x32/libanl.abilist: ... here.
14540         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Moved ...
14541         * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: ... here.
14542         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libcrypt.abilist: Moved ...
14543         * sysdeps/unix/sysv/linux/x86_64/x32/libcrypt.abilist: ... here.
14544         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libdl.abilist: Moved ...
14545         * sysdeps/unix/sysv/linux/x86_64/x32/libdl.abilist: ... here.
14546         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libm.abilist: Moved ...
14547         * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: ... here.
14548         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libnsl.abilist: Moved ...
14549         * sysdeps/unix/sysv/linux/x86_64/x32/libnsl.abilist: ... here.
14550         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist: Moved ...
14551         * sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist: ... here.
14552         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libresolv.abilist: Moved ...
14553         * sysdeps/unix/sysv/linux/x86_64/x32/libresolv.abilist: ... here.
14554         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/librt.abilist: Moved ...
14555         * sysdeps/unix/sysv/linux/x86_64/x32/librt.abilist: ... here.
14556         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libthread_db.abilist:
14557         Moved ...
14558         * sysdeps/unix/sysv/linux/x86_64/x32/libthread_db.abilist: ... here.
14559         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libutil.abilist: Moved ...
14560         * sysdeps/unix/sysv/linux/x86_64/x32/libutil.abilist: ... here.
14562         * nptl/sysdeps/unix/sysv/linux/x86/Makefile: File removed.
14563         * sysdeps/unix/sysv/linux/x86/Makefile [$(subdir) = nptl]
14564         (libpthread-sysdep_routines): Add elision-related stuff here instead.
14565         * nptl/sysdeps/unix/sysv/linux/x86/elision-conf.c: Moved ...
14566         * sysdeps/unix/sysv/linux/x86/elision-conf.c: ... here.
14567         * nptl/sysdeps/unix/sysv/linux/x86/elision-conf.h: Moved ...
14568         * sysdeps/unix/sysv/linux/x86/elision-conf.h: ... here.
14569         * nptl/sysdeps/unix/sysv/linux/x86/elision-lock.c: Moved ...
14570         * sysdeps/unix/sysv/linux/x86/elision-lock.c: ... here.
14571         * nptl/sysdeps/unix/sysv/linux/x86/elision-timed.c: Moved ...
14572         * sysdeps/unix/sysv/linux/x86/elision-timed.c: ... here.
14573         * nptl/sysdeps/unix/sysv/linux/x86/elision-trylock.c: Moved ...
14574         * sysdeps/unix/sysv/linux/x86/elision-trylock.c: ... here.
14575         * nptl/sysdeps/unix/sysv/linux/x86/elision-unlock.c: Moved ...
14576         * sysdeps/unix/sysv/linux/x86/elision-unlock.c: ... here.
14577         * nptl/sysdeps/unix/sysv/linux/x86/force-elision.h: Moved ...
14578         * sysdeps/unix/sysv/linux/x86/force-elision.h: ... here.
14579         * nptl/sysdeps/unix/sysv/linux/x86/hle.h: Moved ...
14580         * sysdeps/unix/sysv/linux/x86/hle.h: ... here.
14581         * nptl/sysdeps/unix/sysv/linux/x86/init-arch.c: Moved ...
14582         * sysdeps/unix/sysv/linux/x86/init-arch.c: ... here.
14583         * nptl/sysdeps/unix/sysv/linux/x86/init-arch.h: Moved ...
14584         * sysdeps/unix/sysv/linux/x86/init-arch.h: ... here.
14585         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: Moved ...
14586         * sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: ... here.
14587         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c: Moved ...
14588         * sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c: ... here.
14589         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c: Moved ...
14590         * sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c: ... here.
14591         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c: Moved ...
14592         * sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c: ... here.
14594         * sysdeps/unix/sysv/linux/mips/fork.h: New file.
14595         * sysdeps/unix/sysv/linux/mips/nptl/fork.c: File removed.
14597         * nptl/sysdeps/unix/sysv/linux/i386/Implies: File removed.
14598         * nptl/sysdeps/unix/sysv/linux/i386/i786/Implies: Moved ...
14599         * sysdeps/unix/sysv/linux/i386/i786/Implies: ... here.
14600         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: Moved ...
14601         * sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: ... here.
14602         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S:
14603         Moved ...
14604         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S: ... here.
14605         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S:
14606         Moved ...
14607         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S: ... here.
14608         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S:
14609         Moved ...
14610         * sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S: ... here.
14611         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S:
14612         Moved ...
14613         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S: ... here.
14614         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: Moved ...
14615         * sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: ... here.
14616         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S:
14617         Moved ...
14618         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S: ... here.
14619         * nptl/sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S: Moved ...
14620         * sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S: ... here.
14621         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S: Moved ...
14622         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S: ... here.
14623         * nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S: Moved ...
14624         * sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S: ... here.
14625         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S:
14626         Moved ...
14627         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S: ... here.
14628         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S:
14629         Moved ...
14630         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S:
14631         ... here.
14632         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: Moved ...
14633         * sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: ... here.
14634         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_post.S: Moved ...
14635         * sysdeps/unix/sysv/linux/i386/i586/sem_post.S: ... here.
14636         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S:
14637         Moved ...
14638         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S:
14639         ... here.
14640         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S:
14641         Moved ...
14642         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S: ... here.
14643         * nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S: Moved ...
14644         * sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S: ... here.
14645         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: Moved ...
14646         * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: ... here.
14647         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S:
14648         Moved ...
14649         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: ... here.
14650         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S:
14651         Moved ...
14652         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: ... here.
14653         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S:
14654         Moved ...
14655         * sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S: ... here.
14656         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S:
14657         Moved ...
14658         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: ... here.
14659         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: Moved ...
14660         * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: ... here.
14661         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S:
14662         Moved ...
14663         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S: ... here.
14664         * nptl/sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: Moved ...
14665         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: ... here.
14666         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Moved ...
14667         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: ... here.
14668         * nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S: Moved ...
14669         * sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S: ... here.
14670         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S:
14671         Moved ...
14672         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S: ... here.
14673         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
14674         Moved ...
14675         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
14676         ... here.
14677         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: Moved ...
14678         * sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: ... here.
14679         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S: Moved ...
14680         * sysdeps/unix/sysv/linux/i386/i486/sem_post.S: ... here.
14681         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
14682         Moved ...
14683         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
14684         ... here.
14685         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S:
14686         Moved ...
14687         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: ... here.
14688         * nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Moved ...
14689         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: ... here.
14690         * nptl/sysdeps/unix/sysv/linux/i386/dl-sysdep.h: Moved ...
14691         * sysdeps/unix/sysv/linux/i386/dl-sysdep.h: ... here.
14692         * nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h: Moved ...
14693         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: ... here.
14694         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: Moved ...
14695         * sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: ... here.
14696         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S:
14697         Moved ...
14698         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S: ... here.
14699         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S:
14700         Moved ...
14701         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S: ... here.
14702         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S:
14703         Moved ...
14704         * sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S: ... here.
14705         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S:
14706         Moved ...
14707         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S: ... here.
14708         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: Moved ...
14709         * sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: ... here.
14710         * nptl/sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h: Moved ...
14711         * sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h: ... here.
14712         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S:
14713         Moved ...
14714         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S: ... here.
14715         * nptl/sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S: Moved ...
14716         * sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S: ... here.
14717         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S: Moved ...
14718         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S: ... here.
14719         * nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S: Moved ...
14720         * sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S: ... here.
14721         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S:
14722         Moved ...
14723         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S: ... here.
14724         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S:
14725         Moved ...
14726         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S:
14727         ... here.
14728         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: Moved ...
14729         * sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: ... here.
14730         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_post.S: Moved ...
14731         * sysdeps/unix/sysv/linux/i386/i686/sem_post.S: ... here.
14732         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S:
14733         Moved ...
14734         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S:
14735         ... here.
14736         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S:
14737         Moved ...
14738         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S: ... here.
14739         * nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S: Moved ...
14740         * sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S: ... here.
14741         * nptl/sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Moved ...
14742         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: ... here.
14743         * nptl/sysdeps/unix/sysv/linux/i386/smp.h: Moved ...
14744         * sysdeps/unix/sysv/linux/i386/smp.h: ... here.
14745         * nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S: Moved ...
14746         * sysdeps/unix/sysv/linux/i386/pthread_once.S: ... here.
14747         * nptl/sysdeps/unix/sysv/linux/i386/createthread.c: Moved ...
14748         * sysdeps/unix/sysv/linux/i386/createthread.c: ... here.
14750         * sysdeps/unix/sysv/linux/powerpc/fork.h: New file.
14751         * nptl/sysdeps/unix/sysv/linux/powerpc/fork.c: File removed.
14753         * nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_init.c: File removed.
14754         * nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_unlock.S: File removed.
14756         * nptl/sysdeps/unix/sysv/linux/x86_64/Implies: File removed.
14757         * nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S: Moved ...
14758         * sysdeps/unix/sysv/linux/x86_64/cancellation.S: ... here.
14759         * nptl/sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S: Moved ...
14760         * sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S: ... here.
14761         * nptl/sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S: Moved ...
14762         * sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S: ... here.
14763         * nptl/sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S: Moved ...
14764         * sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S: ... here.
14765         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Moved ...
14766         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: ... here.
14767         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Moved ...
14768         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: ... here.
14769         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S: Moved ...
14770         * sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S: ... here.
14771         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: Moved ...
14772         * sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: ... here.
14773         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S:
14774         Moved ...
14775         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S: ... here.
14776         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: Moved ...
14777         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: ... here.
14778         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:
14779         Moved ...
14780         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: ... here.
14781         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Moved ...
14782         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: ... here.
14783         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Moved ...
14784         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: ... here.
14785         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: Moved ...
14786         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: ... here.
14787         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S:
14788         Moved ...
14789         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S: ... here.
14790         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S:
14791         Moved ...
14792         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S: ... here.
14793         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: Moved ...
14794         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: ... here.
14795         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: Moved ...
14796         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: ... here.
14797         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c: Moved ...
14798         * sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c: ... here.
14799         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_post.S: Moved ...
14800         * sysdeps/unix/sysv/linux/x86_64/sem_post.S: ... here.
14801         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: Moved ...
14802         * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: ... here.
14803         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: Moved ...
14804         * sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: ... here.
14805         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S: Moved ...
14806         * sysdeps/unix/sysv/linux/x86_64/sem_wait.S: ... here.
14807         * nptl/sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Moved ...
14808         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: ... here.
14810         * nptl/sysdeps/unix/sysv/linux/fork.c: Use <> for fork.h #include.
14811         * nptl/sysdeps/unix/sysv/linux/x86_64/fork.c: File removed.
14812         * sysdeps/unix/sysv/linux/x86_64/fork.h: New file.
14813         * nptl/sysdeps/unix/sysv/linux/i386/fork.c: File removed.
14814         * sysdeps/unix/sysv/linux/i386/fork.h: New file.
14816         * nptl/sysdeps/unix/sysv/linux/i386/not-cancel.h: Moved ...
14817         * sysdeps/unix/sysv/linux/not-cancel.h: ... here.
14818         * nptl/sysdeps/unix/sysv/linux/sparc/not-cancel.h: File removed.
14819         * nptl/sysdeps/unix/sysv/linux/sh/not-cancel.h: File removed.
14820         * nptl/sysdeps/unix/sysv/linux/powerpc/not-cancel.h: File removed.
14821         * nptl/sysdeps/unix/sysv/linux/x86_64/not-cancel.h: File removed.
14822         * nptl/sysdeps/unix/sysv/linux/s390/not-cancel.h: File removed.
14823         * sysdeps/unix/sysv/linux/generic/not-cancel.h: File removed.
14824         * sysdeps/unix/sysv/linux/generic/nptl/not-cancel.h: File removed.
14825         * sysdeps/unix/sysv/linux/m68k/nptl/not-cancel.h: File removed.
14827         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_init.c: File removed.
14828         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_unlock.S: Likewise.
14830         * nptl/sysdeps/unix/sysv/linux/x86_64/compat-timer.h: Moved ...
14831         * sysdeps/unix/sysv/linux/x86_64/compat-timer.h: ... here.
14832         * nptl/sysdeps/unix/sysv/linux/x86_64/Versions: Remove, merge into ...
14833         * sysdeps/unix/sysv/linux/x86_64/Versions: ... here.
14834         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_create.c: Moved ...
14835         * sysdeps/unix/sysv/linux/x86_64/timer_create.c: here.
14836         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_delete.c: Moved ...
14837         * sysdeps/unix/sysv/linux/x86_64/timer_delete.c: ... here
14838         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c: Moved ...
14839         * sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c: ... here
14840         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_gettime.c: Moved ...
14841         * sysdeps/unix/sysv/linux/x86_64/timer_gettime.c: ... here
14842         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_settime.c: Moved ...
14843         * sysdeps/unix/sysv/linux/x86_64/timer_settime.c: ... here
14844         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c:
14845         Update #include.
14846         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c:
14847         Likewise.
14848         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c:
14849         Likewise.
14850         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c:
14851         Likewise.
14852         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c:
14853         Likewise.
14854         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c:
14855         Likewise.
14856         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c:
14857         Likewise.
14858         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c:
14859         Likewise.
14860         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c:
14861         Likewise.
14862         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c:
14863         Likewise.
14864         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: Likewise.
14865         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: Likewise.
14866         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: Likewise.
14867         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: Likewise.
14868         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: Likewise.
14869         * sysdeps/unix/sysv/linux/alpha/nptl/timer_create.c: Likewise.
14870         * sysdeps/unix/sysv/linux/alpha/nptl/timer_delete.c: Likewise.
14871         * sysdeps/unix/sysv/linux/alpha/nptl/timer_getoverr.c: Likewise.
14872         * sysdeps/unix/sysv/linux/alpha/nptl/timer_gettime.c: Likewise.
14873         * sysdeps/unix/sysv/linux/alpha/nptl/timer_settime.c: Likewise.
14874         * sysdeps/unix/sysv/linux/ia64/nptl/timer_create.c: Likewise.
14875         * sysdeps/unix/sysv/linux/ia64/nptl/timer_delete.c: Likewise.
14876         * sysdeps/unix/sysv/linux/ia64/nptl/timer_getoverr.c: Likewise.
14877         * sysdeps/unix/sysv/linux/ia64/nptl/timer_gettime.c:  Likewise.
14878         * sysdeps/unix/sysv/linux/ia64/nptl/timer_settime.c:  Likewise.
14880         * sysdeps/unix/sysv/linux/x86_64/clone.S: Deconditionalize the code
14881         that was previously under [RESET_PID].
14882         * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
14883         * nptl/sysdeps/unix/sysv/linux/x86_64/clone.S: File removed.
14884         * nptl/sysdeps/unix/sysv/linux/i386/clone.S: File removed.
14886         * sysdeps/i386/nptl/Implies: New file.
14887         * sysdeps/x86_64/nptl/Implies: New file.
14888         * nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h: Moved ...
14889         * sysdeps/x86/nptl/bits/pthreadtypes.h: ... here.
14890         * nptl/sysdeps/unix/sysv/linux/x86/bits/semaphore.h: Moved ...
14891         * sysdeps/x86/nptl/bits/semaphore.h: ... here.
14893         * sysdeps/unix/sysv/linux/i386/vfork.S: Include <tcb-offsets.h>.
14894         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
14895         (__libc_vfork): New strong alias.
14896         * nptl/sysdeps/unix/sysv/linux/i386/vfork.S: File removed.
14897         * nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S: File removed.
14899         * sysdeps/unix/sysv/linux/x86_64/vfork.S: Include <tcb-offsets.h>.
14900         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
14901         (__libc_vfork): New strong alias.
14902         * nptl/sysdeps/unix/sysv/linux/x86_64/vfork.S: File removed.
14903         * nptl/sysdeps/unix/sysv/linux/x86_64/pt-vfork.S: File removed.
14905         * sysdeps/unix/sysv/linux/arm/vfork.S: Include <tcb-offsets.h>.
14906         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
14907         (__libc_vfork): New strong alias.
14908         * sysdeps/unix/sysv/linux/arm/nptl/vfork.S: File removed.
14909         * sysdeps/unix/sysv/linux/arm/nptl/pt-vfork.S: File removed.
14910         * nptl/pt-vfork.c: New file.
14911         * nptl/Versions (libc: GLIBC_PRIVATE): Add __libc_vfork.
14912         (libpthread: GLIBC_2.20): New version set (empty).
14914 2014-05-14  Will Newton  <will.newton@linaro.org>
14916         * stdlib/gmp-impl.h: Test USE_STACK_ALLOC #ifdef
14917         rather than #if.
14919 2014-05-14  Joseph Myers  <joseph@codesourcery.com>
14921         [BZ #16564]
14922         * sysdeps/i386/fpu/s_log1pl.S (__log1pl): Do not add 1 to positive
14923         arguments with exponent 65 or above.
14924         * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl): Do not add 1 to
14925         arguments 0x1p113L or above.
14926         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Do not add 1
14927         to arguments 0x1p107L or above.
14928         * sysdeps/x86_64/fpu/s_log1pl.S (__log1pl): Do not add 1 to
14929         positive arguments with exponent 65 or above.
14930         * math/auto-libm-test-in: Add more tests of log1p.
14931         * math/auto-libm-test-out: Regenerated.
14933         [BZ #16928]
14934         * math/s_cacos.c (__cacos): Ensure zero real part of result from
14935         non-finite arguments is +0.
14936         * math/s_cacosf.c (__cacosf): Likewise.
14937         * math/s_cacosl.c (__cacosl): Likewise.
14938         * math/libm-test.inc (cacos_test): Use ALL_RM_TEST.
14939         * sysdeps/i386/fpu/libm-test-ulps: Update.
14940         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
14942         [BZ #16927]
14943         * sysdeps/i386/fpu/e_acosh.S (__ieee754_acosh): Use fabs on x-1
14944         value.
14945         * sysdeps/i386/fpu/e_acoshf.S (__ieee754_acoshf): Likewise.
14946         * sysdeps/i386/fpu/e_acoshl.S (__ieee754_acoshl): Likewise.
14947         * sysdeps/ieee754/ldbl-96/e_acoshl.c (__ieee754_acoshl): Correct
14948         for explicit high bit of mantissa when testing for argument equal
14949         to 1.
14950         * math/libm-test.inc (acosh_test): Use ALL_RM_TEST.
14951         * sysdeps/i386/fpu/libm-test-ulps: Update.
14952         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
14954         [BZ #16516]
14955         * sysdeps/ieee754/dbl-64/s_erf.c (efx8): Remove variable.
14956         (__erf): Scale by 16 instead of 8 in potentially underflowing
14957         case.  Ensure exception if result actually underflows.
14958         * sysdeps/ieee754/flt-32/s_erff.c (efx8): Remove variable.
14959         (__erff): Scale by 16 instead of 8 in potentially underflowing
14960         case.  Ensure exception if result actually underflows.
14961         * sysdeps/ieee754/ldbl-128/s_erfl.c: Include <float.h>.
14962         (efx8): Remove variable.
14963         (__erfl): Scale by 16 instead of 8 in potentially underflowing
14964         case.  Ensure exception if result actually underflows.
14965         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Include <float.h>.
14966         (efx8): Remove variable.
14967         (__erfl): Scale by 16 instead of 8 in potentially underflowing
14968         case.  Ensure exception if result actually underflows.
14969         * sysdeps/ieee754/ldbl-96/s_erfl.c: Include <float.h>.
14970         (efx8): Remove variable.
14971         (__erfl): Scale by 16 instead of 8 in potentially underflowing
14972         case.  Ensure exception if result actually underflows.
14973         * math/auto-libm-test-in: Add more tests of erf.
14974         * math/auto-libm-test-out: Regenerated.
14976 2014-05-14  Andreas Schwab  <schwab@suse.de>
14978         * elf/rtld.c (_dl_start_final, _dl_start, init_tls, dl_main):
14979         Remove code conditionalized on USE___THREAD.
14981         * config.h.in (HAVE_PT_CHOWN): Define as 0.
14982         * sysdeps/unix/grantpt.c (grantpt): Check HAVE_PT_CHOWN for value,
14983         not definedness.
14985 2014-05-14  Joseph Myers  <joseph@codesourcery.com>
14987         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES):
14988         Define unconditionally.
14989         (__ASSUME_O_CLOEXEC): Likewise.
14990         (__ASSUME_SOCK_CLOEXEC): Likewise.
14991         (__ASSUME_IN_NONBLOCK): Likewise.
14992         (__ASSUME_PIPE2): Likewise.
14993         (__ASSUME_EVENTFD2): Likewise.
14994         (__ASSUME_SIGNALFD4): Likewise.
14995         (__ASSUME_DUP3): Likewise.
14996         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
14997         (__ASSUME_DUP3): Do not define.
14998         (__ASSUME_EVENTFD2): Likewise.
14999         (__ASSUME_IN_NONBLOCK): Likewise.
15000         (__ASSUME_O_CLOEXEC): Likewise.
15001         (__ASSUME_PIPE2): Likewise.
15002         (__ASSUME_SIGNALFD4): Likewise.
15003         (__ASSUME_SOCK_CLOEXEC): Likewise.
15004         (__ASSUME_UTIMES): Undefine.
15005         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
15006         (__ASSUME_UTIMES): Do not define.
15007         (__ASSUME_O_CLOEXEC): Likewise.
15008         (__ASSUME_SOCK_CLOEXEC): Likewise.
15009         (__ASSUME_IN_NONBLOCK): Undefine if [__LINUX_KERNEL_VERSION <
15010         0x020621] instead of defining if [__LINUX_KERNEL_VERSION >=
15011         0x020621].
15012         (__ASSUME_PIPE2): Likewise.
15013         (__ASSUME_EVENTFD2): Likewise.
15014         (__ASSUME_SIGNALFD4): Likewise.
15015         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_DUP3): Undefine.
15016         * sysdeps/unix/sysv/linux/arm/kernel-features.h (__ASSUME_UTIMES):
15017         Do not define.
15018         (__ASSUME_EVENTFD2): Likewise.
15019         (__ASSUME_SIGNALFD4): Likewise.
15020         * sysdeps/unix/sysv/linux/hppa/kernel-features.h
15021         (__ASSUME_32BITUIDS): Likewise.
15022         (__ASSUME_TRUNCATE64_SYSCALL): Likewise.
15023         (__ASSUME_IPC64): Likewise.
15024         (__ASSUME_ST_INO_64_BIT): Likewise.
15025         (__ASSUME_GETDENTS64_SYSCALL): Likewise.
15026         [__LINUX_KERNEL_VERSION < 0x030e00] (__ASSUME_UTIMES): Undefine.
15027         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
15028         (__ASSUME_UTIMES): Do not define.
15029         (__ASSUME_PSELECT): Likewise.
15030         (__ASSUME_PPOLL): Likewise.
15031         (__ASSUME_O_CLOEXEC): Likewise.
15032         (__ASSUME_SOCK_CLOEXEC): Likewise.
15033         (__ASSUME_IN_NONBLOCK): Likewise.
15034         (__ASSUME_PIPE2): Likewise.
15035         (__ASSUME_EVENTFD2): Likewise.
15036         (__ASSUME_SIGNALFD4): Likewise.
15037         (__ASSUME_DUP3): Likewise.
15038         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
15039         (__ASSUME_UTIMES): Likewise.
15040         (__ASSUME_O_CLOEXEC): Likewise.
15041         (__ASSUME_SOCK_CLOEXEC): Likewise.
15042         (__ASSUME_IN_NONBLOCK): Likewise.
15043         (__ASSUME_PIPE2): Likewise.
15044         (__ASSUME_EVENTFD2): Likewise.
15045         (__ASSUME_SIGNALFD4): Likewise.
15046         (__ASSUME_DUP3): Likewise.
15047         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
15048         (__ASSUME_UTIMES): Likewise.
15049         (__ASSUME_O_CLOEXEC): Likewise.
15050         (__ASSUME_SOCK_CLOEXEC): Likewise.
15051         (__ASSUME_IN_NONBLOCK): Likewise.
15052         (__ASSUME_PIPE2): Likewise.
15053         (__ASSUME_EVENTFD2): Likewise.
15054         (__ASSUME_SIGNALFD4): Likewise.
15055         (__ASSUME_DUP3): Likewise.
15056         * sysdeps/unix/sysv/linux/mips/kernel-features.h (__ASSUME_IPC64):
15057         Likewise.
15058         (__ASSUME_UTIMES): Likewise.
15059         (__ASSUME_EVENTFD2): Likewise.
15060         (__ASSUME_SIGNALFD4): Likewise.
15061         * sysdeps/unix/sysv/linux/tile/kernel-features.h
15062         (__ASSUME_O_CLOEXEC): Likewise.
15063         (__ASSUME_SOCK_CLOEXEC): Likewise.
15064         (__ASSUME_IN_NONBLOCK): Likewise.
15065         (__ASSUME_PIPE2): Likewise.
15066         (__ASSUME_EVENTFD2): Likewise.
15067         (__ASSUME_SIGNALFD4): Likewise.
15068         (__ASSUME_DUP3): Likewise.
15069         (__ASSUME_UTIMES): Undefine.
15071         * sysdeps/arm/fclrexcpt.c (__feclearexcept): Rename to
15072         feclearexcept.  Remove symbol versioning code.
15073         * sysdeps/arm/fegetenv.c (__fegetenv): Rename to fegetenv.  Remove
15074         symbol versioning code.
15075         * sysdeps/arm/fesetenv.c (__fesetenv): Rename to fesetenv.  Remove
15076         symbol versioning code.
15077         * sysdeps/arm/feupdateenv.c (__feupdateenv): Rename to
15078         feupdateenv.  Remove symbol versioning code.
15079         * sysdeps/arm/fgetexcptflg.c (__fegetexceptflag): Rename to
15080         fegetexceptflag.  Remove symbol versioning code.
15081         * sysdeps/arm/fsetexcptflg.c (__fesetexceptflag): Rename to
15082         fesetexceptflag.  Remove symbol versioning code.
15083         * sysdeps/unix/sysv/linux/arm/Versions (libc): Remove GLIBC_2.0,
15084         GLIBC_2.2 and GLIBC_2.3.3 entries.  Change GLIBC_2.1 to GLIBC_2.4.
15085         * sysdeps/unix/sysv/linux/arm/posix_fadvise64.c
15086         (__posix_fadvise64_l32): Remove prototype.
15087         [SHLIB_COMPAT(libc, GLIBC_2_2, GLIBC_2_3_3)]: Remove conditional
15088         code.
15090 2014-05-13  Roland McGrath  <roland@hack.frob.com>
15092         * sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h: Moved ...
15093         * sysdeps/arm/nptl/bits/pthreadtypes.h: ... here.
15094         * sysdeps/unix/sysv/linux/arm/nptl/bits/semaphore.h: Moved ...
15095         * sysdeps/arm/nptl/bits/semaphore.h: ... here.
15097 2014-05-13  Sami Kerola  <kerolasa@iki.fi>
15099         * timezone/Makefile ($(objpfx)tzselect): Use zonedir instead
15100         current working directory
15102 2014-05-13  Roland McGrath  <roland@hack.frob.com>
15104         * sysdeps/unix/sysv/linux/arm/nptl/c++-types.data: Moved ...
15105         * sysdeps/unix/sysv/linux/arm/c++-types.data: ... here.
15106         * sysdeps/unix/sysv/linux/arm/nptl/createthread.c: Moved ...
15107         * sysdeps/unix/sysv/linux/arm/createthread.c: ... here.
15108         * sysdeps/unix/sysv/linux/arm/nptl/fork.c: Moved ...
15109         * sysdeps/unix/sysv/linux/arm/fork.c: ... here.
15110         * sysdeps/unix/sysv/linux/arm/nptl/ld.abilist: Moved ...
15111         * sysdeps/unix/sysv/linux/arm/ld.abilist: ... here.
15112         * sysdeps/unix/sysv/linux/arm/nptl/libBrokenLocale.abilist: Moved ...
15113         * sysdeps/unix/sysv/linux/arm/libBrokenLocale.abilist: ... here.
15114         * sysdeps/unix/sysv/linux/arm/nptl/libanl.abilist: Moved ...
15115         * sysdeps/unix/sysv/linux/arm/libanl.abilist: ... here.
15116         * sysdeps/unix/sysv/linux/arm/nptl/libc.abilist: Moved ...
15117         * sysdeps/unix/sysv/linux/arm/libc.abilist: ... here.
15118         * sysdeps/unix/sysv/linux/arm/nptl/libcrypt.abilist: Moved ...
15119         * sysdeps/unix/sysv/linux/arm/libcrypt.abilist: ... here.
15120         * sysdeps/unix/sysv/linux/arm/nptl/libdl.abilist: Moved ...
15121         * sysdeps/unix/sysv/linux/arm/libdl.abilist: ... here.
15122         * sysdeps/unix/sysv/linux/arm/nptl/libm.abilist: Moved ...
15123         * sysdeps/unix/sysv/linux/arm/libm.abilist: ... here.
15124         * sysdeps/unix/sysv/linux/arm/nptl/libnsl.abilist: Moved ...
15125         * sysdeps/unix/sysv/linux/arm/libnsl.abilist: ... here.
15126         * sysdeps/unix/sysv/linux/arm/nptl/libpthread.abilist: Moved ...
15127         * sysdeps/unix/sysv/linux/arm/libpthread.abilist: ... here.
15128         * sysdeps/unix/sysv/linux/arm/nptl/libresolv.abilist: Moved ...
15129         * sysdeps/unix/sysv/linux/arm/libresolv.abilist: ... here.
15130         * sysdeps/unix/sysv/linux/arm/nptl/librt.abilist: Moved ...
15131         * sysdeps/unix/sysv/linux/arm/librt.abilist: ... here.
15132         * sysdeps/unix/sysv/linux/arm/nptl/libthread_db.abilist: Moved ...
15133         * sysdeps/unix/sysv/linux/arm/libthread_db.abilist: ... here.
15134         * sysdeps/unix/sysv/linux/arm/nptl/libutil.abilist: Moved ...
15135         * sysdeps/unix/sysv/linux/arm/libutil.abilist: ... here.
15136         * sysdeps/unix/sysv/linux/arm/nptl/localplt.data: Moved ...
15137         * sysdeps/unix/sysv/linux/arm/localplt.data: ... here.
15138         * sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.h: Moved ...
15139         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: ... here.
15140         * sysdeps/unix/sysv/linux/arm/nptl/sysdep-cancel.h: Moved ...
15141         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: ... here.
15142         * sysdeps/unix/sysv/linux/arm/nptl/unwind-forcedunwind.c: Moved ...
15143         * sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c: ... here.
15144         * sysdeps/unix/sysv/linux/arm/nptl/unwind-resume.c: Moved ...
15145         * sysdeps/unix/sysv/linux/arm/unwind-resume.c: ... here.
15147         * sysdeps/unix/sysv/linux/arm/Versions (libc: GLIBC_PRIVATE): New set.
15148         * sysdeps/unix/sysv/linux/arm/nptl/Versions: File removed.
15150         * sysdeps/unix/sysv/linux/arm/Makefile
15151         [$(subdir) = rt] (librt-sysdep_routines, librt-shared-only-routines):
15152         Add rt-aeabi_unwind_cpp_pr1.
15153         [$(subdir) = nptl] (librt-sysdep_routines, librt-shared-only-routines):
15154         Add nptl-aeabi_unwind_cpp_pr1.
15155         [$(subdir) = nptl] (tests): Filter out tst-cleanupx4.
15156         * sysdeps/unix/sysv/linux/arm/nptl/Makefile: File removed.
15157         * sysdeps/unix/sysv/linux/arm/nptl/rt-aeabi_unwind_cpp_pr1.c: Move ...
15158         * sysdeps/unix/sysv/linux/arm/rt-aeabi_unwind_cpp_pr1.c: ... here.
15159         * sysdeps/unix/sysv/linux/arm/nptl/nptl-aeabi_unwind_cpp_pr1.c: Move ...
15160         * sysdeps/unix/sysv/linux/arm/nptl-aeabi_unwind_cpp_pr1.c: ... here.
15162         * sysdeps/unix/sysv/linux/arm/configure.ac: Force -fexceptions here.
15163         * sysdeps/unix/sysv/linux/arm/configure: Regenerated.
15164         * sysdeps/unix/sysv/linux/arm/nptl/configure.ac: File removed.
15165         * sysdeps/unix/sysv/linux/arm/nptl/configure: File removed.
15167         * sysdeps/unix/sysv/linux/arm/clone.S: Include <tcb-offsets.h>.
15168         Deconditionalize the code that was previously under [RESET_PID].
15169         * sysdeps/unix/sysv/linux/arm/nptl/clone.S: File removed.
15171         * sysdeps/generic/exit-thread.h: New file.
15172         * sysdeps/unix/sysv/linux/exit-thread.h: New file.
15173         * include/unistd.h (__exit_thread): Remove declaration.
15174         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Drop exit-thread.
15175         * sysdeps/unix/sysv/linux/exit-thread.S: File removed.
15176         * csu/libc-start.c: Include <exit-thread.h>.
15177         (LIBC_START_MAIN): Pass no argument to __exit_thread.
15178         * nptl/pthread_create.c: Include <exit-thread.h>.
15179         (start_thread): Call __exit_thread in place of __exit_thread_inline.
15180         * nptl/sysdeps/i386/pthreaddef.h (__exit_thread_inline): Macro removed.
15181         * nptl/sysdeps/powerpc/pthreaddef.h: Likewise.
15182         * nptl/sysdeps/s390/pthreaddef.h: Likewise.
15183         * nptl/sysdeps/sh/pthreaddef.h: Likewise.
15184         * nptl/sysdeps/sparc/sparc32/pthreaddef.h: Likewise.
15185         * nptl/sysdeps/sparc/sparc64/pthreaddef.h: Likewise.
15186         * nptl/sysdeps/x86_64/pthreaddef.h: Likewise.
15187         * sysdeps/aarch64/nptl/pthreaddef.h: Likewise.
15188         * sysdeps/alpha/nptl/pthreaddef.h: Likewise.
15189         * sysdeps/arm/nptl/pthreaddef.h: Likewise.
15190         * sysdeps/hppa/nptl/pthreaddef.h: Likewise.
15191         * sysdeps/ia64/nptl/pthreaddef.h: Likewise.
15192         * sysdeps/m68k/nptl/pthreaddef.h: Likewise.
15193         * sysdeps/microblaze/nptl/pthreaddef.h: Likewise.
15194         * sysdeps/mips/nptl/pthreaddef.h: Likewise.
15195         * sysdeps/tile/nptl/pthreaddef.h: Likewise.
15197 2014-05-13  Andreas Schwab  <schwab@suse.de>
15199         * sysdeps/unix/grantpt.c (grantpt): Fix typo in assertion.
15201 2014-05-12  Joseph Myers  <joseph@codesourcery.com>
15203         * sysdeps/unix/sysv/linux/kernel-features.h [__s390__]
15204         (__ASSUME_UTIMES): Do not condition on kernel version.
15205         (__ASSUME_PSELECT): Define unconditionally.
15206         (__ASSUME_PPOLL): Likewise.
15207         (__ASSUME_ATFCTS): Likewise.
15208         (__ASSUME_SET_ROBUST_LIST): Do not condition on kernel version.
15209         (__ASSUME_COMPLETE_READV_WRITEV): Define unconditionally.
15210         (__ASSUME_FUTEX_LOCK_PI): Do not condition on kernel version.
15211         (__ASSUME_UTIMENSAT): Define unconditionally.
15212         (__ASSUME_PRIVATE_FUTEX): Likewise.
15213         (__ASSUME_FALLOCATE): Likewise.
15214         (__ASSUME_O_CLOEXEC): Likewise.
15215         (__LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL): Remove.
15216         (__ASSUME_ARG_MAX_STACK_BASED): Likewise.
15217         (__ASSUME_ADJ_OFFSET_SS_READ): Define unconditionally.
15218         (__ASSUME_SOCK_CLOEXEC): Do not condition on kernel version.
15219         (__ASSUME_IN_NONBLOCK): Likewise.
15220         (__ASSUME_PIPE2): Likewise.
15221         (__ASSUME_EVENTFD2): Likewise.
15222         (__ASSUME_SIGNALFD4): Likewise.
15223         (__ASSUME_DUP3): Likewise.
15224         [__x86_64__ || __sparc__] (__ASSUME_ACCEPT4_SYSCALL): Likewise.
15225         (__ASSUME_FUTEX_CLOCK_REALTIME): Define unconditionally.
15226         (__ASSUME_AT_RANDOM): Likewise.
15227         (__ASSUME_PREADV): Likewise.
15228         (__ASSUME_PWRITEV): Likewise.
15229         (__ASSUME_REQUEUE_PI): Do not condition on kernel version.
15230         (__ASSUME_F_GETOWN_EX): Define unconditionally.
15231         (__ASSUME_XFS_RESTRICTED_CHOWN): Likewise.
15232         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf)
15233         [!__ASSUME_ARG_MAX_STACK_BASED]: Remove conditional code.
15234         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
15235         (__ASSUME_O_CLOEXEC): Define unconditionally.
15236         (__ASSUME_PSELECT): Do not undefine conditionally.
15237         (__ASSUME_PPOLL): Likewise.
15238         (__ASSUME_ATFCTS): Likewise.
15239         (__ASSUME_SET_ROBUST_LIST): Likewise.
15240         (__ASSUME_UTIMENSAT): Likewise.
15241         (__ASSUME_FDATASYNC): Define unconditionally.
15242         * sysdeps/unix/sysv/linux/arm/kernel-features.h
15243         (__ASSUME_SIGFRAME_V2): Likewise.
15244         )__ASSUME_EVENTFD2): Likewise.
15245         (__ASSUME_SIGNALFD4): Likewise.
15246         (__ASSUME_PSELECT): Do not undefine conditionally.
15247         (__ASSUME_PPOLL): Likewise.
15248         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
15249         (__ASSUME_PSELECT): Define unconditionally.
15250         (__ASSUME_PPOLL): Likewise.
15251         (__ASSUME_O_CLOEXEC): Likewise.
15252         (__ASSUME_SOCK_CLOEXEC): Likewise.
15253         (__ASSUME_IN_NONBLOCK): Likewise.
15254         (__ASSUME_PIPE2): Likewise.
15255         (__ASSUME_EVENTFD2): Likewise.
15256         (__ASSUME_SIGNALFD4): Likewise.
15257         (__ASSUME_DUP3): Likewise.
15258         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
15259         (__ASSUME_O_CLOEXEC): Likewise.
15260         (__ASSUME_SOCK_CLOEXEC): Likewise.
15261         (__ASSUME_IN_NONBLOCK): Likewise.
15262         (__ASSUME_PIPE2): Likewise.
15263         (__ASSUME_EVENTFD2): Likewise.
15264         (__ASSUME_SIGNALFD4): Likewise.
15265         (__ASSUME_DUP3): Likewise.
15266         * sysdeps/unix/sysv/linux/mips/kernel-features.h
15267         (__ASSUME_EVENTFD2): Likewise.
15268         (__ASSUME_SIGNALFD4): Likewise.
15269         (__ASSUME_ACCEPT4_SYSCALL): Likewise.
15271 2014-05-12  Andreas Schwab  <schwab@suse.de>
15273         [BZ #16932]
15274         * nis/nss_nis/nis-hosts.c (internal_gethostbyname2_r)
15275         (_nss_nis_gethostbyname4_r): Return error if item length is larger
15276         than maximum RPC packet size.
15277         * nis/nss_nis/nis-initgroups.c (initgroups_netid): Likewise.
15278         * nis/nss_nis/nis-network.c (_nss_nis_getnetbyname_r): Likewise.
15279         * nis/nss_nis/nis-service.c (_nss_nis_getservbyname_r)
15280         (_nss_nis_getservbyport_r): Likewise.
15282 2014-05-12  Will Newton  <will.newton@linaro.org>
15284         * malloc/Makefile (tests): Add tst-mallopt.
15285         * malloc/tst-mallopt.c: New file.
15287 2014-05-09  Roland McGrath  <roland@hack.frob.com>
15289         * sysdeps/arm/armv7/strcmp.S: Use sfi_breg prefix on loads not from sp.
15290         [NO_THUMB]: Cope without cbz, cnbz, and orn instructions.
15292 2014-05-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
15294         * elf/Makefile (tst-tlsmod5.so): Add $(no-as-needed).
15295         (tst-tlsmod6.so): Likewise.
15297 2014-05-09  Roland McGrath  <roland@hack.frob.com>
15299         * sysdeps/gnu/unwind-resume.c (libgcc_s_resume): Mark as noreturn.
15301 2014-05-09  Joseph Myers  <joseph@codesourcery.com>
15303         [BZ #16064]
15304         * sysdeps/i386/fpu/fegetenv.c: Include <unistd.h>, <ldsodefs.h>
15305         and <dl-procinfo.h>.
15306         (__fegetenv): Save SSE state in envp->__eip if supported.
15307         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Save SSE state in
15308         envp->__eip if supported.
15309         * sysdeps/i386/fpu/fesetenv.c: Include <unistd.h>, <ldsodefs.h>
15310         and <dl-procinfo.h>.
15311         (__fesetenv): Always set __eip, __cs_selector, __opcode,
15312         __data_offset and __data_selector in environment to 0.  Set SSE
15313         state if supported.
15314         * sysdeps/x86/fpu/Makefile [$(subdir) = math] (tests): Add
15315         test-fenv-sse.
15316         [$(subdir) = math] (CFLAGS-test-fenv-sse.c): Add -msse2
15317         -mfpmath=sse.
15318         * sysdeps/x86/fpu/test-fenv-sse.c: New file.
15320 2014-05-09  Will Newton  <will.newton@linaro.org>
15322         * sysdeps/arm/preconfigure.ac: Set libc_commonpagesize
15323         and libc_relro_required for ARM.
15324         * sysdeps/arm/preconfigure: Regenerate.
15326 2014-05-09  Dominik Vogt  <vogt@linux.vnet.ibm.com>
15327             Stefan Liebler  <stli@linux.vnet.ibm.com>
15329         * config.make.in (enable-lock-elision): New Makefile variable.
15330         * configure.ac: Likewise.
15331         * configure: Regenerate.
15332         * sysdeps/s390/configure.ac:
15333         Add check for gcc transactions support.
15334         * sysdeps/s390/configure: Regenerate.
15335         * nptl/sysdeps/unix/sysv/linux/s390/Makefile: New file.
15336         Build elision files if enabled.
15337         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.c: New file.
15338         Add lock elision support for s390.
15339         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.h: Likewise.
15340         * nptl/sysdeps/unix/sysv/linux/s390/elision-lock.c: Likewise.
15341         * nptl/sysdeps/unix/sysv/linux/s390/elision-timed.c: Likewise.
15342         * nptl/sysdeps/unix/sysv/linux/s390/elision-trylock.c: Likewise.
15343         * nptl/sysdeps/unix/sysv/linux/s390/elision-unlock.c: Likewise.
15344         * nptl/sysdeps/unix/sysv/linux/s390/force-elision.h: Likewise.
15345         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c:
15346         Likewise.
15347         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c:
15348         Likewise.
15349         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c:
15350         Likewise.
15351         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c:
15352         Likewise.
15353         * nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h:
15354         (__lll_timedlock_elision, __lll_lock_elision)
15355         (__lll_unlock_elision, __lll_trylock_elision)
15356         (lll_timedlock_elision, lll_lock_elision)
15357         (lll_unlock_elision, lll_trylock_elision): Add.
15358         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
15359         (pthread_mutex_t): Add lock elision support for s390.
15361 2014-05-14  Wilco  <wdijkstr@arm.com>
15363         * sysdeps/arm/fclrexcpt.c: Cleanup.
15364         * sysdeps/arm/fedisblxcpt.c: Cleanup.
15365         * sysdeps/arm/feenablxcpt.c: Cleanup.
15366         * sysdeps/arm/fegetenv.c: Cleanup.
15367         * sysdeps/arm/fegetexcept.c: Cleanup.
15368         * sysdeps/arm/fegetround.c: Cleanup.
15369         * sysdeps/arm/feholdexcpt.c: Cleanup.
15370         * sysdeps/arm/fesetenv.c: Cleanup.
15371         * sysdeps/arm/fesetround.c: Cleanup.
15372         * sysdeps/arm/feupdateenv.c: Cleanup.
15373         * sysdeps/arm/fgetexcptflg.c: Cleanup.
15374         * sysdeps/arm/fraiseexcpt.c: Cleanup.
15375         * sysdeps/arm/fsetexcptflg.c: Cleanup.
15376         * sysdeps/arm/ftestexcept.c: Cleanup.
15377         * sysdeps/arm/get-rounding-mode.h: Cleanup.
15378         * sysdeps/arm/setfpucw.c: Cleanup.
15380 2014-05-09  Will Newton  <will.newton@linaro.org>
15382         * sysdeps/arm/armv7/strcmp.S: New file.
15383         * NEWS: Mention addition of ARMv7 optimized strcmp.
15385 2014-05-08  Roland McGrath  <roland@hack.frob.com>
15387         * Makeconfig ($(common-objpfx)config.status): Fix patsubst uses to
15388         look for %.ac rather than %.in.
15390         * sysdeps/mach/hurd/configure.ac (inhibit_glue): Remove variable.
15391         * sysdeps/unix/sysv/linux/configure.ac: Likewise.
15392         * sysdeps/mach/hurd/configure: Regenerated.
15393         * sysdeps/unix/sysv/linux/configure: Regenerated.
15395         * bits/utsname.h (_UTSNAME_DOMAIN_LENGTH): New macro, set to 0.
15397 2014-05-07  Steve Ellcey  <sellcey@mips.com>
15399         [BZ# 16922]
15400         * sysdeps/mips/sys/asm.h (INT_SUB): Fix definition.
15401         (LONG_SUB): Ditto.
15402         (PTR_SUB): Ditto.
15404 2014-05-07  Andreas Schwab  <schwab@suse.de>
15406         * sysdeps/posix/getaddrinfo.c (gaih_inet): Advance address pointer
15407         when skipping over non-matching result from nscd.
15409 2014-05-07  Ondřej Bílka  <neleai@seznam.cz>
15411         [BZ #16876]
15412         * nptl/sockperf.c (client): Check socket return value.
15414         [BZ #16877]
15415         * nscd/selinux.c (nscd_request_avc_has_perm): Check if there is
15416         nscd security class.
15418 2014-05-06  Roland McGrath  <roland@hack.frob.com>
15420         * sysdeps/unix/sysv/linux/arm/nptl/unwind.h: File moved to ...
15421         * sysdeps/arm/unwind.h: ... here.
15423 2014-05-06  Aurelien Jarno  <aurelien@aurel32.net>
15425         [BZ# 16916]
15426         * sysdeps/unix/sysv/linux/sparc/bits/eventfd.h (EFD_SEMAPHORE):
15427         Define.
15429 2014-05-06  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
15431         * sysdeps/powerpc/powerpc64/power7/strncpy.S: New file: Optimization.
15432         * sysdeps/powerpc/powerpc64/multiarch/strncpy.c: New file:
15433         multiarch strncpy for PPC64.
15434         * sysdeps/powerpc/powerpc64/multiarch/strncpy-ppc64.c: New file
15435         * sysdeps/powerpc/powerpc64/multiarch/strncpy-power7.S: New file
15436         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strpcpy, stpncpy
15437         multiarch optimizations.
15438         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
15439         (__libc_ifunc_impl_list): Likewise.
15440         * sysdeps/powerpc/powerpc64/power7/stpncpy.S: New file: Optimization.
15441         * sysdeps/powerpc/powerpc64/multiarch/stpncpy.c: New file:
15442         multiarch stpncpy for PPC64.
15443         * sysdeps/powerpc/powerpc64/multiarch/stpncpy-ppc64.c: New file
15444         * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power7.S: New file
15446 2014-05-06  Andreas Schwab  <schwab@suse.de>
15448         [BZ #16912]
15449         * gmon/mcount.c (_MCOUNT_DECL): Use
15450         atomic_compare_and_exchange_bool_acq instead of
15451         catomic_compare_and_exchange_bool_acq.
15453 2014-05-05  Roland McGrath  <roland@hack.frob.com>
15455         * elf/Makefile (others, install-bin): Remove pldd.
15456         (pldd-modules): Variable removed.
15457         ($(objpfx)pldd): Target removed.
15458         * sysdeps/unix/sysv/linux/Makefile [$(subdir) = elf]
15459         (others, install-bin): Append pldd here.
15460         ($(objpfx)pldd): New target.
15462         * sysdeps/gnu/errlist.awk (BEGIN): Emit an initial #define of ERR_MAX
15463         to 0, so the first #if test emitted later doesn't see it undefined.
15464         (END): Emit "!defined ERRLIST_NO_COMPAT" to match what BEGIN does.
15465         * sysdeps/gnu/errlist.c: Regenerated.
15467 2014-05-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
15469         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c
15470         [libc_hidden_builtin_def]: Define to empty value.
15471         * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S:
15472         [libc_hidden_builtin_def]: Likewise.
15473         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S:
15474         [libc_hidden_builtin_def]: Likewise.
15475         * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S:
15476         [libc_hidden_builtin_def]: Likewise.
15477         * sysdeps/powerpc/powerpc64/multiarch/memcpy.c (memcpy): Redefined to
15478         __redirect_memcpy and define ifunc as default hidden symbol.
15479         * sysdeps/powerpc/powerpc64/multiarch/memset.c (memset): Likewise.
15480         * sysdeps/powerpc/powerpc64/multiarch/strlen.c (strlen): Likewise.
15482 2014-05-04  Adam Conrad  <adconrad@0c3.net>
15484         * locale/iso-4217.def: Reintroduce XDR currency.
15486 2014-05-04  Allan McRae  <allan@archlinux.org>
15488         * po/eo.po: Update Esperanto translation from translation project.
15490 2014-05-02  Carlos O'Donell  <carlos@redhat.com>
15492         * sysdeps/x86_64/multiarch/init-arch.h: Define FEATURE_INDEX_1 to 0,
15493         and FEATURE_INDEX_MAX to 1.
15494         [!__ASSEMBLER__]: Remove anonymous enum for FEATURE_INDEX_*.
15496 2014-05-01  Steve Ellcey  <sellcey@mips.com>
15498         * iconvdata/ansi_x3.110.c (ONE_DIRECTION): Define.
15499         * iconvdata/armscii-8.c (ONE_DIRECTION): Define.
15500         * iconvdata/big5.c (ONE_DIRECTION): Define.
15501         * iconvdata/big5hkscs.c (ONE_DIRECTION): Define.
15502         * iconvdata/cp1255.c (ONE_DIRECTION): Define.
15503         * iconvdata/cp1258.c (ONE_DIRECTION): Define.
15504         * iconvdata/cp932.c (ONE_DIRECTION): Define.
15505         * iconvdata/euc-cn.c (ONE_DIRECTION): Define.
15506         * iconvdata/euc-jisx0213.c (ONE_DIRECTION): Define.
15507         * iconvdata/euc-jp-ms.c (ONE_DIRECTION): Define.
15508         * iconvdata/euc-jp.c (ONE_DIRECTION): Define.
15509         * iconvdata/euc-kr.c (ONE_DIRECTION): Define.
15510         * iconvdata/euc-tw.c (ONE_DIRECTION): Define.
15511         * iconvdata/gb18030.c (ONE_DIRECTION): Define.
15512         * iconvdata/gbbig5.c (ONE_DIRECTION): Define.
15513         * iconvdata/gbgbk.c (ONE_DIRECTION): Define.
15514         * iconvdata/gbk.c (ONE_DIRECTION): Define.
15515         * iconvdata/ibm1364.c (ONE_DIRECTION): Define.
15516         * iconvdata/ibm930.c (ONE_DIRECTION): Define.
15517         * iconvdata/ibm932.c (ONE_DIRECTION): Define.
15518         * iconvdata/ibm933.c (ONE_DIRECTION): Define.
15519         * iconvdata/ibm935.c (ONE_DIRECTION): Define.
15520         * iconvdata/ibm937.c (ONE_DIRECTION): Define.
15521         * iconvdata/ibm939.c (ONE_DIRECTION): Define.
15522         * iconvdata/ibm943.c (ONE_DIRECTION): Define.
15523         * iconvdata/iso-2022-cn-ext.c (ONE_DIRECTION): Define.
15524         * iconvdata/iso-2022-cn.c (ONE_DIRECTION): Define.
15525         * iconvdata/iso-2022-jp-3.c (ONE_DIRECTION): Define.
15526         * iconvdata/iso-2022-jp.c (ONE_DIRECTION): Define.
15527         * iconvdata/iso-2022-kr.c (ONE_DIRECTION): Define.
15528         * iconvdata/iso646.c (ONE_DIRECTION): Define.
15529         * iconvdata/iso8859-1.c (ONE_DIRECTION): Define.
15530         * iconvdata/iso_11548-1.c (ONE_DIRECTION): Define.
15531         * iconvdata/iso_6937-2.c (ONE_DIRECTION): Define.
15532         * iconvdata/iso_6937.c (ONE_DIRECTION): Define.
15533         * iconvdata/johab.c (ONE_DIRECTION): Define.
15534         * iconvdata/shift_jisx0213.c (ONE_DIRECTION): Define.
15535         * iconvdata/sjis.c (ONE_DIRECTION): Define.
15536         * iconvdata/t.61.c (ONE_DIRECTION): Define.
15537         * iconvdata/tcvn5712-1.c (ONE_DIRECTION): Define.
15538         * iconvdata/tscii.c (ONE_DIRECTION): Define.
15539         * iconvdata/uhc.c (ONE_DIRECTION): Define.
15540         * iconvdata/unicode.c (ONE_DIRECTION): Define.
15541         * iconvdata/utf-16.c (ONE_DIRECTION): Define.
15542         * iconvdata/utf-32.c (ONE_DIRECTION): Define.
15543         * iconvdata/utf-7.c (ONE_DIRECTION): Define.
15545 2014-05-01  Roland McGrath  <roland@hack.frob.com>
15547         * libio/libioP.h [!_IO_USE_OLD_IO_FILE && !_G_IO_NO_BACKWARD_COMPAT]
15548         (_IO_JUMPS_OFFSET): Define to 0.
15550         * nptl/sysdeps/pthread/bits/libc-lock.h
15551         [_LIBC && (!NOT_IN_libc || IS_IN_libpthread)]
15552         (__libc_lock_define_initialized_recursive): Always define using
15553         initializer.  Modern compilers treat uninitialized (implicit zero) and
15554         explicit zero initializers the same (i.e. put the datum in bss).
15556 2014-05-01  Andreas Schwab  <schwab@linux-m68k.org>
15558         * nscd/nscd-client.h: Include <string.h>.
15560 2014-05-01  David S. Miller  <davem@davemloft.net>
15562         [BZ #16885]
15563         * sysdeps/sparc/sparc64/strcmp.S: Fix end comparison handling when
15564         multiple zero bytes exist at the end of a string.
15565         Reported by Aurelien Jarno <aurelien@aurel32.net>
15567         * string/test-strcmp.c (check): Add explicit test for situations where
15568         there are multiple zero bytes after the first.
15570 2014-05-01  Andreas Schwab  <schwab@linux-m68k.org>
15572         [BZ #16890]
15573         * stdio-common/vfprintf.c (process_arg) [%p]: Mark string as wide
15574         when compiling wprintf.
15575         * stdio-common/tstdiomisc.c (t3): New function.
15576         (main): Call it.
15578 2014-05-01  Steve Ellcey  <sellcey@mips.com>
15580         * intl/iconv/skeleton.c (ONE_DIRECTION): Remove define.
15581         * iconv/gconv_simple.c (ONE_DIRECTION): Define.
15582         * iconvdata/8bit-gap.c (ONE_DIRECTION): Ditto.
15583         * iconvdata/8bit-generic.c (ONE_DIRECTION): Ditto.
15585 2014-05-01  Steve Ellcey  <sellcey@mips.com>
15587         * stdlib/longlong.h: Updated from GCC.
15589 2014-05-01  Will Newton  <will.newton@linaro.org>
15590             Bernard Ogden  <bernie.ogden@linaro.org>
15592         * NEWS: Update fixed bug list.
15594         [BZ #15119]
15595         * sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.c: Remove file.
15597 2014-04-30  David S. Miller  <davem@davemloft.net>
15599         * sysdeps/sparc/fpu/fenv_private.h (HAVE_RM_CTX): Define.
15600         (libc_feholdexcept_setround_sparc_ctx): New function.
15601         (libc_fesetenv_sparc_ctx): Likewise.
15602         (libc_feupdateenv_sparc_ctx): Likewise.
15603         (libc_feholdsetround_sparc_ctx): Likewise.
15604         (libc_feholdexcept_setround_ctx): Define.
15605         (libc_feholdexcept_setroundf_ctx): Likewise.
15606         (libc_feholdexcept_setroundl_ctx): Likewise.
15607         (libc_fesetenv_ctx): Likewise.
15608         (libc_fesetenvf_ctx): Likewise.
15609         (libc_fesetenvl_ctx): Likewise.
15610         (libc_feupdateenv_ctx): Likewise.
15611         (libc_feupdateenvf_ctx): Likewise.
15612         (libc_feupdateenvl_ctx): Likewise.
15613         (libc_feresetround_ctx): Likewise.
15614         (libc_feresetroundf_ctx): Likewise.
15615         (libc_feresetroundl_ctx): Likewise.
15616         (libc_feholdsetround_ctx): Likewise.
15617         (libc_feholdsetroundf_ctx): Likewise.
15618         (libc_feholdsetroundl_ctx): Likewise.
15620         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (EMT_TAGOVF): Protect
15621         with __USE_GNU instead of XOPEN cpp guards.
15623         * sysdeps/sparc/bits/string.h (_STRING_ARCH_unaligned): Define to
15624         0.
15626         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (EMT_TAGOVF): Protect
15627         with XOPEN cpp guards.
15629 2014-04-30  Julian Brown  <julian@codesourcery.com>
15631         [BZ #16888]
15632         * sysdeps/arm/dl-machine.h (elf_machine_rela): Fix R_ARM_IRELATIVE
15633         handling.
15635 2014-04-30  Joseph Myers  <joseph@codesourcery.com>
15637         [BZ #9894]
15638         * sysdeps/unix/sysv/linux/configure.ac (LIBC_LINUX_VERSION):
15639         Change to 2.6.32.
15640         (arch_minimum_kernel): Change all 2.6.16 settings to 2.6.32.
15641         * sysdeps/unix/sysv/linux/configure: Regenerated.
15642         * sysdeps/unix/sysv/linux/microblaze/configure.ac: Remove file.
15643         * sysdeps/unix/sysv/linux/microblaze/configure: Likewise.
15644         * sysdeps/unix/sysv/linux/tile/configure.ac: Likewise.
15645         * sysdeps/unix/sysv/linux/tile/configure: Likewise.
15646         * README: Update reference to required Linux kernel version.
15647         * manual/install.texi (Linux): Update reference to required Linux
15648         kernel headers version.
15649         * INSTALL: Regenerated.
15651         * conform/data/stdlib.h-data [POSIX] (stddef.h): Do not allow
15652         header inclusion.
15653         [POSIX] (limits.h): Likewise.
15654         [POSIX] (math.h): Likewise.
15655         [POSIX] (sys/wait.h): Likewise.
15656         * conform/data/string.h-data [POSIX || UNIX98] (strtok_r): Require
15657         function.
15658         [POSIX] (stddef.h): Do not allow header inclusion.
15660 2014-04-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
15662         * sysdeps/generic/symbol-hacks.h (memcpy): Add internal alias.
15664 2014-04-30  Yang Yingliang  <yangyingliang@huawei.com>
15666         * nptl/pthread_cond_broadcast.c (__pthread_cond_broadcast):
15667         Return immediately after lll_futex_wake.
15669 2014-04-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
15671         [BZ #16791]
15672         * nscd/nscd-client.h (datahead_init_common): Initialize entire
15673         structure.
15674         (datahead_init_pos): Call datahead_init_common early.
15675         (datahead_init_neg): Likewise.
15677         * nscd/nscd-client.h (datahead_init_common, datahead_init_pos,
15678         datahead_init_neg): New functions.
15679         * nscd/aicache.c (addhstaiX): Use them.
15680         * nscd/grpcache.c (cache_addgr): Likewise.
15681         * nscd/hstcache.c (cache_addhst): Likewise.
15682         * nscd/initgrcache.c (addinitgroupsX): Likewise.
15683         * nscd/netgroupcache.c (do_notfound): Likewise.
15684         (addgetnetgrentX): Likewise.
15685         (addinnetgrX): Likewise.
15686         * nscd/pwdcache.c (cache_addpw): Likewise.
15687         * nscd/servicescache.c (cache_addserv): Likewise.
15689 2014-04-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
15690             Atsushi Onoe  <atsushi@onoe.org>
15692         [BZ #14308]
15693         [BZ #12994]
15694         [BZ #13651]
15695         * resolv/res_query.c (__libc_res_nsearch): Return if at least
15696         one response is valid.
15697         * resolv/res_send.c (send_dg): Check for validity of other
15698         response if the current response is a referral.
15700 2014-04-29  Steve Ellcey  <sellcey@mips.com>
15702         * iconv/skeleton.c (ONE_DIRECTION): Set default value if not set.
15704 2014-04-29  Stefan Liebler  <stli@linux.vnet.ibm.com>
15706         [BZ #16823]
15707         * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl):
15708         Always divide by positive zero when computing -Inf result.
15709         * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Likewise.
15710         * sysdeps/ieee754/flt-32/s_log1pf.c (__log1pf): Likewise.
15712 2014-04-28  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
15714         * sysdeps/powerpc/fpu/fclrexcpt.c (__feclearexcept): Do not update
15715         FPSCR if value do not change.
15716         * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
15717         * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Likewise.
15718         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Likewise.
15719         * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Likewise.
15720         * sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Likewise.
15721         * sysdeps/powerpc/fpu/fenv_libc.h (fenv_reg_to_exceptions): New helper
15722         function.
15724 2014-05-29  Carlos O'Donell  <carlos@systemhalted.org>
15726         * sysdeps/hppa: Move directory from ports/sysdeps/hppa.
15727         * sysdeps/unix/sysv/linux/hppa: Move directory from
15728         ports/systeps/unix/sysv/linux/hppa.
15729         * README: Update listing for hppa-*-linux-gnu.
15731 2014-04-28  Ondřej Bílka  <neleai@seznam.cz>
15733         [BZ #16754]
15734         * manual/stdio.texi (Hook functions): Fix types of stream hook
15735         functions.
15736         [BZ #16854]
15737         * socket/sys/socket.h: Fix typo in comment.
15739 2014-04-28  Wilco  <wdijkstr@arm.com>
15741         * sysdeps/arm/fenv_private.h: New file.
15742         * sysdeps/arm/math_private.h: New file.
15743         * sysdeps/arm/fpu_control.h: Add _FPU_MASK_NCZV and _FPU_MASK_EXCEPT.
15745 2014-04-25  H.J. Lu  <hongjiu.lu@intel.com>
15747         * sysdeps/x86/bits/link.h (La_x86_64_regs): Replace __int128
15748         with __int128_t.
15749         (La_x86_64_retval): Likewise.
15751 2014-04-24  Ian Bolton  <ian.bolton@arm.com>
15753         * sysdeps/aarch64/fpu/fclrexcpt.c (feclearexcept): Don't write to
15754         fpsr if value didn't change.
15755         * sysdeps/aarch64/fpu/fedisblxcpt.c (fedisableexcept): Don't write
15756         to fpcr if value didn't change.
15757         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept): Likewise.
15758         * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept): Don't write to
15759         fpsr or fpcr if value didn't change.
15760         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Likewise.
15761         * sysdeps/aarch64/fpu/fesetround.c (fesetround): Don't write to
15762         fpcr if value didn't change.
15763         * sysdeps/aarch64/fpu/fsetexcptflg.c (fesetexceptflag): Don't write
15764         to fpsr if value didn't change.
15766 2014-02-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
15768         * nptl/tst-sem3.c: Use test-skeleton.c
15769         (main): Rename to do_test.  Use return instead of
15770         exit.
15771         * nptl/tst-sem4.c: Use test-skeleton.c
15772         (main): Rename to do_test.
15774 2014-04-22  David S. Miller  <davem@davemloft.net>
15776         * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h
15777         (struct sigaction): New struct member __glibc_reserved0, change
15778         type of sa_flags to int.
15780 2014-04-22  Yufeng Zhang  <yufeng.zhang@arm.com>
15782         * stdlib/longlong.h (count_leading_zeros, count_trailing_zeros)
15783         (COUNT_LEADING_ZEROS_0): Define for AArch64.
15785 2014-04-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
15787         * nptl/sysdeps/unix/sysv/linux/sem_trywait.c: Include atomic.h.
15788         * nptl/sysdeps/unix/sysv/linux/sem_wait.c: Likewise.
15790 2014-04-22  Will Newton  <will.newton@linaro.org>
15791             Venkataramanan Kumar  <venkataramanan.kumar@linaro.org>
15793         * sysdeps/aarch64/__longjmp.S: Include stap-probe.h.
15794         (__longjmp): Add longjmp and longjmp_target SystemTap
15795         probes.
15796         * sysdeps/aarch64/setjmp.S: Include stap-probe.h.
15797         (__sigsetjmp): Add setjmp SystemTap probe.
15799 2014-04-17  Carlos O'Donell  <carlos@redhat.com>
15801         * manual/intro.texi (Roadmap to the manual): Sort chapter listing to
15802         match manual order.
15804 2014-04-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
15806         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c: Remove file.
15808         * sysdeps/powerpc/fpu/fenv_private.h
15809         (libc_feholdexcept_setroundl_ctx): Define to
15810         libc_feholdexcept_setround_ppc_ctx.
15811         (libc_fesetenvl_ctx): Define to libc_fesetenv_ppc_ctx.
15812         (libc_feholdsetroundl_ctx): Define to libc_feholdsetround_ppc_ctx.
15813         (libc_feresetroundl_ctx): Define to libc_feresetround_ppc_ctx.
15814         (libc_feupdateenvl_ctx): libc_feupdateenv_ppc_ctx.
15816 2014-04-17  Ian Bolton  <ian.bolton@arm.com>
15818         * sysdeps/aarch64/math-tests.h: New file.
15820 2014-04-17  Sihai Yao  <sihai.ysh@alibaba-inc.com>
15822         * sysdeps/x86_64/multiarch/ifunc-defines.sym (COMMON_CPUID_INDEX_7):
15823         New.
15824         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
15825         Check and set bit_AVX2_Usable.
15826         * sysdeps/x86_64/multiarch/init-arch.h (bit_AVX2_Usable): New
15827         macro.
15828         (bit_AVX2): Likewise.
15829         (index_AVX2_Usable): Likewise.
15830         (CPUID_AVX2): Likewise.
15831         (HAS_AVX2): Likewise.
15833 2014-04-17  Will Newton  <will.newton@linaro.org>
15835         * manual/setjmp.texi (System V contexts): Add note that
15836         calling setcontext on a context created by a call to a
15837         signal handler is undefined.  Update text to note that
15838         setcontext from a signal handler is possible but not
15839         recommended.
15841         [BZ #16629]
15842         * stdlib/tst-setcontext.c: Include signal.h.
15843         (main): Check that the signal stack before and
15844         after swapcontext is the same.
15846         * sysdeps/unix/sysv/linux/aarch64/setcontext.S (__setcontext):
15847         Re-implement to restore registers in user code and avoid
15848         rt_sigreturn system call.
15850 2014-04-17  Wilco  <wdijkstr@arm.com>
15852         * sysdeps/arm/math-tests.h: New file: Set ARM math-test settings.
15853         * sysdeps/generic/math-tests.h: Add macro (EXCEPTION_ENABLE_SUPPORTED).
15854         * math/test-fenv.c: Skip exception trap tests on targets which only
15855         support non-stop mode.
15857 2014-04-17  Ian Bolton  <ian.bolton@arm.com>
15858             Wilco Dijkstra  <wilco.dijkstra@arm.com>
15860         * sysdeps/aarch64/fpu/math_private.h (HAVE_RM_CTX)
15861         (libc_feholdsetround_aarch64_ctx)
15862         (libc_feholdsetround_ctx, libc_feholdsetroundf_ctx)
15863         (libc_feholdsetroundl_ctx, libc_feresetround_aarch64_ctx)
15864         (libc_feresetround_ctx, libc_feresetroundf_ctx)
15865         (libc_feresetroundl_ctx, libc_feresetround_noex_aarch64_ctx)
15866         (libc_feresetround_noex_ctx, libc_feresetround_noexf_ctx)
15867         (libc_feresetround_noexl_ctx): Define.
15869 2014-04-16  Richard Henderson  <rth@redhat.com>
15871         * sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c: Remove.
15873         * sysdeps/alpha/Makefile [debug] (CFLAGS-backtrace.c): Enable
15874         unwind tables.
15876         * sysdeps/unix/alpha/sysdep.h (__pointer_chk_guard): Remove
15877         const from the non-libc, non-ldso copy.
15879         * sysdeps/alpha/libm-test-ulps: Regenerate.
15881 2014-04-16  Ian Bolton  <ian.bolton@arm.com>
15882             Wilco Dijkstra  <wilco.dijkstra@arm.com>
15884         * sysdeps/aarch64/fpu/math_private.h: New file.
15886 2014-04-16  Marcus Shawcroft  <marcus.shawcroft@arm.com>
15888         * sysdeps/aarch64/libm-test-ulps: Regenerate.
15890 2014-04-16  Igor Zamyatin  <igor.zamyatin@intel.com>
15892         [BZ #16275]
15893         * sysdeps/x86_64/bits/link.h (La_x86_64_regs): Add lr_bnd.
15894         (La_x86_64_retval): Add lrv_bnd0 and lrv_bnd1.
15895         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Save
15896         Intel MPX bound registers before _dl_profile_fixup.
15897         * sysdeps/x86_64/dl-trampoline.h: Restore Intel MPX bound
15898         registers after _dl_profile_fixup.  Save and restore bound
15899         registers bnd0/bnd1 when calling _dl_call_pltexit.
15900         * sysdeps/x86_64/link-defines.sym (BND_SIZE): New.
15901         (LR_BND_OFFSET): Likewise.
15902         (LRV_BND0_OFFSET): Likewise.
15903         (LRV_BND1_OFFSET): Likewise.
15905 2014-04-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
15907         * sysdeps/mach/hurd/tls.h (dtv, dtv_t, tcbhead_t): Move declarations
15908         to...
15909         * sysdeps/mach/hurd/i386/tls.h: ... here.
15910         (tcbhead_t): Add multiple_threads, sysinfo, stack_guard,
15911         pointer_guard, gscope_flag, private_futex, __private_tm, __private_ss
15912         fields.
15914 2014-04-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
15916         * sysdeps/mach/munmap.c (__munmap): Return EINVAL if `addr' is 0.
15918 2014-04-16  Stefan Liebler  <stli@linux.vnet.ibm.com>
15920         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
15922 2014-04-16  Stefan Liebler  <stli@linux.vnet.ibm.com>
15924         [BZ #14770]
15925         * sysdeps/s390/configure.ac: Check for Binutils >= 2.24.
15926         * sysdeps/s390/configure: Regenerate.
15928         [BZ #16824]
15929         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_y1l):
15930         Set round-to-nearest internally to reduce error accumulation.
15932 2014-04-16  Alan Modra  <amodra@gmail.com>
15934         [BZ #16740]
15935         [BZ #16619]
15936         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Rewrite.
15937         * math/libm-test.inc (frexp_test_data): Add tests.
15938         * NEWS: Update fixed bug list.
15940 2014-04-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
15942         * benchtests/Makefile: Depend on libraries in build directory.
15943         (bench-math): Separate out math tests.
15944         (bench-pthread): Separate out pthread tests.
15945         (bench): Include math and pthread tests.
15947 2014-04-14  Carlos O'Donell  <carlos@redhat.com>
15949         [BZ #16831]
15950         * csu/libc-start.c (LIBC_START_MAIN) [!SHARED]: Call
15951         _dl_debug_initialize.
15953         * configure.ac: Remove SELinux header check.
15954         * configure: Regenerate.
15955         * nscd/selinux.c (perms): Array of const char* to permission names.
15956         (nscd_request_avc_has_perm): Call security_deny_unknown to find
15957         default policy. Call string_to_security_class and string_to_av_perm to
15958         translate strings. Enforce default policy and call avs_has_perm with
15959         results of translated strings.
15961 2014-04-13  David S. Miller  <davem@davemloft.net>
15963         * sysdeps/sparc/fpu/libm-test-ulps: Update.
15965 2014-04-12  Allan McRae  <allan@archlinux.org>
15967         [BZ #16838]
15968         * manual/string.texi (Collation Functions): Fix qsort argument
15969         order in example.
15970         Reported by David C. Rankin <drankinatty@suddenlinkmail.com>.
15972 2014-04-11  Chris Metcalf  <cmetcalf@tilera.com>
15974         * math/test-fenv-preserve.c [FE_ALL_EXCEPT == 0] (do_test):
15975         Make the test a no-op if there are no exceptions defined.
15977 2014-04-11  Paul Pluzhnikov  <ppluzhnikov@google.com>
15979         * elf/Makefile (tests): make tst-dlopen-aout conditional on
15980         enable-hardcoded-path-in-tests
15982 2014-04-11  Will Newton  <will.newton@linaro.org>
15984         * benchtests/Makefile (extra-objs): Add json-lib.o.
15985         (bench-func): Tidy up JSON output.
15986         * benchtests/bench-skeleton.c: Include json-lib.h.
15987         (main): Use JSON library functions to do output of
15988         benchmark results.
15989         * benchtests/bench-timing-type.c (main): Output the
15990         timing type simply, leaving formatting to the user.
15991         * benchtests/json-lib.c: New file.
15992         * benchtests/json-lib.h: Likewise.
15994 2014-04-11  Torvald Riegel  <triegel@redhat.com>
15996         [BZ #15215]
15997         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_once.c: Moved to ...
15998         * nptl/sysdeps/unix/sysv/linux/pthread_once.c: ... here.  Add missing
15999         memory barriers.  Add comments.
16000         * sysdeps/unix/sysv/linux/aarch64/nptl/pthread_once.c: Remove file.
16001         * sysdeps/unix/sysv/linux/arm/nptl/pthread_once.c: Remove file.
16002         * sysdeps/unix/sysv/linux/ia64/nptl/pthread_once.c: Remove file.
16003         * sysdeps/unix/sysv/linux/m68k/nptl/pthread_once.c: Remove file.
16004         * sysdeps/unix/sysv/linux/mips/nptl/pthread_once.c: Remove file.
16005         * sysdeps/unix/sysv/linux/tile/nptl/pthread_once.c: Remove file.
16007 2014-04-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
16009         * sysdeps/s390/s390-32/configure.ac: Unify file with ...
16010         * sysdeps/s390/s390-64/configure.ac: ... this ...
16011         * sysdeps/s390/configure.ac: ... to here.
16012         * sysdeps/s390/s390-32/configure: Delete file.
16013         * sysdeps/s390/s390-64/configure: Delete file.
16014         * sysdeps/s390/configure: Regenerate.
16016 2014-04-11  Joseph Anthony Pasquale Holsten  <joseph@josephholsten.com>
16018         * resolv/res_query.c (__libc_res_nsearch): Fix typo in comment.
16020 2014-04-11  Will Newton  <will.newton@linaro.org>
16022         * malloc/malloc.c [!MALLOC_DEBUG]: #define MALLOC_DEBUG
16023         to zero if it is not defined elsewhere.  (mtrim): Test
16024         the value of MALLOC_DEBUG with #if rather than #ifdef.
16026 2014-04-10 Torvald Riegel  <triegel@redhat.com>
16028         * benchtests/pthread_once-inputs: New file.
16029         * benchtests/pthread_once-source.c: New file.
16030         * benchtests/README: Update documentation.
16032 2014-04-09  Igor Zamyatin  <igor.zamyatin@intel.com>
16033             H.J. Lu  <hongjiu.lu@intel.com>
16035         [BZ #16275]
16036         * config.h.in (HAVE_MPX_SUPPORT): New #undef.
16037         * sysdeps/x86_64/configure.ac: Set HAVE_MPX_SUPPORT.
16038         * sysdeps/x86_64/configure: Regenerated.
16039         * sysdeps/x86_64/dl-trampoline.S (REGISTER_SAVE_AREA): New
16040         macro.
16041         (REGISTER_SAVE_RAX): Likewise.
16042         (REGISTER_SAVE_RCX): Likewise.
16043         (REGISTER_SAVE_RDX): Likewise.
16044         (REGISTER_SAVE_RSI): Likewise.
16045         (REGISTER_SAVE_RDI): Likewise.
16046         (REGISTER_SAVE_R8): Likewise.
16047         (REGISTER_SAVE_R9): Likewise.
16048         (REGISTER_SAVE_BND0): Likewise.
16049         (REGISTER_SAVE_BND1): Likewise.
16050         (REGISTER_SAVE_BND2): Likewise.
16051         (_dl_runtime_resolve): Use them.  Save and restore Intel MPX
16052         bound registers when calling _dl_fixup.
16054 2014-04-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16056         * bits/string.h (_STRING_ARCH_unaligned): Define it to 0.
16057         * crypt/sha256.c (_STRING_ARCH_unaligned): Check its value instead
16058         of its definition.
16059         * iconv/gconv_simple.c (_STRING_ARCH_unaligned): Likewise.
16060         * iconv/loop.c (_STRING_ARCH_unaligned): Likewise.
16061         * iconv/skeleton.c (_STRING_ARCH_unaligned): Likewise.
16062         * nscd/nscd_gethst_r.c (_STRING_ARCH_unaligned): Likewise.
16063         * nscd/nscd_getserv_r.c (_STRING_ARCH_unaligned): Likewise.
16064         * nscd/nscd_helper.c (_STRING_ARCH_unaligned): Likewise.
16065         * resolv/res_send.c (_STRING_ARCH_unaligned): Likewise.
16067 2014-04-09  Peter Brett  <peter@peter-b.co.uk>
16069         [BZ #15514]
16070         * sysdeps/posix/pathconf.c (__pathconf): Use statvfs64() for
16071         pathconf(_PC_NAME_MAX).
16073 2014-04-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16075         * nptl/sysdeps/pthread/pthread.h (__PTHREAD_MUTEX_HAVE_ELISION):
16076         Remove macro usage.
16077         (__PTHREAD_SPINS): Move definition to ...
16078         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
16079         (__PTHREAD_SPINS): ... here.
16080         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
16081         (__PTHREAD_SPIN): Likewise.
16082         * nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h
16083         (__PTHREAD_SPIN): Likewise.
16084         * nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h
16085         (__PTHREAD_SPIN): Likewise.
16086         * nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h
16087         (__PTHREAD_SPIN): Likewise.
16088         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h
16089         (__PTHREAD_SPIN): Likewise.
16090         * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h
16091         (__PTHREAD_SPIN): Likewise.
16092         * sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h
16093         (__PTHREAD_SPIN): Likewise.
16094         * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h
16095         (__PTHREAD_SPIN): Likewise.
16096         * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h
16097         (__PTHREAD_SPIN): Likewise.
16098         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h
16099         (__PTHREAD_SPIN): Likewise.
16100         * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h
16101         (__PTHREAD_SPIN): Likewise.
16102         * sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h
16103         (__PTHREAD_SPIN): Likewise.
16105         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
16106         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: new file.
16107         * sysdeps/powerpc/powerpc64/power6x/multiarch/Implies: New file.
16108         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: Remove multiarch
16109         imply folder.
16110         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: Likewise.
16111         * sysdeps/powerpc/powerpc64/power7/fpu/Implies: Likewise.
16112         * sysdeps/powerpc/powerpc64/power8/fpu/Implies: Likewise.
16113         * sysdeps/powerpc/powerpc64/power6x/fpu/multiarch/Implies: Adjust
16114         correct imply path.
16115         * sysdeps/powerpc/powerpc64/power7/strncat.S (STRLEN): Define correct
16116         strlen symbol for non multi-arch builds.
16117         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (__isnan): Add
16118         missing hidden_def and weak_alias.
16120 2014-04-08  Carlos O'Donell  <carlos@redhat.com>
16122         * manual/ipc.texi (sem_close): AC-unsafe because of aculock.
16124 2014-04-07  Will Newton  <will.newton@linaro.org>
16126         * string/basename.c [HAVE_CONFIG_H]: Remove #ifdef and
16127         and contents.  [!_LIBC] Remove #ifndef and contents.
16128         (basename): Use ANSI prototype.  [_LIBC] Remove #idef.
16129         * string/memccpy.c (__memccpy): Use ANSI prototype.
16130         * string/memfrob.c (memfrob): Likewise.
16131         * string/strcoll.c (STRCOLL): Likewise.
16132         * string/strlen.c (strlen): Likewise.
16133         * string/strtok.c (STRTOK): Likewise.
16134         * string/strcat.c: Remove unused #include of memcopy.h.
16135         (strcat): Use ANSI prototype.
16136         * string/strchr.c: Remove unused #include of memcopy.h.
16137         (strchr): Use ANSI prototype.
16138         * string/strcmp.c: Remove unused #include of memcopy.h.
16139         (strcmp): Use ANSI prototype.
16140         * string/strcpy.c: Remove unused #include of memcopy.h.
16141         (strcpy): Use ANSI prototype.
16143 2014-04-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16145         * Makeconfig (CPPFLAGS): Add config-extra-cppflags to list.
16146         * config.make.in (config-extra-cppflags): Set it from
16147         libc_extra_cppflags.
16148         * configure.ac (libc_extra_cflags): Make it accumulate over
16149         configure fragments.
16150         (libc_extra_cppflags): New flag.
16151         * configure. Regenerate.
16152         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac
16153         (libc_cv_ppc64_def_call_elf): Define it to yes if compiler does
16154         not set _CALL_ELF and add -D_CALL_ELF=1 to libc_extra_cppflags.
16155         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Regenerate.
16157         [BZ #16815]
16158         * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S (__nearbyint): Fix
16159         result for FE_DOWNWARD rounding mode.
16160         * sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S (__nearbyintf):
16161         Likewise.
16162         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
16164 2014-04-04  Chris Metcalf  <cmetcalf@tilera.com>
16166         * sysdeps/tile/dl-runtime.c (_dl_unmap): Fix cut-and-paste bug
16167         in function argument name.
16169 2014-04-03  David Svoboda  <svoboda@cert.org>
16171         [BZ #5666]
16172         * manual/stdio.texi (Line-Oriented Input): Document buffer allocation
16173         explicitly.
16175 2014-04-03  Roland McGrath  <roland@hack.frob.com>
16177         * elf/dl-unmap-segments.h: New file.
16178         * sysdeps/generic/ldsodefs.h
16179         (DL_UNMAP): Use _dl_unmap_segments in place of __munmap.
16180         * elf/dl-close.c: Include <dl-unmap-segments.h>.
16181         * elf/dl-fptr.c: Likewise.
16182         (_dl_unmap): Use _dl_unmap_segments in place of __munmap.
16183         * sysdeps/aarch64/tlsdesc.c: Likewise.
16184         * sysdeps/arm/tlsdesc.c: Likewise.
16185         * sysdeps/i386/tlsdesc.c: Likewise.
16186         * sysdeps/tile/dl-runtime.c: Likewise.
16187         * sysdeps/x86_64/tlsdesc.c: Likewise.
16188         * elf/dl-load.h: New file.
16189         * elf/dl-load.c: Include it.
16190         (MAP_FILE, MAP_COPY, MAP_BASE_ADDR):
16191         Macros moved to dl-load.h.
16192         (ELF_PREFERRED_ADDRESS_DATA, ELF_PREFERRED_ADDRESS): Likewise.
16193         (_dl_map_object_from_fd): Type 'struct loadcmd' moved to dl-load.h.
16194         Use _dl_unmap_segments in place of __munmap.
16195         Break out segment-mapping loop into ...
16196         * elf/dl-map-segments.h (_dl_map_segments): ... here, in new file.
16198 2014-04-03  Will Newton  <will.newton@linaro.org>
16200         * elf/dl-lookup.c (do_lookup_x): Remove comment
16201         referring to nested function and move variable
16202         declarations down to before first use.
16204 2014-04-02  Joseph Myers  <joseph@codesourcery.com>
16206         [BZ #16799]
16207         [BZ #16800]
16208         * math/s_catan.c (__catan): Avoid passing -0 denominator to atan2
16209         with 0 numerator.
16210         * math/s_catanf.c (__catanf): Likewise.
16211         * math/s_catanh.c (__catanh): Likewise.
16212         * math/s_catanhf.c (__catanhf): Likewise.
16213         * math/s_catanhl.c (__catanhl): Likewise.
16214         * math/s_catanl.c (__catanl): Likewise.
16215         * sysdeps/ieee754/flt-32/e_logf.c (__ieee754_logf): Always divide
16216         by positive zero when computing -Inf result.
16217         * math/libm-test.inc (catan_test): Use ALL_RM_TEST.
16218         (catanh_test): Likewise.
16219         * sysdeps/i386/fpu/libm-test-ulps: Update.
16220         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16222         [BZ #16789]
16223         * math/s_clog.c (__clog): Use math_force_eval to ensure underflow
16224         instead of using underflowing value in computing result.
16225         * math/s_clog10.c (__clog10): Likewise.
16226         * math/s_clog10f.c (__clog10f): Likewise.
16227         * math/s_clog10l.c (__clog10l): Likewise.
16228         * math/s_clogf.c (__clogf): Likewise.
16229         * math/s_clogl.c (__clogl): Likewise.
16230         * math/libm-test.inc (clog_test): Use ALL_RM_TEST.
16231         (clog10_test): Likewise.
16232         * sysdeps/i386/fpu/libm-test-ulps: Update.
16233         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16235 2014-04-02  Alan Modra  <amodra@gmail.com>
16237         [BZ #16739]
16238         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Correct
16239         output when value is near a power of two.  Use int64_t for lx and
16240         remove casts.  Use decimal rather than hex exponent constants.
16241         Don't use long double multiplication when double will suffice.
16242         * math/libm-test.inc (nextafter_test_data): Add tests.
16243         * NEWS: Add 16739 and 16786 to bug list.
16245         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Correct stream hint.
16247         * sysdeps/powerpc/powerpc64/start.S: Add @toc to toc symbol reference.
16249 2014-04-01  Will Newton  <will.newton@linaro.org>
16251         * benchtests/Makefile (CFLAGS-bench-ffs.c): Add
16252         -fno-builtin.  (CFLAGS-bench-ffsll.c): Likewise.
16254 2014-04-01  Florian Weimer  <fweimer@redhat.com>
16256         [BZ #13347]
16257         * nptl/nptl-init.c (sighandler_setxid): Check system call result.
16258         * nptl/tst-setuid2.c: New file.
16259         * nptl/Makefile (xtests): Add tst-setuid2.
16261 2014-04-01  Alan Modra  <amodra@gmail.com>
16263         [BZ #16786]
16264         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Don't trash stack.
16266 2014-03-31  Joseph Myers  <joseph@codesourcery.com>
16268         [BZ #6803]
16269         [BZ #6804]
16270         * math/w_scalb.c (__scalb): For non-SVID mode, check result and
16271         set errno as appropriate.
16272         * math/w_scalbf.c (__scalbf): Likewise.
16273         * math/w_scalbl.c (__scalbl): Likewise.
16274         * math/gen-libm-test.pl (parse_args): Handle ERRNO_PLUS_OFLOW,
16275         ERRNO_MINUS_OFLOW, ERRNO_PLUS_UFLOW and ERRNO_MINUS_UFLOW.
16276         * math/libm-test.inc (scalb_test_data): Add errno expectations.
16277         Add more NaN tests.
16279         [BZ #16349]
16280         * math/w_atan2.c: Include <errno.h>.
16281         (__atan2): Set errno for result underflowing to zero.
16282         * math/w_atan2f.c: Include <errno.h>.
16283         (__atan2f): Set errno for result underflowing to zero.
16284         * math/w_atan2l.c: Include <errno.h>.
16285         (__atan2l): Set errno for result underflowing to zero.
16286         * math/auto-libm-test-in: Don't allow missing errno for some atan2
16287         tests.
16288         * math/auto-libm-test-out: Regenerated.
16290 2014-03-31  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16292         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S (MFVSRD_R3_V1):
16293         Encode instruction correctly in little endian.
16294         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S (MFVSRD_R3_V1):
16295         Likewise.
16296         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (MFVSRD_R3_V1):
16297         Likewise.
16298         * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S (MFVSRD_R3_V1):
16299         Likewise.
16300         * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S (MFVSRD_R3_V1):
16301         Likewise.
16303 2014-03-31  Joseph Myers  <joseph@codesourcery.com>
16305         [BZ #9894]
16306         * sysdeps/unix/sysv/linux/kernel-features.h
16307         [__sparc__ && !__arch64__ && !__sparc_v9__]
16308         (__ASSUME_SET_ROBUST_LIST): Do not define.
16309         [__sparc__ && !__arch64__ && !__sparc_v9__]
16310         (__ASSUME_FUTEX_LOCK_PI): Likewise.
16311         [__sparc__ && !__arch64__ && !__sparc_v9__] (__ASSUME_REQUEUE_PI):
16312         Likewise.
16313         * sysdeps/unix/sysv/linux/arm/kernel-features.h
16314         (__ASSUME_FUTEX_LOCK_PI): Undefine.
16315         (__ASSUME_REQUEUE_PI): Likewise.
16316         (__ASSUME_SET_ROBUST_LIST): Likewise.
16317         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
16318         [__LINUX_KERNEL_VERSION < 0x030a00] (__ASSUME_FUTEX_LOCK_PI):
16319         Undefine.
16320         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
16321         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_FUTEX_LOCK_PI):
16322         Likewise.
16323         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_REQUEUE_PI):
16324         Likewise.
16325         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_SET_ROBUST_LIST):
16326         Likewise.
16327         * sysdeps/unix/sysv/linux/mips/kernel-features.h
16328         [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_FUTEX_LOCK_PI):
16329         Undefine.
16330         [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_REQUEUE_PI): Likewise.
16331         [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_SET_ROBUST_LIST):
16332         Likewise.
16334         [BZ #16648]
16335         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
16336         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_FUTIMESAT): Define.
16337         * sysdeps/unix/sysv/linux/microblaze/futimesat.c: New file.
16339 2014-03-31  Will Newton  <will.newton@linaro.org>
16341         * benchtests/Makefile (bench): Add ffs and ffsll to list
16342         of tests.
16343         * benchtests/ffs-inputs: New file.
16344         * benchtests/ffsll-inputs: Likewise.
16346 2014-03-29  Joseph Myers  <joseph@codesourcery.com>
16348         [BZ #16770]
16349         * math/e_scalb.c (__ieee754_scalb): Check second argument is not
16350         too large before casting to int.
16351         * math/e_scalbf.c (__ieee754_scalbf): Likewise.
16352         * math/e_scalbl.c (__ieee754_scalbl): Likewise.
16353         * math/libm-test.inc (scalb_test_data): Add more tests.
16355 2014-03-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
16357         * benchtests/Makefile (DETAILED_OPT): New make option.
16358         (bench-func): Run benchmark program with -d if DETAILED_OPT is
16359         set.
16360         * benchtests/bench-skeleton.c: Include stdbool.h.
16361         (main): Store and print timings per input.
16362         * benchtests/scripts/bench.py (STRUCT_TEMPLATE): Add timing
16363         member to each argument value.
16364         (EPILOGUE): Define new macros RESULT and RESULT_ACCUM.
16365         (_print_arg_data): Initialize per-input timing to 0.
16367         * benchtests/Makefile (timing-type): New binary.
16368         (bench-clean): Also remove bench-timing-type.
16369         (bench): New target for timing-type.
16370         (bench-func): Print output in JSON format.
16371         * benchtests/bench-skeleton.c (main): Print output in JSON
16372         format.
16373         * benchtests/bench-timing-type.c: New file.
16374         * benchtests/bench-timing.h (TIMING_TYPE): New macro.
16375         (TIMING_PRINT_STATS): Remove.
16376         * benchtests/scripts/bench.py (_print_arg_data): Store variant
16377         name separately.
16379         * benchtests/bench-modf.c: Remove.
16380         * benchtests/modf-inputs: New inputs file.
16382 2014-03-28  Joseph Myers  <joseph@codesourcery.com>
16384         [BZ #16362]
16385         * math/s_clog10.c (M_PI_LOG10E): New macro.
16386         (__clog10): Use M_PI_LOG10E instead of M_PI when real and
16387         imaginary parts are 0.
16388         * math/s_clog10f.c (M_PI_LOG10Ef): New macro.
16389         (__clog10f): Use M_PI_LOG10Ef instead of M_PI when real and
16390         imaginary parts are 0.
16391         * math/s_clog10l.c (M_PI_LOG10El): New macro.
16392         (__clog10l): Use M_PI_LOG10El instead of M_PIl when real and
16393         imaginary parts are 0.
16394         * math/libm-test.inc (clog10_test_data): Update expected results
16395         for when real and imaginary parts are 0.
16397 2014-03-27  Paul Pluzhnikov  <ppluzhnikov@google.com>
16399         * elf/dl-load.c: Finish conversion of __builtin_expect into
16400         __glibc_{un}likely.
16402 2014-03-27  Joseph Myers  <joseph@codesourcery.com>
16404         [BZ #16348]
16405         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [!USE_AS_EXPM1L]: Use
16406         1+x for argument with exponent below -67.
16407         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [!USE_AS_EXPM1L]:
16408         Likewise.
16409         * math/auto-libm-test-in: Add more tests of exp.
16410         * math/auto-libm-test-out: Regenerated.
16412 2014-03-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
16414         [BZ #16759]
16415         * inet/getnetgrent_r.c (get_nonempty_val): New function.
16416         (nscd_getnetgrent): Use it.
16418         [BZ #16760]
16419         * nscd/netgroupcache.c (addgetnetgrentX): Use memmove instead
16420         of stpcpy.
16422 2014-03-27  Andi Kleen  <ak@linux.intel.com>
16424         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (lll_lock)
16425         (lll_robust_lock, lll_cond_lock, lll_timedlock)
16426         (lll_robust_cond_lock, lll_robust_timedlock, lll_unlock)
16427         (lll_robust_unlock): Remove out of line section. Use cfi
16428         intrinsics.
16429         (LLL_STUB_UNWIND_INFO*): Remove.
16430         * nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_lock)
16431         (lll_robust_lock, lll_cond_lock, lll_timedlock)
16432         (lll_robust_cond_lock, lll_robust_timedlock, lll_unlock)
16433         (lll_robust_unlock): Remove out of line section. Use cfi
16434         intrinsics.
16435         (LLL_STUB_UNWIND_INFO*): Remove.
16437 2014-03-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
16439         [BZ #16758]
16440         * nscd/netgroupcache.c (addinnetgrX): Succeed if triplet has
16441         blank values.
16443 2014-03-26  Paul Pluzhnikov  <ppluzhnikov@google.com>
16445         * elf/dl-load.c: Convert __builtin_expect into __glibc_{un}likely.
16447 2014-03-26  Joseph Myers  <joseph@codesourcery.com>
16449         [BZ #16198]
16450         * sysdeps/x86_64/fpu/fegetenv.c (fegetenv): Use fldenv after
16451         fnstenv.
16452         * math/test-fenv-preserve.c: New file.
16453         * math/Makefile (tests): Add test-fenv-preserve.
16455 2014-03-26  Will Newton <will.newton@linaro.org>
16457         * benchtests/bench-strtod.c (TIMEOUT): Define to 10.
16459 2014-03-25  Roland McGrath  <roland@hack.frob.com>
16461         * scripts/versionlist.awk: Partition the version sets and emit all
16462         GLIBC_* (sorted) before all others (sorted).
16464 2014-03-25  Joseph Myers  <joseph@codesourcery.com>
16466         * elf/Versions (libc) [EXPORT_UNWIND_FIND_FDE]: Add empty
16467         GLIBC_2.2.5 version.
16469 2014-03-25 Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16471         * scripts/localplt.awk: Check for PLT generated by internal IFUNC
16472         calls.
16474         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Revert
16475         previous change.
16477         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
16479 2014-03-25  Andreas Schwab  <schwab@suse.de>
16481         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Add out_fail2
16482         label to be used after in6ailist is initialized.
16484 2014-03-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16486         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
16487         (__PTHREAD_MUTEX_HAVE_ELISION): New define.
16489 2014-03-25  Joseph Myers  <joseph@codesourcery.com>
16491         [BZ #16357]
16492         [BZ #16599]
16493         * math/gen-auto-libm-tests.c (fp_format_desc): Add field
16494         min_plus_half.
16495         (fp_formats): Update initializers.
16496         (init_fp_formats): Initialize new field.
16497         (output_for_one_input_case): Allow underflow for results up to
16498         min_plus_half.
16499         * math/libm-test.inc (log1p_test): Use ALL_RM_TEST.
16500         * math/auto-libm-test-in: Don't mark some underflows from asin and
16501         atanh as spurious.
16502         * math/auto-libm-test-out: Regenerated.
16503         * sysdeps/i386/fpu/libm-test-ulps: Update.
16504         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16506 2014-03-25  Andreas Schwab  <schwab@suse.de>
16508         * libio/Makefile (tst-ftell-partial-wide-ENV)
16509         (tst-ftell-active-handler-ENV): Define.
16511 2014-03-25  Stefan Liebler <stli@linux.vnet.ibm.com>
16513         * NEWS: Add 16712, 16713, 16714 to fixed bug list.
16515 2014-03-24  Paul Pluzhnikov  <ppluzhnikov@google.com>
16517         * elf/tst-dlopen-aout.c: Adjust comments. Use test-skeleton.c
16519 2014-03-24  Joseph Myers  <joseph@codesourcery.com>
16521         * sysdeps/ieee754/dbl-64/e_exp.c: Include <math.h>.
16522         * sysdeps/x86_64/fpu/multiarch/e_exp.c
16523         [HAVE_FMA4_SUPPORT || HAVE_AVX_SUPPORT]: Likewise.
16525 2014-03-24  Paul Pluzhnikov  <ppluzhnikov@google.com>
16527         [BZ #16634]
16528         * elf/dl-load.c (open_verify): Add mode parameter.
16529         Error early when ET_EXEC and mode does not have __RTLD_OPENEXEC.
16530         (open_path): Change from boolean 'secure' to complete flag 'mode'
16531         (_dl_map_object): Adjust.
16532         * elf/Makefile (tests): Add tst-dlopen-aout.
16533         * elf/tst-dlopen-aout.c: New test.
16535 2014-03-24  Stefan Liebler <stli@linux.vnet.ibm.com>
16537         [BZ #16714]
16538         * sysdeps/unix/sysv/linux/s390/bits/stat.h
16539         (struct stat): Rename member pad0 to __glibc_reserved0.
16541         [BZ #16712]
16542         * sysdeps/s390/s390-32/bits/wordsize.h
16543         (__WORDSIZE32_SIZE_ULONG): New define.
16544         * sysdeps/s390/s390-64/bits/wordsize.h
16545         (__WORDSIZE32_SIZE_ULONG): Likewise.
16546         * sysdeps/generic/stdint.h (SIZE_MAX):
16547         Define as UL if __WORDSIZE32_SIZE_ULONG.
16549         [BZ #16713]
16550         * sysdeps/unix/sysv/linux/s390/bits/sigaction.h
16551         (__glibc_reserved0): New variable.
16552         (sa_flags): Change type to int.
16554         * posix/Makefile (before-compile): Use += before-compile instead
16555         of a :=.
16557         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
16558         (__PTHREAD_MUTEX_HAVE_ELISION): New define.
16560 2014-03-20  Andreas Schwab  <schwab@suse.de>
16562         [BZ #16743]
16563         * sysdeps/posix/getaddrinfo.c (gaih_inet): Properly skip over
16564         non-matching result from nscd.
16566 2014-03-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
16568         * scripts/bench.py: Moved to ...
16569         * benchtests/scripts/bench.py: ... here.
16570         * benchtests/Makefile ($(objpfx)bench-%.c): Adjust.
16572 2014-03-24  Andreas Schwab  <schwab@suse.de>
16574         [BZ #16002]
16575         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Use
16576         alloca_account and account alloca use for struct in6ailist.
16578 2014-03-24  Joseph Myers  <joseph@codesourcery.com>
16580         [BZ #16284]
16581         * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Use original
16582         rounding mode to recompute results that overflow to infinity or
16583         underflow to zero.
16584         * math/auto-libm-test-in: Don't mark tests as expected to fail for
16585         bug 16284.
16586         * math/auto-libm-test-out: Regenerated.
16587         * math/libm-test.inc (ccos_test): Use ALL_RM_TEST.
16588         (ccosh_test): Likewise.
16589         (csin_test_data): Use plus_oflow.
16590         (csin_test): Use ALL_RM_TEST.
16591         (csinh_test_data): Use plus_oflow.
16592         (csinh_test): Use ALL_RM_TEST.
16593         * sysdeps/i386/fpu/libm-test-ulps: Update.
16594         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16596 2014-03-21  Joseph Myers  <joseph@codesourcery.com>
16598         * sysdeps/mips/bits/wordsize.h: Include <sgidefs.h>.
16599         * sysdeps/unix/sysv/linux/mips/getrlimit64.c: Likewise.
16600         * sysdeps/unix/sysv/linux/mips/setrlimit64.c: Likewise.
16602         [BZ #16731]
16603         * sysdeps/i386/fpu/e_log.S (__ieee754_log): Take absolute value
16604         when x - 1 is zero.
16605         * sysdeps/i386/fpu/e_logf.S (__ieee754_logf): Likewise.
16606         * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Likewise.
16607         * sysdeps/i386/i686/fpu/e_logl.S (__ieee754_logl): Likewise.
16608         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Return +0 when
16609         argument is 1.
16610         * sysdeps/ieee754/ldbl-128/e_logl.c (__ieee754_logl): Likewise.
16611         * sysdeps/x86_64/fpu/e_logl.S: Take absolute value when x - 1 is
16612         zero.
16613         * math/libm-test.inc (log_test): Use ALL_RM_TEST.
16614         * sysdeps/i386/fpu/libm-test-ulps: Update.
16615         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16617 2014-03-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
16619         * scripts/bench.pl: Remove file.
16620         * scripts/bench.py: New benchmark script.
16621         * benchtests/Makefile ($(objpfx)bench-%.c): Use it.
16622         * benchtests/README: Mention python dependency.
16623         * scripts/pylintrc: New file.
16624         * scripts/pylint: New file.
16626         * bits/mathdef.h: Use #ifdef instead of #if.
16627         * sysdeps/arm/bits/mathdef.h [defined __USE_ISOC99 && defined
16628         _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
16629         * sysdeps/tile/bits/mathdef.h [defined __USE_ISOC99 && defined
16630         _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
16631         * sysdeps/x86/bits/mathdef.h [defined __USE_ISOC99 && defined
16632         _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
16634 2014-03-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16635             Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
16637         * string/strpbrk.c (strpbrk): Using macro to redefine symbol name.
16638         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strpbrk-power7
16639         and strpbrk-ppc64 objects.
16640         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16641         (__libc_ifunc_impl_list): Add new strpbrk optimized symbols.
16642         * sysdeps/powerpc/powerpc64/multiarch/strpbrk-power7.S: New file:
16643         multiarch strpbrk for POWER7.
16644         * sysdeps/powerpc/powerpc64/multiarch/strpbrk-ppc64.c: New file:
16645         multiarch strpbrk for PPC64.
16646         * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: New file: strpbrk
16647         ifunc selector.
16648         * sysdeps/powerpc/powerpc64/power7/strpbrk.S: New file: optimited
16649         strpbrk for POWER7.
16651 2014-03-20  Joseph Myers  <joseph@codesourcery.com>
16653         * math/libm-test.inc (asinh_test): Use ALL_RM_TEST.
16654         (atan_test): Likewise.
16655         (atanh_test_data): Use NO_TEST_INLINE for two tests.
16656         (atanh_test): Use ALL_RM_TEST.
16657         (atan2_test_data): Likewise.
16658         (cabs_test): Likewise.
16659         (cacosh_test): Likewise.
16660         (carg_test): Likewise.
16661         (casin_test): Likewise.
16662         (casinh_test): Likewise.
16663         (cbrt_test): Likewise.
16664         (csqrt_test): Likewise.
16665         (erf_test): Likewise.
16666         (erfc_test): Likewise.
16667         (pow10_test): Likewise.
16668         (exp2_test): Likewise.
16669         (hypot_test): Likewise.
16670         (j0_test): Likewise.
16671         (j1_test): Likewise.
16672         (lgamma_test): Likewise.
16673         (gamma_test): Likewise.
16674         (sincos_test): Likewise.
16675         (tanh_test): Likewise.
16676         (y0_test): Likewise.
16677         (y1_test): Likewise.
16678         * sysdeps/i386/fpu/libm-test-ulps: Update.
16679         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16681 2014-03-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16683         * string/strcspn.c (strcspn): Using macro to redefine symbol name.
16684         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcspn-power7
16685         and strcspn-ppc64 objects.
16686         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16687         (__libc_ifunc_impl_list): Add new strcspn optimized symbols.
16688         * sysdeps/powerpc/powerpc64/multiarch/strcspn-power7.S: New file:
16689         multiarch strcspn for POWER7.
16690         * sysdeps/powerpc/powerpc64/multiarch/strcspn-ppc64.c: New file:
16691         multiarch strcspn for PPC64.
16692         * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: New file: strcspn
16693         ifunc selector.
16694         * sysdeps/powerpc/powerpc64/power7/strcspn.S: New file: optimited
16695         strcspn for POWER7.
16697 2014-03-20  Joseph Myers  <joseph@codesourcery.com>
16699         * math/gen-libm-test.pl (generate_testfile): Expect only function
16700         name as argument to AUTO_TESTS_* and pass results for all rounding
16701         modes to parse_args.
16702         (parse_auto_input): Separate inputs of automatic tests from
16703         outputs before storing in %auto_tests.
16704         * math/libm-test.inc (acos_test_data): Update call to
16705         AUTO_TESTS_f_f.
16706         (acos_test): Use ALL_RM_TEST.
16707         (acos_tonearest_test_data): Remove.
16708         (acos_test_tonearest): Likewise.
16709         (acos_towardzero_test_data): Likewise.
16710         (acos_test_towardzero): Likewise.
16711         (acos_downward_test_data): Likewise.
16712         (acos_test_downward): Likewise.
16713         (acos_upward_test_data): Likewise.
16714         (acos_test_upward): Likewise.
16715         (acosh_test_data): Update call to AUTO_TESTS_f_f.
16716         (asin_test_data): Likewise.
16717         (asin_test): Use ALL_RM_TEST.
16718         (asin_tonearest_test_data): Remove.
16719         (asin_test_tonearest): Likewise.
16720         (asin_towardzero_test_data): Likewise.
16721         (asin_test_towardzero): Likewise.
16722         (asin_downward_test_data): Likewise.
16723         (asin_test_downward): Likewise.
16724         (asin_upward_test_data): Likewise.
16725         (asin_test_upward): Likewise.
16726         (asinh_test_data): Update call to AUTO_TESTS_f_f.
16727         (atan_test_data): Likewise.
16728         (atanh_test_data): Likewise.
16729         (atan2_test_data): Update call to AUTO_TESTS_ff_f.
16730         (cabs_test_data): Update call to AUTO_TESTS_c_f.
16731         (carg_test_data): Likewise.
16732         (cbrt_test_data): Update call to AUTO_TESTS_f_f.
16733         (ccos_test_data): Update call to AUTO_TESTS_c_c.
16734         (ccosh_test_data): Likewise.
16735         (cexp_test_data): Likewise.
16736         (clog_test_data): Likewise.
16737         (clog10_test_data): Likewise.
16738         (cos_test_data): Update call to AUTO_TESTS_f_f.
16739         (cos_test): Use ALL_RM_TEST.
16740         (cos_tonearest_test_data): Remove.
16741         (cos_test_tonearest): Likewise.
16742         (cos_towardzero_test_data): Likewise.
16743         (cos_test_towardzero): Likewise.
16744         (cos_downward_test_data): Likewise.
16745         (cos_test_downward): Likewise.
16746         (cos_upward_test_data): Likewise.
16747         (cos_test_upward): Likewise.
16748         (cosh_test_data): Update call to AUTO_TESTS_f_f.
16749         (cosh_test): Use ALL_RM_TEST.
16750         (cosh_tonearest_test_data): Remove.
16751         (cosh_test_tonearest): Likewise.
16752         (cosh_towardzero_test_data): Likewise.
16753         (cosh_test_towardzero): Likewise.
16754         (cosh_downward_test_data): Likewise.
16755         (cosh_test_downward): Likewise.
16756         (cosh_upward_test_data): Likewise.
16757         (cosh_test_upward): Likewise.
16758         (cpow_test_data): Update call to AUTO_TESTS_cc_c.
16759         (csqrt_test_data): Update call to AUTO_TESTS_c_c.
16760         (ctan_test_data): Likewise.
16761         (ctan_test): Use ALL_RM_TEST.
16762         (ctan_tonearest_test_data): Remove.
16763         (ctan_test_tonearest): Likewise.
16764         (ctan_towardzero_test_data): Likewise.
16765         (ctan_test_towardzero): Likewise.
16766         (ctan_downward_test_data): Likewise.
16767         (ctan_test_downward): Likewise.
16768         (ctan_upward_test_data): Likewise.
16769         (ctan_test_upward): Likewise.
16770         (ctanh_test_data): Update call to AUTO_TESTS_c_c.
16771         (ctanh_test): Use ALL_RM_TEST.
16772         (ctanh_tonearest_test_data): Remove.
16773         (ctanh_test_tonearest): Likewise.
16774         (ctanh_towardzero_test_data): Likewise.
16775         (ctanh_test_towardzero): Likewise.
16776         (ctanh_downward_test_data): Likewise.
16777         (ctanh_test_downward): Likewise.
16778         (ctanh_upward_test_data): Likewise.
16779         (ctanh_test_upward): Likewise.
16780         (erf_test_data): Update call to AUTO_TESTS_f_f.
16781         (erfc_test_data): Likewise.
16782         (exp_test_data): Likewise.
16783         (exp_test): Use ALL_RM_TEST.
16784         (exp_tonearest_test_data): Remove.
16785         (exp_test_tonearest): Likewise.
16786         (exp_towardzero_test_data): Likewise.
16787         (exp_test_towardzero): Likewise.
16788         (exp_downward_test_data): Likewise.
16789         (exp_test_downward): Likewise.
16790         (exp_upward_test_data): Likewise.
16791         (exp_test_upward): Likewise.
16792         (exp10_test_data): Update call to AUTO_TESTS_f_f.
16793         (exp10_test): Use ALL_RM_TEST.
16794         (exp10_tonearest_test_data): Remove.
16795         (exp10_test_tonearest): Likewise.
16796         (exp10_towardzero_test_data): Likewise.
16797         (exp10_test_towardzero): Likewise.
16798         (exp10_downward_test_data): Likewise.
16799         (exp10_test_downward): Likewise.
16800         (exp10_upward_test_data): Likewise.
16801         (exp10_test_upward): Likewise.
16802         (exp2_test_data): Update call to AUTO_TESTS_f_f.
16803         (expm1_test_data): Likewise.
16804         (expm1_test): Use ALL_RM_TEST.
16805         (expm1_tonearest_test_data): Remove.
16806         (expm1_test_tonearest): Likewise.
16807         (expm1_towardzero_test_data): Likewise.
16808         (expm1_test_towardzero): Likewise.
16809         (expm1_downward_test_data): Likewise.
16810         (expm1_test_downward): Likewise.
16811         (expm1_upward_test_data): Likewise.
16812         (expm1_test_upward): Likewise.
16813         (fma_test_data): Update call to AUTO_TESTS_fff_f.
16814         (fma_test): Use ALL_RM_TEST.
16815         (fma_towardzero_test_data): Remove.
16816         (fma_test_towardzero): Likewise.
16817         (fma_downward_test_data): Likewise.
16818         (fma_test_downward): Likewise.
16819         (fma_upward_test_data): Likewise.
16820         (fma_test_upward): Likewise.
16821         (hypot_test_data): Update call to AUTO_TESTS_ff_f.
16822         (j0_test_data): Update call to AUTO_TESTS_f_f.
16823         (j1_test_data): Likewise.
16824         (jn_test_data): Update call to AUTO_TESTS_if_f.
16825         (lgamma_test_data): Update call to AUTO_TESTS_f_f1.
16826         (log_test_data): Update call to AUTO_TESTS_f_f.
16827         (log10_test_data): Likewise.
16828         (log1p_test_data): Likewise.
16829         (log2_test_data): Likewise.
16830         (pow_test_data): Update call to AUTO_TESTS_ff_f.
16831         (pow_tonearest_test_data): Likewise.
16832         (sin_test_data): Update call to AUTO_TESTS_f_f.
16833         (sin_test): Use ALL_RM_TEST.
16834         (sin_tonearest_test_data): Remove.
16835         (sin_test_tonearest): Likewise.
16836         (sin_towardzero_test_data): Likewise.
16837         (sin_test_towardzero): Likewise.
16838         (sin_downward_test_data): Likewise.
16839         (sin_test_downward): Likewise.
16840         (sin_upward_test_data): Likewise.
16841         (sin_test_upward): Likewise.
16842         (sincos_test_data): Update call to AUTO_TESTS_fFF_11.
16843         (sinh_test_data): Update call to AUTO_TESTS_f_f.
16844         (sinh_test): Use ALL_RM_TEST.
16845         (sinh_tonearest_test_data): Remove.
16846         (sinh_test_tonearest): Likewise.
16847         (sinh_towardzero_test_data): Likewise.
16848         (sinh_test_towardzero): Likewise.
16849         (sinh_downward_test_data): Likewise.
16850         (sinh_test_downward): Likewise.
16851         (sinh_upward_test_data): Likewise.
16852         (sinh_test_upward): Likewise.
16853         (sqrt_test_data): Update call to AUTO_TESTS_f_f.
16854         (sqrt_test): Use ALL_RM_TEST.
16855         (sqrt_tonearest_test_data): Remove.
16856         (sqrt_test_tonearest): Likewise.
16857         (sqrt_towardzero_test_data): Likewise.
16858         (sqrt_test_towardzero): Likewise.
16859         (sqrt_downward_test_data): Likewise.
16860         (sqrt_test_downward): Likewise.
16861         (sqrt_upward_test_data): Likewise.
16862         (sqrt_test_upward): Likewise.
16863         (tan_test_data): Update call to AUTO_TESTS_f_f.
16864         (tan_test): Use ALL_RM_TEST.
16865         (tan_tonearest_test_data): Remove.
16866         (tan_test_tonearest): Likewise.
16867         (tan_towardzero_test_data): Likewise.
16868         (tan_test_towardzero): Likewise.
16869         (tan_downward_test_data): Likewise.
16870         (tan_test_downward): Likewise.
16871         (tan_upward_test_data): Likewise.
16872         (tan_test_upward): Likewise.
16873         (tanh_test_data): Update call to AUTO_TESTS_f_f.
16874         (tgamma_test_data): Likewise.
16875         (y0_test_data): Likewise.
16876         (y1_test_data): Likewise.
16877         (yn_test_data): Update call to AUTO_TESTS_if_f.
16878         (main): Do not call removed functions.
16880 2014-03-19  Joseph Myers  <joseph@codesourcery.com>
16882         * math/libm-test.inc (fdim_test): Use ALL_RM_TEST.
16883         (ldexp_test_data): Remove.
16884         (ldexp_test): Move to after scalbn_test.  Use ALL_RM_TEST with
16885         scalbn_test_data.
16886         (scalb_test): Use ALL_RM_TEST.
16888 2014-03-19  Andreas Schwab  <schwab@suse.de>
16890         * nscd/nscd.service: Also invalidate netgroup cache on reload.
16892 2014-03-19  Joseph Myers  <joseph@codesourcery.com>
16894         [BZ #16649]
16895         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
16896         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_PREADV): Undefine.
16897         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_PWRITEV): Likewise.
16898         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
16899         (__ASSUME_PREADV): Undefine.
16900         (__ASSUME_PWRITEV): Likewise.
16902 2014-03-18  Roland McGrath  <roland@hack.frob.com>
16904         * bits/mman-linux.h: Add comment about non-Linux use.
16905         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add comment about
16906         bits/mman-linux.h resting place.
16908         * sysdeps/unix/sysv/linux/bits/mman-linux.h: Moved to ...
16909         * bits/mman-linux.h: ... here.
16911 2014-03-18  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16913         * conform/conformtest.pl: Add standard definition when calling C
16914         preprocessor on data files.
16915         (checknamespace): Remove unused variable.
16917 2014-03-18  Joseph Myers  <joseph@codesourcery.com>
16919         * math/gen-libm-test.pl (parse_args): Handle plus_oflow,
16920         minus_oflow, plus_uflow and minus_uflow in expected results.
16921         * math/libm-test.inc (scalbn_test_data): Add more tests of
16922         negative arguments.  Use plus_oflow, minus_oflow, plus_uflow and
16923         minus_uflow.
16924         (scalbn_test): Use ALL_RM_TEST.
16925         (scalbln_test_data): Add more tests of negative arguments.  Use
16926         plus_oflow, minus_oflow, plus_uflow and minus_uflow.
16927         (scalbln_test): Use ALL_RM_TEST.
16929 2014-03-18  Roland McGrath  <roland@hack.frob.com>
16931         * scripts/abilist.awk: Ignore symbols marked with .hidden.
16933 2014-03-18  Will Newton  <will.newton@linaro.org>
16935         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Remove
16936         inaccurate comment.
16938 2014-03-18  Joseph Myers  <joseph@codesourcery.com>
16940         * Makerules [!subdir] (check-abi): Exit with error status if a
16941         test failed.
16943 2014-03-17  Joseph Myers  <joseph@codesourcery.com>
16945         * math/libm-test.inc (nearbyint_test_data): Include all tests used
16946         for rint.  Include results for all rounding modes.
16947         (nearbyint_test): Use ALL_RM_TEST.
16948         (rint_test_data): Include all tests used for nearbyint.
16950 2014-03-17  Will Newton  <will.newton@linaro.org>
16952         * nptl/sysdeps/pthread/pthread.h: Revert previous
16953         change.
16955         * sysdeps/generic/ldsodefs.h: Revert previous
16956         change.
16958         * libio/genops.c: Revert previous change.
16959         * libio/libioP.h: Likewise.
16960         * stdio-common/vfprintf.c: Likewise.
16962         * sysdeps/generic/math_private.h: Revert previous
16963         change.
16965         * sysdeps/generic/math_private.h: Check whether
16966         HAVE_RM_CTX is defined with #ifdef rather
16967         than #if.
16969         * argp/argp-fmtstream.h: Check whether
16970         __STRICT_ANSI__ is defined with #ifdef rather
16971         than #if.
16972         * argp/argp.h: Likewise.
16974         * libio/genops.c: Check whether
16975         _IO_JUMPS_OFFSET is defined with #ifdef rather
16976         than #if.
16977         * libio/libioP.h: Likewise.
16978         * stdio-common/vfprintf.c: Likewise.
16980         * sysdeps/generic/ldsodefs.h: Check whether
16981         HP_SMALL_TIMING_AVAIL is defined with #ifdef rather
16982         than #if.
16984         * nptl/sysdeps/pthread/pthread.h: Check
16985         __PTHREAD_MUTEX_HAVE_ELISION is defined before testing
16986         its value.
16988 2014-03-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
16990         * libio/iofdopen.c (_IO_new_fdopen): Seek to end only if
16991         setting O_APPEND.
16992         * libio/tst-ftell-active-handler.c (do_append_test): Add a
16993         test case.
16995         [BZ #16680]
16996         * libio/fileops.c (_IO_file_open): Seek to end of file but
16997         don't cache the offset.
16998         (get_file_offset): Remove function.
16999         (do_ftell): Use cached offset when available.
17000         * libio/iofdopen.c (_IO_new_fdopen): Seek to end of file but
17001         don't cache the offset.
17002         * libio/tst-ftell-active-handler.c (do_rewind_test): New test
17003         case.
17004         (do_one_test): Call it.
17005         (do_ftell_test): Fix up expected old offset for a+ mode.
17006         * libio/wfileops.c (do_ftell_wide): Used cached offset when
17007         available.
17009         * libio/tst-ftell-active-handler.c (do_ftell_test): Don't mix
17010         up test status with function return status.
17011         (do_write_test): Likewise.
17012         (do_append_test): Likewise.
17014         * nptl/sysdeps/pthread/bits/libc-lockP.h [defined NOT_IN_libc
17015         && !defined IS_IN_libpthread && __LT_SPINNOCK_INIT != 0]:
17016         Remove.
17018 2014-03-17  Joseph Myers  <joseph@codesourcery.com>
17020         * math/gen-libm-test.pl (parse_args): Handle results specified for
17021         each rounding mode separately.
17022         * math/libm-test.inc (lrint_test_data): Merge in per-rounding-mode
17023         tests and results from lrint_tonearest_test_data,
17024         lrint_towardzero_test_data, lrint_downward_test_data and
17025         lrint_upward_test_data.
17026         (lrint_test): Use ALL_RM_TEST.
17027         (lrint_tonearest_test_data): Remove.
17028         (lrint_test_tonearest): Likewise.
17029         (lrint_towardzero_test_data): Likewise.
17030         (lrint_test_towardzero): Likewise.
17031         (lrint_downward_test_data): Likewise.
17032         (lrint_test_downward): Likewise.
17033         (lrint_upward_test_data): Likewise.
17034         (lrint_test_upward): Likewise.
17035         (llrint_test_data): Merge in per-rounding-mode tests and results
17036         from llrint_tonearest_test_data, llrint_towardzero_test_data,
17037         llrint_downward_test_data and llrint_upward_test_data.
17038         (llrint_test): Use ALL_RM_TEST.
17039         (llrint_tonearest_test_data): Remove.
17040         (llrint_test_tonearest): Likewise.
17041         (llrint_towardzero_test_data): Likewise.
17042         (llrint_test_towardzero): Likewise.
17043         (llrint_downward_test_data): Likewise.
17044         (llrint_test_downward): Likewise.
17045         (llrint_upward_test_data): Likewise.
17046         (llrint_test_upward): Likewise.
17047         (rint_test_data): Merge in per-rounding-mode tests and results
17048         from rint_tonearest_test_data, rint_towardzero_test_data,
17049         rint_downward_test_data and rint_upward_test_data.  Add
17050         per-rounding-mode results for tests not in those arrays.
17051         (rint_test): Use ALL_RM_TEST.
17052         (rint_tonearest_test_data): Remove.
17053         (rint_test_tonearest): Likewise.
17054         (rint_towardzero_test_data): Likewise.
17055         (rint_test_towardzero): Likewise.
17056         (rint_downward_test_data): Likewise.
17057         (rint_test_downward): Likewise.
17058         (rint_upward_test_data): Likewise.
17059         (rint_test_upward): Likewise.
17060         (main): Don't call removed functions.
17062 2014-03-14  Roland McGrath  <roland@hack.frob.com>
17064         * csu/Makefile ($(objpfx)version-info.h): Remove linux-specific
17065         "Compiled on ..." crapola.  It is anti-useful.
17067 2014-03-14  Joseph Myers  <joseph@codesourcery.com>
17069         * scripts/evaluate-test.sh: Handle fourth argument to determine
17070         whether test run should stop on failure.
17071         * Makeconfig (stop-on-test-failure): New variable.
17072         (evaluate-test): Pass fourth argument to evaluate-test.sh based on
17073         $(stop-on-test-failure).
17074         * Makefile (tests): Give a summary of results from testing and
17075         exit with failure status if they include an ERROR or FAIL.
17076         (xtests): Likewise.
17077         * manual/install.texi (Configuring and compiling): Mention
17078         stop-on-test-failure=y.
17079         * INSTALL: Regenerated.
17081 2014-03-14  Roland McGrath  <roland@hack.frob.com>
17083         * scripts/versionlist.awk: New file.
17084         * Makerules [$(build-shared) = yes]
17085         (postclean-generated): Add Versions.def, not Versions.def.v and
17086         Versions.def.v.i.
17087         ($(common-objpfx)Versions.def.v.i): Target removed.
17088         ($(common-objpfx)Versions.def): New target.
17089         ($(common-objpfx)Versions.all): Depend on that rather that
17090         $(common-objpfx)Versions.def.v.
17091         * Versions.def: File removed.
17093         * Makeconfig (+gccwarn): Add -Wundef.
17094         * include/errno.h [IS_IN_rtld] [!RTLD_PRIVATE_ERRNO]: #error to catch
17095         a dl-sysdep.h breaking its contract.
17096         [!IS_IN_rtld] (RTLD_PRIVATE_ERRNO): Define it to 0.
17097         * include/stackinfo.h: New file.
17098         * nptl/sysdeps/i386/tls.h (TLS_DTV_AT_TP): New macro.
17099         * nptl/sysdeps/powerpc/tls.h (TLS_TCB_AT_TP): New macro.
17100         * nptl/sysdeps/s390/tls.h (TLS_DTV_AT_TP): New macro.
17101         * nptl/sysdeps/sh/tls.h (TLS_TCB_AT_TP): New macro.
17102         * nptl/sysdeps/sparc/tls.h (TLS_DTV_AT_TP): New macro.
17103         * nptl/sysdeps/x86_64/tls.h (TLS_DTV_AT_TP): New macro.
17104         * sysdeps/aarch64/nptl/tls.h (TLS_TCB_AT_TP): New macro.
17105         * sysdeps/alpha/nptl/tls.h (TLS_TCB_AT_TP): New macro.
17106         * sysdeps/arm/nptl/tls.h (TLS_TCB_AT_TP): New macro.
17107         * sysdeps/ia64/nptl/tls.h (TLS_TCB_AT_TP): New macro.
17108         * sysdeps/m68k/nptl/tls.h (TLS_TCB_AT_TP): New macro.
17109         * sysdeps/mach/hurd/i386/tls.h (TLS_DTV_AT_TP): New macro.
17110         * sysdeps/microblaze/nptl/tls.h (TLS_TCB_AT_TP): New macro.
17111         * sysdeps/mips/nptl/tls.h (TLS_TCB_AT_TP): New macro.
17112         * sysdeps/tile/nptl/tls.h (TLS_TCB_AT_TP): New macro.
17114 2014-03-14  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17116         [BZ #16707]
17117         * sysdeps/powerpc/powerpc64/fpu/s_roundl.S: Remove wrong
17118         implementation.
17119         * math/libm-test.inc (round_test_data): Add more tests.
17121         [BZ #16706]
17122         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S: Remove wrong
17123         implementation.
17124         * math/libm-test.inc (nearbyint_test_data): Add more tests.
17126         [BZ #16701]
17127         * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Remove wrong
17128         implementation.
17129         * math/libm-test.inc (ceil_test_data): Add more tests.
17131         * math/libm-test.inc (trunc_test_data): Add more tests related to
17132         BZ#16414.
17134 2014-03-14  Roland McGrath  <roland@hack.frob.com>
17136         * nptl/pthread_create.c (__pthread_create_2_1): Test TLS_TCB_AT_TP
17137         with #if rather than #ifdef.
17138         * nptl/sysdeps/pthread/createthread.c (create_thread): Likewise.
17140 2014-03-14  H.J. Lu  <hongjiu.lu@intel.com>
17142         * sysdeps/x86_64/configure.ac: Check AVX-512 assembler support
17143         first.  Disable AVX-512 GCC support if assembler doesn't support
17144         it.
17145         * sysdeps/x86_64/configure: Regenerated.
17147 2014-03-13  Carlos O'Donell  <carlos@redhat.com>
17149         * nptl/pthread_attr_setstack.c (__pthread_attr_setstack)
17150         [!_STACK_GROWS_DOWN]: Don't add stacksize to stackaddr.
17151         (__old_pthread_attr_setstack): Likewise.
17152         * nptl/pthread_attr_getstack.c (__pthread_attr_getstack)
17153         [!_STACK_GROWS_DOWN]: Likewise.
17155 2014-03-13  Mike Frysinger  <vapier@gentoo.org>
17157         * config.make.in (have-bash2): Delete.
17158         * configure.ac (libc_cv_have_bash2): Delete.
17159         * configure: Regenerate.
17160         * elf/Makefile (common-ldd-rewrite): Rename to ...
17161         (ldd-rewrite): ... this.  Move bash-ldd-rewrite content to end.
17162         (sh-ldd-rewrite): Delete.
17163         (bash-ldd-rewrite): Delete.
17164         (have-bash2): Delete checks.
17165         [ldd-rewrite-script]: Change $(ldd-shell)-ldd-rewrite to
17166         ldd-rewrite.
17168         * config.make.in (have-ksh): Delete.
17169         (KSH): Delete.
17170         * configure.ac (libc_cv_have_ksh): Delete.
17171         * configure: Regenerate.
17173         * elf/Makefile: Delete $(have-ksh) check.
17174         ($(objpfx)sotruss): Change KSH to BASH.
17175         * elf/sotruss.ksh: Rename to ...
17176         * elf/sotruss.sh: ... this.  Change @KSH@ to @BASH@.  Change
17177         function style to match POSIX.  Drop ksh vim mode setting.
17179         * manual/time.texi (Specifying the Time Zone with TZ): Change
17180         Tuesday to Thursday.
17182         * debug/tst-longjmp_chk2.c: Update header comment.
17183         (stackoverflow_handler): Add comment.  Call assert on pass value.
17185 2014-03-13  Igor Zamyatin  <igor.zamyatin@intel.com>
17187         [BZ #16194]
17188         * config.h.in (HAVE_AVX512_SUPPORT): New #undef.
17189         (HAVE_AVX512_ASM_SUPPORT): Likewise.
17190         * sysdeps/x86_64/bits/link.h (La_x86_64_zmm): New.
17191         (La_x86_64_vector): Add zmm.
17192         * sysdeps/x86_64/Makefile (tests): Add tst-audit10.
17193         (modules-names): Add tst-auditmod10a and tst-auditmod10b.
17194         ($(objpfx)tst-audit10): New target.
17195         ($(objpfx)tst-audit10.out): Likewise.
17196         (tst-audit10-ENV): New.
17197         (AVX512-CFLAGS): Likewise.
17198         (CFLAGS-tst-audit10.c): Likewise.
17199         (CFLAGS-tst-auditmod10a.c): Likewise.
17200         (CFLAGS-tst-auditmod10b.c): Likewise.
17201         * sysdeps/x86_64/configure.ac: Set config-cflags-avx512,
17202         HAVE_AVX512_SUPPORT and HAVE_AVX512_ASM_SUPPORT.
17203         * sysdeps/x86_64/configure: Regenerated.
17204         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Add
17205         AVX-512 zmm register support.
17206         (_dl_x86_64_save_sse): Likewise.
17207         (_dl_x86_64_restore_sse): Likewise.
17208         * sysdeps/x86_64/dl-trampoline.h: Updated to support different
17209         size vector registers.
17210         * sysdeps/x86_64/link-defines.sym (YMM_SIZE): New.
17211         (ZMM_SIZE): Likewise.
17212         * sysdeps/x86_64/tst-audit10.c: New file.
17213         * sysdeps/x86_64/tst-auditmod10a.c: Likewise.
17214         * sysdeps/x86_64/tst-auditmod10b.c: Likewise.
17216 2014-03-13  Roland McGrath  <roland@hack.frob.com>
17218         * configure.ac (HAVE_EHDR_START): New check.
17219         * configure: Regenerated.
17220         * config.h.in (HAVE_EHDR_START): New #undef.
17221         * elf/rtld.c (dl_main) [HAVE_EHDR_START]: Use __ehdr_start rather than
17222         assuming the lowest-addressed segment maps the start of the file.
17224 2014-03-13  Joseph Myers  <joseph@codesourcery.com>
17226         * INSTALL: Regenerated.
17228 2014-03-13  Will Newton  <will.newton@linaro.org>
17230         * manual/setjmp.texi (System V contexts): Improve
17231         clarity and grammar of documentation.
17233 2014-03-12  Paul Pluzhnikov  <ppluzhnikov@google.com>
17235         [BZ #16381]
17236         * elf/Makefile (tests): Add tst-pie2.
17237         (tests-pie): Add tst-pie2.
17238         * elf/tst-pie2.c: New file.
17239         * elf/dl-load.c (_dl_map_object_from_fd): Assert correct l_type
17240         for ET_EXEC.
17241         * elf/rtld.c (map_doit): Load executable as lt_executable.
17242         (dl_main): Likewise.
17244 2014-03-12  Joseph Myers  <joseph@codesourcery.com>
17246         [BZ #16642]
17247         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
17248         (__ASSUME_PSELECT): Undefine.
17250 2014-03-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17252         [BZ #16689]
17253         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S
17254         (__bzero_ppc): Call memset@local instead of __memset_ppc@local for
17255         static build.
17256         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: Build IFUNC
17257         selector for static builds.
17259 2014-03-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
17261         [BZ #16695]
17262         * nscd/netgroupcache.c (addgetnetgrentX): Factor in space for
17263         key in the buffer.
17265 2014-03-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17267         * sysdeps/powerpc/powerpc64/multiarch/strspn.c (strspn): Build
17268         IFUNC selector for static builds.
17270 2014-03-11  Joseph Myers  <joseph@codesourcery.com>
17272         * sysdeps/mips/math_private.h [__mips_hard_float]
17273         (libc_feresetround_ctx): Define to libc_feupdateenv_mips_ctx not
17274         libc_feresetround_mips_ctx.
17275         [__mips_hard_float] (libc_feresetroundf_ctx): Likewise.
17276         [__mips_hard_float] (libc_feresetroundl_ctx): Likewise.
17277         [__mips_hard_float] (libc_feresetround_mips_ctx): Remove.
17279         [BZ #16677]
17280         * math/s_nextafter.c (__nextafter): Do not return value from
17281         overflowing computation.
17282         * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Likewise.
17283         * sysdeps/ieee754/flt-32/s_nextafterf.c (__nextafterf): Likewise.
17284         * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl):
17285         Likewise.
17286         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl):
17287         Likewise.
17288         * sysdeps/m68k/m680x0/fpu/s_nextafterl.c (__nextafterl): Likewise.
17289         * math/libm-test.inc (nextafter_test): Use ALL_RM_TEST.
17291 2014-03-11  Roland McGrath  <roland@hack.frob.com>
17293         * sysdeps/arm/setjmp.S: Use sfi_breg on stores of mangled registers.
17294         * sysdeps/arm/__longjmp.S: Use sfi_breg on loads of mangled registers.
17295         Move sfi_sp use from the load-multiple (that no longer sets sp) to
17296         the new mov targetting sp.
17298 2014-03-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17300         [BZ #16683]
17301         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S (__bzero_ppc):
17302         Define it for static builds as well.
17303         (NO_BZERO_IMPL): Likewise.
17305 2014-03-11  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
17307         * sysdeps/powerpc/powerpc64/power7/strspn.S: New file: Optimization.
17308         * sysdeps/powerpc/powerpc64/multiarch/strspn.c: New file:
17309         multiarch strspn for PPC64.
17310         * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: New file
17311         * sysdeps/powerpc/powerpc64/multiarch/strspn-power7.S: New file
17312         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
17313         (__libc_ifunc_impl_list): Likewise.
17314         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strspn
17315         multiarch optimizations
17316         * string/strspn.c (strspn): Using macro to redefine symbol name.
17318 2014-03-10  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
17319             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17321         * sysdeps/powerpc/powerpc64/power7/strncat.S: New file: Optimization.
17322         * sysdeps/powerpc/powerpc64/multiarch/strncat.c: New file:
17323         multiarch strncat for PPC64.
17324         * sysdeps/powerpc/powerpc64/multiarch/strncat-ppc64.c: New file
17325         * sysdeps/powerpc/powerpc64/multiarch/strncat-power7.S: New file
17326         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
17327         (__libc_ifunc_impl_list): Likewise.
17328         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncat
17329         multiarch optimizations
17331 2014-03-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
17333         [BZ #16639]
17334         * nscd/nscd.service: Make service type forking.
17336 2014-03-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17338         * sysdeps/powerpc/power5+/fpu/s_modf.c (__modf): Fix to return correct
17339         sign in non default rounding modes.
17340         * sysdeps/powerpc/power5+/fpu/s_modff.c (__modff): Likewise.
17342 2014-03-08  Joseph Myers  <joseph@codesourcery.com>
17344         * math/libm-test.inc (ALL_RM_TEST): New macro.
17345         (ceil_test): Use ALL_RM_TEST.
17346         (cimag_test): Likewise.
17347         (conj_test): Likewise.
17348         (copysign_test): Likewise.
17349         (cproj_test): Likewise.
17350         (creal_test): Likewise.
17351         (fabs_test): Likewise.
17352         (floor_test): Likewise.
17353         (fmax_test): Likewise.
17354         (fmin_test): Likewise.
17355         (fmod_test): Likewise.
17356         (fpclassify_test): Likewise.
17357         (frexp_test): Likewise.
17358         (ilogb_test): Likewise.
17359         (isfinite_test): Likewise.
17360         (finite_test): Likewise.
17361         (isgreater_test): Likewise.
17362         (isgreaterequal_test): Likewise.
17363         (isinf_test): Likewise.
17364         (isless_test): Likewise.
17365         (islessequal_test): Likewise.
17366         (islessgreater_test): Likewise.
17367         (isnan_test): Likewise.
17368         (isnormal_test): Likewise.
17369         (issignaling_test): Likewise.
17370         (isunordered_test): Likewise.
17371         (logb_test): Likewise.
17372         (logb_downward_test_data): Remove.
17373         (logb_test_downward): Likewise.
17374         (lround_test): Use ALL_RM_TEST.
17375         (llround_test): Likewise.
17376         (modf_test): Likewise.
17377         (nexttoward_test): Likewise.
17378         (remainder_test): Likewise.
17379         (drem_test): Likewise.
17380         (remainder_tonearest_test_data): Likewise.
17381         (remainder_test_tonearest): Likewise.
17382         (drem_test_tonearest): Likewise.
17383         (remainder_towardzero_test_data): Likewise.
17384         (remainder_test_towardzero): Likewise.
17385         (drem_test_towardzero): Likewise.
17386         (remainder_downward_test_data): Likewise.
17387         (remainder_test_downward): Likewise.
17388         (drem_test_downward): Likewise.
17389         (remainder_upward_test_data): Likewise.
17390         (remainder_test_upward): Likewise.
17391         (drem_test_upward): Likewise.
17392         (remquo_test): Use ALL_RM_TEST.  Remove comment about x.
17393         (round_test): Use ALL_RM_TEST.
17394         (signbit_test): Likewise.
17395         (trunc_test): Likewise.
17396         (significand_test): Likewise.
17397         (main): Don't call removed functions.
17399 2014-03-07  Joseph Myers  <joseph@codesourcery.com>
17401         [BZ #16674]
17402         * bits/siginfo.h (ILL_ILLOPC): Condition on [__USE_XOPEN_EXTENDED
17403         || __USE_XOPEN2K8].
17404         (ILL_ILLOPN): Likewise.
17405         (ILL_ILLADR): Likewise.
17406         (ILL_ILLTRP): Likewise.
17407         (ILL_PRVOPC): Likewise.
17408         (ILL_PRVREG): Likewise.
17409         (ILL_COPROC): Likewise.
17410         (ILL_BADSTK): Likewise.
17411         (FPE_INTDIV): Likewise.
17412         (FPE_INTOVF): Likewise.
17413         (FPE_FLTDIV): Likewise.
17414         (FPE_FLTOVF): Likewise.
17415         (FPE_FLTUND): Likewise.
17416         (FPE_FLTRES): Likewise.
17417         (FPE_FLTINV): Likewise.
17418         (FPE_FLTSUB): Likewise.
17419         (SEGV_MAPERR): Likewise.
17420         (SEGV_ACCERR): Likewise.
17421         (BUS_ADRALN): Likewise.
17422         (BUS_ADRERR): Likewise.
17423         (BUS_OBJERR): Likewise.
17424         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
17425         (TRAP_TRACE): Likewise.
17426         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
17427         __USE_XOPEN2K8].
17428         (CLD_KILLED): Likewise.
17429         (CLD_DUMPED): Likewise.
17430         (CLD_TRAPPED): Likewise.
17431         (CLD_STOPPED): Likewise.
17432         (CLD_CONTINUED): Likewise.
17433         (POLL_IN): Likewise.
17434         (POLL_OUT): Likewise.
17435         (POLL_MSG): Likewise.
17436         (POLL_ERR): Likewise.
17437         (POLL_PRI): Likewise.
17438         (POLL_HUP): Likewise.
17439         * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h (ILL_ILLOPC):
17440         Likewise.
17441         (ILL_ILLOPN): Likewise.
17442         (ILL_ILLADR): Likewise.
17443         (ILL_ILLTRP): Likewise.
17444         (ILL_PRVOPC): Likewise.
17445         (ILL_PRVREG): Likewise.
17446         (ILL_COPROC): Likewise.
17447         (ILL_BADSTK): Likewise.
17448         (FPE_INTDIV): Likewise.
17449         (FPE_INTOVF): Likewise.
17450         (FPE_FLTDIV): Likewise.
17451         (FPE_FLTOVF): Likewise.
17452         (FPE_FLTUND): Likewise.
17453         (FPE_FLTRES): Likewise.
17454         (FPE_FLTINV): Likewise.
17455         (FPE_FLTSUB): Likewise.
17456         (SEGV_MAPERR): Likewise.
17457         (SEGV_ACCERR): Likewise.
17458         (BUS_ADRALN): Likewise.
17459         (BUS_ADRERR): Likewise.
17460         (BUS_OBJERR): Likewise.
17461         (BUS_MCEERR_AR): Likewise.
17462         (BUS_MCEERR_AO): Likewise.
17463         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
17464         (TRAP_TRACE): Likewise.
17465         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
17466         __USE_XOPEN2K8].
17467         (CLD_KILLED): Likewise.
17468         (CLD_DUMPED): Likewise.
17469         (CLD_TRAPPED): Likewise.
17470         (CLD_STOPPED): Likewise.
17471         (CLD_CONTINUED): Likewise.
17472         (POLL_IN): Likewise.
17473         (POLL_OUT): Likewise.
17474         (POLL_MSG): Likewise.
17475         (POLL_ERR): Likewise.
17476         (POLL_PRI): Likewise.
17477         (POLL_HUP): Likewise.
17478         * sysdeps/unix/sysv/linux/bits/siginfo.h (ILL_ILLOPC): Likewise.
17479         (ILL_ILLOPN): Likewise.
17480         (ILL_ILLADR): Likewise.
17481         (ILL_ILLTRP): Likewise.
17482         (ILL_PRVOPC): Likewise.
17483         (ILL_PRVREG): Likewise.
17484         (ILL_COPROC): Likewise.
17485         (ILL_BADSTK): Likewise.
17486         (FPE_INTDIV): Likewise.
17487         (FPE_INTOVF): Likewise.
17488         (FPE_FLTDIV): Likewise.
17489         (FPE_FLTOVF): Likewise.
17490         (FPE_FLTUND): Likewise.
17491         (FPE_FLTRES): Likewise.
17492         (FPE_FLTINV): Likewise.
17493         (FPE_FLTSUB): Likewise.
17494         (SEGV_MAPERR): Likewise.
17495         (SEGV_ACCERR): Likewise.
17496         (BUS_ADRALN): Likewise.
17497         (BUS_ADRERR): Likewise.
17498         (BUS_OBJERR): Likewise.
17499         (BUS_MCEERR_AR): Likewise.
17500         (BUS_MCEERR_AO): Likewise.
17501         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
17502         (TRAP_TRACE): Likewise.
17503         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
17504         __USE_XOPEN2K8].
17505         (CLD_KILLED): Likewise.
17506         (CLD_DUMPED): Likewise.
17507         (CLD_TRAPPED): Likewise.
17508         (CLD_STOPPED): Likewise.
17509         (CLD_CONTINUED): Likewise.
17510         (POLL_IN): Likewise.
17511         (POLL_OUT): Likewise.
17512         (POLL_MSG): Likewise.
17513         (POLL_ERR): Likewise.
17514         (POLL_PRI): Likewise.
17515         (POLL_HUP): Likewise.
17516         * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h (ILL_ILLOPC):
17517         Likewise.
17518         (ILL_ILLOPN): Likewise.
17519         (ILL_ILLADR): Likewise.
17520         (ILL_ILLTRP): Likewise.
17521         (ILL_PRVOPC): Likewise.
17522         (ILL_PRVREG): Likewise.
17523         (ILL_COPROC): Likewise.
17524         (ILL_BADSTK): Likewise.
17525         (ILL_BADIADDR): Likewise.
17526         (ILL_BREAK): Likewise.
17527         (FPE_INTDIV): Likewise.
17528         (FPE_INTOVF): Likewise.
17529         (FPE_FLTDIV): Likewise.
17530         (FPE_FLTOVF): Likewise.
17531         (FPE_FLTUND): Likewise.
17532         (FPE_FLTRES): Likewise.
17533         (FPE_FLTINV): Likewise.
17534         (FPE_FLTSUB): Likewise.
17535         (FPE_DECOVF): Likewise.
17536         (FPE_DECDIV): Likewise.
17537         (FPE_DECERR): Likewise.
17538         (FPE_INVASC): Likewise.
17539         (FPE_INVDEC): Likewise.
17540         (SEGV_MAPERR): Likewise.
17541         (SEGV_ACCERR): Likewise.
17542         (SEGV_PSTKOVF): Likewise.
17543         (BUS_ADRALN): Likewise.
17544         (BUS_ADRERR): Likewise.
17545         (BUS_OBJERR): Likewise.
17546         (BUS_MCEERR_AR): Likewise.
17547         (BUS_MCEERR_AO): Likewise.
17548         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
17549         (TRAP_TRACE): Likewise.
17550         (TRAP_BRANCH): Likewise.
17551         (TRAP_HWBKPT): Likewise.
17552         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
17553         __USE_XOPEN2K8].
17554         (CLD_KILLED): Likewise.
17555         (CLD_DUMPED): Likewise.
17556         (CLD_TRAPPED): Likewise.
17557         (CLD_STOPPED): Likewise.
17558         (CLD_CONTINUED): Likewise.
17559         (POLL_IN): Likewise.
17560         (POLL_OUT): Likewise.
17561         (POLL_MSG): Likewise.
17562         (POLL_ERR): Likewise.
17563         (POLL_PRI): Likewise.
17564         (POLL_HUP): Likewise.
17565         * sysdeps/unix/sysv/linux/mips/bits/siginfo.h (ILL_ILLOPC): Likewise.
17566         (ILL_ILLOPN): Likewise.
17567         (ILL_ILLADR): Likewise.
17568         (ILL_ILLTRP): Likewise.
17569         (ILL_PRVOPC): Likewise.
17570         (ILL_PRVREG): Likewise.
17571         (ILL_COPROC): Likewise.
17572         (ILL_BADSTK): Likewise.
17573         (FPE_INTDIV): Likewise.
17574         (FPE_INTOVF): Likewise.
17575         (FPE_FLTDIV): Likewise.
17576         (FPE_FLTOVF): Likewise.
17577         (FPE_FLTUND): Likewise.
17578         (FPE_FLTRES): Likewise.
17579         (FPE_FLTINV): Likewise.
17580         (FPE_FLTSUB): Likewise.
17581         (SEGV_MAPERR): Likewise.
17582         (SEGV_ACCERR): Likewise.
17583         (BUS_ADRALN): Likewise.
17584         (BUS_ADRERR): Likewise.
17585         (BUS_OBJERR): Likewise.
17586         (BUS_MCEERR_AR): Likewise.
17587         (BUS_MCEERR_AO): Likewise.
17588         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
17589         (TRAP_TRACE): Likewise.
17590         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
17591         __USE_XOPEN2K8].
17592         (CLD_KILLED): Likewise.
17593         (CLD_DUMPED): Likewise.
17594         (CLD_TRAPPED): Likewise.
17595         (CLD_STOPPED): Likewise.
17596         (CLD_CONTINUED): Likewise.
17597         (POLL_IN): Likewise.
17598         (POLL_OUT): Likewise.
17599         (POLL_MSG): Likewise.
17600         (POLL_ERR): Likewise.
17601         (POLL_PRI): Likewise.
17602         (POLL_HUP): Likewise.
17603         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (ILL_ILLOPC): Likewise.
17604         (ILL_ILLOPN): Likewise.
17605         (ILL_ILLADR): Likewise.
17606         (ILL_ILLTRP): Likewise.
17607         (ILL_PRVOPC): Likewise.
17608         (ILL_PRVREG): Likewise.
17609         (ILL_COPROC): Likewise.
17610         (ILL_BADSTK): Likewise.
17611         (FPE_INTDIV): Likewise.
17612         (FPE_INTOVF): Likewise.
17613         (FPE_FLTDIV): Likewise.
17614         (FPE_FLTOVF): Likewise.
17615         (FPE_FLTUND): Likewise.
17616         (FPE_FLTRES): Likewise.
17617         (FPE_FLTINV): Likewise.
17618         (FPE_FLTSUB): Likewise.
17619         (SEGV_MAPERR): Likewise.
17620         (SEGV_ACCERR): Likewise.
17621         (BUS_ADRALN): Likewise.
17622         (BUS_ADRERR): Likewise.
17623         (BUS_OBJERR): Likewise.
17624         (BUS_MCEERR_AR): Likewise.
17625         (BUS_MCEERR_AO): Likewise.
17626         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
17627         (TRAP_TRACE): Likewise.
17628         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
17629         __USE_XOPEN2K8].
17630         (CLD_KILLED): Likewise.
17631         (CLD_DUMPED): Likewise.
17632         (CLD_TRAPPED): Likewise.
17633         (CLD_STOPPED): Likewise.
17634         (CLD_CONTINUED): Likewise.
17635         (POLL_IN): Likewise.
17636         (POLL_OUT): Likewise.
17637         (POLL_MSG): Likewise.
17638         (POLL_ERR): Likewise.
17639         (POLL_PRI): Likewise.
17640         (POLL_HUP): Likewise.
17641         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (ILL_ILLOPC): Likewise.
17642         (ILL_ILLOPN): Likewise.
17643         (ILL_ILLADR): Likewise.
17644         (ILL_ILLTRP): Likewise.
17645         (ILL_PRVOPC): Likewise.
17646         (ILL_PRVREG): Likewise.
17647         (ILL_COPROC): Likewise.
17648         (ILL_BADSTK): Likewise.
17649         (FPE_INTDIV): Likewise.
17650         (FPE_INTOVF): Likewise.
17651         (FPE_FLTDIV): Likewise.
17652         (FPE_FLTOVF): Likewise.
17653         (FPE_FLTUND): Likewise.
17654         (FPE_FLTRES): Likewise.
17655         (FPE_FLTINV): Likewise.
17656         (FPE_FLTSUB): Likewise.
17657         (SEGV_MAPERR): Likewise.
17658         (SEGV_ACCERR): Likewise.
17659         (BUS_ADRALN): Likewise.
17660         (BUS_ADRERR): Likewise.
17661         (BUS_OBJERR): Likewise.
17662         (BUS_MCEERR_AR): Likewise.
17663         (BUS_MCEERR_AO): Likewise.
17664         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
17665         (TRAP_TRACE): Likewise.
17666         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
17667         __USE_XOPEN2K8].
17668         (CLD_KILLED): Likewise.
17669         (CLD_DUMPED): Likewise.
17670         (CLD_TRAPPED): Likewise.
17671         (CLD_STOPPED): Likewise.
17672         (CLD_CONTINUED): Likewise.
17673         (POLL_IN): Likewise.
17674         (POLL_OUT): Likewise.
17675         (POLL_MSG): Likewise.
17676         (POLL_ERR): Likewise.
17677         (POLL_PRI): Likewise.
17678         (POLL_HUP): Likewise.
17679         * sysdeps/unix/sysv/linux/tile/bits/siginfo.h (ILL_ILLOPC): Likewise.
17680         (ILL_ILLOPN): Likewise.
17681         (ILL_ILLADR): Likewise.
17682         (ILL_ILLTRP): Likewise.
17683         (ILL_PRVOPC): Likewise.
17684         (ILL_PRVREG): Likewise.
17685         (ILL_COPROC): Likewise.
17686         (ILL_BADSTK): Likewise.
17687         (ILL_DBLFLT): Likewise.
17688         (ILL_HARDWALL): Likewise.
17689         (FPE_INTDIV): Likewise.
17690         (FPE_INTOVF): Likewise.
17691         (FPE_FLTDIV): Likewise.
17692         (FPE_FLTOVF): Likewise.
17693         (FPE_FLTUND): Likewise.
17694         (FPE_FLTRES): Likewise.
17695         (FPE_FLTINV): Likewise.
17696         (FPE_FLTSUB): Likewise.
17697         (SEGV_MAPERR): Likewise.
17698         (SEGV_ACCERR): Likewise.
17699         (BUS_ADRALN): Likewise.
17700         (BUS_ADRERR): Likewise.
17701         (BUS_OBJERR): Likewise.
17702         (BUS_MCEERR_AR): Likewise.
17703         (BUS_MCEERR_AO): Likewise.
17704         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
17705         (TRAP_TRACE): Likewise.
17706         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
17707         __USE_XOPEN2K8].
17708         (CLD_KILLED): Likewise.
17709         (CLD_DUMPED): Likewise.
17710         (CLD_TRAPPED): Likewise.
17711         (CLD_STOPPED): Likewise.
17712         (CLD_CONTINUED): Likewise.
17713         (POLL_IN): Likewise.
17714         (POLL_OUT): Likewise.
17715         (POLL_MSG): Likewise.
17716         (POLL_ERR): Likewise.
17717         (POLL_PRI): Likewise.
17718         (POLL_HUP): Likewise.
17719         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h (ILL_ILLOPC): Likewise.
17720         (ILL_ILLOPN): Likewise.
17721         (ILL_ILLADR): Likewise.
17722         (ILL_ILLTRP): Likewise.
17723         (ILL_PRVOPC): Likewise.
17724         (ILL_PRVREG): Likewise.
17725         (ILL_COPROC): Likewise.
17726         (ILL_BADSTK): Likewise.
17727         (FPE_INTDIV): Likewise.
17728         (FPE_INTOVF): Likewise.
17729         (FPE_FLTDIV): Likewise.
17730         (FPE_FLTOVF): Likewise.
17731         (FPE_FLTUND): Likewise.
17732         (FPE_FLTRES): Likewise.
17733         (FPE_FLTINV): Likewise.
17734         (FPE_FLTSUB): Likewise.
17735         (SEGV_MAPERR): Likewise.
17736         (SEGV_ACCERR): Likewise.
17737         (BUS_ADRALN): Likewise.
17738         (BUS_ADRERR): Likewise.
17739         (BUS_OBJERR): Likewise.
17740         (BUS_MCEERR_AR): Likewise.
17741         (BUS_MCEERR_AO): Likewise.
17742         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
17743         (TRAP_TRACE): Likewise.
17744         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
17745         __USE_XOPEN2K8].
17746         (CLD_KILLED): Likewise.
17747         (CLD_DUMPED): Likewise.
17748         (CLD_TRAPPED): Likewise.
17749         (CLD_STOPPED): Likewise.
17750         (CLD_CONTINUED): Likewise.
17751         (POLL_IN): Likewise.
17752         (POLL_OUT): Likewise.
17753         (POLL_MSG): Likewise.
17754         (POLL_ERR): Likewise.
17755         (POLL_PRI): Likewise.
17756         (POLL_HUP): Likewise.
17757         * conform/Makefile (test-xfail-POSIX/signal.h/conform): Remove.
17758         (test-xfail-POSIX/sys/wait.h/conform): Likewise.
17760         [BZ #16670]
17761         * posix/sched.h [!__USE_XOPEN2K] (__need_time_t): Don't define
17762         before #include of <time.h>.
17763         [!__USE_XOPEN2K] (__need_timespec): Likewise.
17764         * conform/Makefile (test-xfail-POSIX/sched.h/conform): Remove.
17765         (test-xfail-UNIX98/sched.h/conform): Likewise.
17767 2014-03-07  Marcus Shawcroft  <marcus.shawcroft@arm.com>
17769         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept): Detect and
17770         error absence of trapping exception support.
17771         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Likewise.
17773 2014-03-07  Joseph Myers  <joseph@codesourcery.com>
17775         * catgets/Makefile (tests-special): Add $(objpfx)sample.SJIS.cat.
17776         ($(objpfx)sample.SJIS.cat): Use $(evaluate-test).
17777         * timezone/Makefile (testdata): Move definition above include of
17778         Rules.
17779         (test-zones): New variable.
17780         (tests-special): Add zone files.
17781         (build-testdata): Use $(evaluate-test).
17783         * elf/Makefile (tests-special): Rename tests to end with .out.
17784         ($(objpfx)noload-mem): Likewise.
17785         ($(objpfx)tst-leaks1-mem): Likewise.
17786         ($(objpfx)tst-leaks1-static-mem.out): Likewise.
17787         * iconv/Makefile (xtests-special): Change test-iconvconfig to
17788         $(objpfx)test-iconvconfig.out.
17789         (test-iconvconfig): Change to $(objpfx)test-iconvconfig.out.  Use
17790         set -e inside subshell and redirect output to file.
17791         * iconvdata/Makefile (generated): Rename tests to end with .out.
17792         Correct type.
17793         (tests-special): Rename tests to end with .out.
17794         ($(objpfx)mtrace-tst-loading): Likewise.
17795         * intl/Makefile (generated): Likewise.
17796         (tests-special): Likewise.
17797         ($(objpfx)mtrace-tst-gettext): Likewise.
17798         * misc/Makefile (generated): Likewise.
17799         (tests-special): Likewise.
17800         ($(objpfx)tst-error1-mem): Likewise.
17801         * nptl/Makefile (tests-special): Likewise.
17802         ($(objpfx)tst-stack3-mem): Likewise.
17803         (generated): Likewise.
17804         * posix/Makefile (generated): Likewise.
17805         (tests-special): Likewise.
17806         (xtests-special): Likewise.
17807         ($(objpfx)tst-fnmatch-mem): Likewise.
17808         ($(objpfx)bug-regex2-mem): Likewise.
17809         ($(objpfx)bug-regex14-mem): Likewise.
17810         ($(objpfx)bug-regex21-mem): Likewise.
17811         ($(objpfx)bug-regex31-mem): Likewise.
17812         ($(objpfx)tst-vfork3-mem): Likewise.
17813         ($(objpfx)tst-rxspencer-no-utf8-mem): Likewise.
17814         ($(objpfx)tst-pcre-mem): Likewise.
17815         ($(objpfx)tst-boost-mem): Likewise.
17816         ($(objpfx)bug-ga2-mem): Likewise.
17817         ($(objpfx)bug-glob2-mem): Likewise.
17818         * resolv/Makefile (generate): Likewise.
17819         (tests-special): Likewise.
17820         (xtests-special): Likewise.
17821         (generated): Likewise.
17822         ($(objpfx)mtrace-tst-leaks): Likewise.
17823         ($(objpfx)mtrace-tst-leaks2): Likewise.
17825         * scripts/merge-test-results.sh: New file.
17826         * Makefile (tests-special-notdir): New variable.
17827         (tests): Run merge-test-results.sh.
17828         (xtests): Likewise.
17829         * Rules (tests-special-notdir): New variable.
17830         (xtests-special-notdir): Likewise.
17831         (tests): Run merge-test-results.sh
17832         (xtests): Likewise.
17834         * Makeconfig (test-xfail-name): New variable.
17835         (evaluate-test): Use $(test-xfail-name) instead of $(@F:.out=) to
17836         compute variable name for expected failures.
17837         * conform/Makefile (conformtest-headers-data): New variable.
17838         (conformtest-standards): Likewise.
17839         (conformtest-headers-ISO): Likewise.
17840         (conformtest-headers-ISO99): Likewise.
17841         (conformtest-headers-ISO11): Likewise.
17842         (conformtest-headers-POSIX): Likewise.
17843         (conformtest-headers-XPG3): Likewise.
17844         (conformtest-headers-XPG4): Likewise.
17845         (conformtest-headers-UNIX98): Likewise.
17846         (conformtest-headers-XOPEN2K): Likewise.
17847         (conformtest-headers-POSIX2008): Likewise.
17848         (conformtest-headers-XOPEN2K8): Likewise.
17849         (conformtest-header-list-base): Likewise.
17850         (conformtest-header-list-tests): Likewise.
17851         (conformtest-header-base): Likewise.
17852         (conformtest-header-tests): Likewise.
17853         (tests-special): Add $(conformtest-header-list-tests).  If
17854         [$(fast-check) && !$(cross-compiling)], add
17855         $(conformtest-header-tests) instead of
17856         $(objpfx)run-conformtest.out.
17857         (generated): Add $(conformtest-header-list-base).  If
17858         [$(fast-check) && !$(cross-compiling)], add
17859         $(conformtest-header-base).  Remove previous setting.
17860         ($(conformtest-header-list-tests)): New target.
17861         (test-xfail-run-conformtest): Remove variable.
17862         ($(objpfx)run-conformtest.out): Remove target.
17863         (test-xfail-ISO11/complex.h/conform): New variable.
17864         (test-xfail-ISO11/stdalign.h/conform): Likewise.
17865         (test-xfail-ISO11/stdnoreturn.h/conform): Likewise.
17866         (test-xfail-XPG3/varargs.h/conform): Likewise.
17867         (test-xfail-XPG4/varargs.h/conform): Likewise.
17868         (test-xfail-UNIX98/varargs.h/conform): Likewise.
17869         (test-xfail-XPG4/ndbm.h/conform): Likewise.
17870         (test-xfail-UNIX98/ndbm.h/conform): Likewise.
17871         (test-xfail-XOPEN2K/ndbm.h/conform): Likewise.
17872         (test-xfail-XOPEN2K8/ndbm.h/conform): Likewise.
17873         (test-xfail-XPG3/fcntl.h/conform): Likewise.
17874         (test-xfail-XPG3/ftw.h/conform): Likewise.
17875         (test-xfail-XPG3/grp.h/conform): Likewise.
17876         (test-xfail-XPG3/langinfo.h/conform): Likewise.
17877         (test-xfail-XPG3/limits.h/conform): Likewise.
17878         (test-xfail-XPG3/pwd.h/conform): Likewise.
17879         (test-xfail-XPG3/search.h/conform): Likewise.
17880         (test-xfail-XPG3/signal.h/conform): Likewise.
17881         (test-xfail-XPG3/stdio.h/conform): Likewise.
17882         (test-xfail-XPG3/stdlib.h/conform): Likewise.
17883         (test-xfail-XPG3/string.h/conform): Likewise.
17884         (test-xfail-XPG3/sys/ipc.h/conform): Likewise.
17885         (test-xfail-XPG3/sys/msg.h/conform): Likewise.
17886         (test-xfail-XPG3/sys/sem.h/conform): Likewise.
17887         (test-xfail-XPG3/sys/shm.h/conform): Likewise.
17888         (test-xfail-XPG3/sys/stat.h/conform): Likewise.
17889         (test-xfail-XPG3/sys/types.h/conform): Likewise.
17890         (test-xfail-XPG3/sys/wait.h/conform): Likewise.
17891         (test-xfail-XPG3/termios.h/conform): Likewise.
17892         (test-xfail-XPG3/time.h/conform): Likewise.
17893         (test-xfail-XPG3/unistd.h/conform): Likewise.
17894         (test-xfail-XPG4/arpa/inet.h/conform): Likewise.
17895         (test-xfail-XPG4/fcntl.h/conform): Likewise.
17896         (test-xfail-XPG4/langinfo.h/conform): Likewise.
17897         (test-xfail-XPG4/netdb.h/conform): Likewise.
17898         (test-xfail-XPG4/netinet/in.h/conform): Likewise.
17899         (test-xfail-XPG4/signal.h/conform): Likewise.
17900         (test-xfail-XPG4/stdio.h/conform): Likewise.
17901         (test-xfail-XPG4/stdlib.h/conform): Likewise.
17902         (test-xfail-XPG4/stropts.h/conform): Likewise.
17903         (test-xfail-XPG4/sys/ipc.h/conform): Likewise.
17904         (test-xfail-XPG4/sys/msg.h/conform): Likewise.
17905         (test-xfail-XPG4/sys/sem.h/conform): Likewise.
17906         (test-xfail-XPG4/sys/shm.h/conform): Likewise.
17907         (test-xfail-XPG4/sys/socket.h/conform): Likewise.
17908         (test-xfail-XPG4/sys/stat.h/conform): Likewise.
17909         (test-xfail-XPG4/sys/time.h/conform): Likewise.
17910         (test-xfail-XPG4/sys/types.h/conform): Likewise.
17911         (test-xfail-XPG4/sys/wait.h/conform): Likewise.
17912         (test-xfail-XPG4/termios.h/conform): Likewise.
17913         (test-xfail-XPG4/ucontext.h/conform): Likewise.
17914         (test-xfail-XPG4/unistd.h/conform): Likewise.
17915         (test-xfail-XPG4/utmpx.h/conform): Likewise.
17916         (test-xfail-POSIX/sched.h/conform): Likewise.
17917         (test-xfail-POSIX/signal.h/conform): Likewise.
17918         (test-xfail-POSIX/sys/wait.h/conform): Likewise.
17919         (test-xfail-POSIX/tar.h/conform): Likewise.
17920         (test-xfail-UNIX98/arpa/inet.h/conform): Likewise.
17921         (test-xfail-UNIX98/fcntl.h/conform): Likewise.
17922         (test-xfail-UNIX98/langinfo.h/conform): Likewise.
17923         (test-xfail-UNIX98/netdb.h/conform): Likewise.
17924         (test-xfail-UNIX98/netinet/in.h/conform): Likewise.
17925         (test-xfail-UNIX98/sched.h/conform): Likewise.
17926         (test-xfail-UNIX98/signal.h/conform): Likewise.
17927         (test-xfail-UNIX98/stdio.h/conform): Likewise.
17928         (test-xfail-UNIX98/stdlib.h/conform): Likewise.
17929         (test-xfail-UNIX98/stropts.h/conform): Likewise.
17930         (test-xfail-UNIX98/sys/ipc.h/conform): Likewise.
17931         (test-xfail-UNIX98/sys/msg.h/conform): Likewise.
17932         (test-xfail-UNIX98/sys/sem.h/conform): Likewise.
17933         (test-xfail-UNIX98/sys/shm.h/conform): Likewise.
17934         (test-xfail-UNIX98/sys/socket.h/conform): Likewise.
17935         (test-xfail-UNIX98/sys/time.h/conform): Likewise.
17936         (test-xfail-UNIX98/sys/wait.h/conform): Likewise.
17937         (test-xfail-UNIX98/ucontext.h/conform): Likewise.
17938         (test-xfail-UNIX98/unistd.h/conform): Likewise.
17939         (test-xfail-UNIX98/utmpx.h/conform): Likewise.
17940         (test-xfail-XOPEN2K/aio.h/conform): Likewise.
17941         (test-xfail-XOPEN2K/arpa/inet.h/conform): Likewise.
17942         (test-xfail-XOPEN2K/fcntl.h/conform): Likewise.
17943         (test-xfail-XOPEN2K/langinfo.h/conform): Likewise.
17944         (test-xfail-XOPEN2K/math.h/conform): Likewise.
17945         (test-xfail-XOPEN2K/mqueue.h/conform): Likewise.
17946         (test-xfail-XOPEN2K/netdb.h/conform): Likewise.
17947         (test-xfail-XOPEN2K/netinet/in.h/conform): Likewise.
17948         (test-xfail-XOPEN2K/semaphore.h/conform): Likewise.
17949         (test-xfail-XOPEN2K/signal.h/conform): Likewise.
17950         (test-xfail-XOPEN2K/stdarg.h/conform): Likewise.
17951         (test-xfail-XOPEN2K/stdio.h/conform): Likewise.
17952         (test-xfail-XOPEN2K/stropts.h/conform): Likewise.
17953         (test-xfail-XOPEN2K/sys/ipc.h/conform): Likewise.
17954         (test-xfail-XOPEN2K/sys/msg.h/conform): Likewise.
17955         (test-xfail-XOPEN2K/sys/sem.h/conform): Likewise.
17956         (test-xfail-XOPEN2K/sys/shm.h/conform): Likewise.
17957         (test-xfail-XOPEN2K/sys/socket.h/conform): Likewise.
17958         (test-xfail-XOPEN2K/sys/wait.h/conform): Likewise.
17959         (test-xfail-XOPEN2K/termios.h/conform): Likewise.
17960         (test-xfail-XOPEN2K/tgmath.h/conform): Likewise.
17961         (test-xfail-XOPEN2K/ucontext.h/conform): Likewise.
17962         (test-xfail-XOPEN2K/utmpx.h/conform): Likewise.
17963         (test-xfail-POSIX2008/arpa/inet.h/conform): Likewise.
17964         (test-xfail-POSIX2008/fcntl.h/conform): Likewise.
17965         (test-xfail-POSIX2008/netdb.h/conform): Likewise.
17966         (test-xfail-POSIX2008/netinet/in.h/conform): Likewise.
17967         (test-xfail-POSIX2008/signal.h/conform): Likewise.
17968         (test-xfail-POSIX2008/stropts.h/conform): Likewise.
17969         (test-xfail-POSIX2008/sys/socket.h/conform): Likewise.
17970         (test-xfail-POSIX2008/sys/wait.h/conform): Likewise.
17971         (test-xfail-XOPEN2K8/arpa/inet.h/conform): Likewise.
17972         (test-xfail-XOPEN2K8/fcntl.h/conform): Likewise.
17973         (test-xfail-XOPEN2K8/limits.h/conform): Likewise.
17974         (test-xfail-XOPEN2K8/math.h/conform): Likewise.
17975         (test-xfail-XOPEN2K8/netdb.h/conform): Likewise.
17976         (test-xfail-XOPEN2K8/netinet/in.h/conform): Likewise.
17977         (test-xfail-XOPEN2K8/signal.h/conform): Likewise.
17978         (test-xfail-XOPEN2K8/stdio.h/conform): Likewise.
17979         (test-xfail-XOPEN2K8/stropts.h/conform): Likewise.
17980         (test-xfail-XOPEN2K8/sys/ipc.h/conform): Likewise.
17981         (test-xfail-XOPEN2K8/sys/msg.h/conform): Likewise.
17982         (test-xfail-XOPEN2K8/sys/select.h/conform): Likewise.
17983         (test-xfail-XOPEN2K8/sys/sem.h/conform): Likewise.
17984         (test-xfail-XOPEN2K8/sys/shm.h/conform): Likewise.
17985         (test-xfail-XOPEN2K8/sys/socket.h/conform): Likewise.
17986         (test-xfail-XOPEN2K8/sys/time.h/conform): Likewise.
17987         (test-xfail-XOPEN2K8/sys/wait.h/conform): Likewise.
17988         (test-xfail-XOPEN2K8/termios.h/conform): Likewise.
17989         (test-xfail-XOPEN2K8/tgmath.h/conform): Likewise.
17990         (test-xfail-XOPEN2K8/utmpx.h/conform): Likewise.
17991         (conformtest-cc-flags): Likewise.
17992         ($(conformtest-header-tests): New target.
17993         * conform/check-header-lists.sh: New file.
17994         * conform/run-conformtest.sh: Remove.
17996         * conform/conformtest.pl: Allow ' and \ in values given for
17997         constants.
17998         * conform/data/semaphore.h-data [POSIX] (fcntl.h): Allow header
17999         inclusion.
18000         [POSIX] (sys/types.h): Likewise.
18001         [POSIX2008 || XOPEN2K8] (sys/types.h): Don't allow header
18002         inclusion.
18003         [POSIX || UNIX98 || XOPEN2K] (time.h): Don't allow header
18004         inclusion.
18005         * conform/data/signal.h-data (SIGIO): Remove expectation.
18006         [XPG3] (SIGBUS): Do not expect.
18007         [POSIX || XPG3] (SIGPOLL): Likewise.
18008         [POSIX || XPG3] (SIGPROF): Likewise.
18009         [POSIX || XPG3] (SIGSYS): Likewise.
18010         [XPG3] (SIGTRAP): Likewise.
18011         [POSIX || XPG3] (SIGURG): Likewise.
18012         [POSIX || XPG3] (SIGVTALRM): Likewise.
18013         [POSIX || XPG3] (SIGXCPU): Likewise.
18014         [POSIX || XPG3] (SIGXFSZ): Likewise.
18015         [POSIX] (SA_SIGINFO): Expect.
18016         [XPG3] (siginfo_t): Do not expect type or contents.
18017         [POSIX] (si_pid): Do not expect element.
18018         [POSIX] (si_uid): Likewise.
18019         [POSIX] (si_addr): Likewise.
18020         [POSIX] (si_status): Likewise.
18021         [POSIX] (si_band): Likewise.
18022         [XPG4] (si_value): Likewise.
18023         [POSIX || XPG3] (ILL_ILLOPC): Do not expect.
18024         [POSIX || XPG3] (ILL_ILLOPN): Likewise.
18025         [POSIX || XPG3] (ILL_ILLADR): Likewise.
18026         [POSIX || XPG3] (ILL_ILLTRP): Likewise.
18027         [POSIX || XPG3] (ILL_PRVOPC): Likewise.
18028         [POSIX || XPG3] (ILL_PRVREG): Likewise.
18029         [POSIX || XPG3] (ILL_COPROC): Likewise.
18030         [POSIX || XPG3] (ILL_BADSTK): Likewise.
18031         [POSIX || XPG3] (FPE_INTDIV): Likewise.
18032         [POSIX || XPG3] (FPE_INTOVF): Likewise.
18033         [POSIX || XPG3] (FPE_FLTDIV): Likewise.
18034         [POSIX || XPG3] (FPE_FLTOVF): Likewise.
18035         [POSIX || XPG3] (FPE_FLTUND): Likewise.
18036         [POSIX || XPG3] (FPE_FLTRES): Likewise.
18037         [POSIX || XPG3] (FPE_FLTINV): Likewise.
18038         [POSIX || XPG3] (FPE_FLTSUB): Likewise.
18039         [POSIX || XPG3] (SEGV_MAPERR): Likewise.
18040         [POSIX || XPG3] (SEGV_ACCERR): Likewise.
18041         [POSIX || XPG3] (BUS_ADRALN): Likewise.
18042         [POSIX || XPG3] (BUS_ADRERR): Likewise.
18043         [POSIX || XPG3] (BUS_OBJERR): Likewise.
18044         [POSIX || XPG3] (CLD_EXITED): Likewise.
18045         [POSIX || XPG3] (CLD_KILLED): Likewise.
18046         [POSIX || XPG3] (CLD_DUMPED): Likewise.
18047         [POSIX || XPG3] (CLD_TRAPPED): Likewise.
18048         [POSIX || XPG3] (CLD_STOPPED): Likewise.
18049         [POSIX || XPG3] (CLD_CONTINUED): Likewise.
18050         [POSIX || XPG3] (POLL_IN): Likewise.
18051         [POSIX || XPG3] (POLL_OUT): Likewise.
18052         [POSIX || XPG3] (POLL_MSG): Likewise.
18053         [POSIX || XPG3] (POLL_ERR): Likewise.
18054         [POSIX || XPG3] (POLL_PRI): Likewise.
18055         [POSIX || XPG3] (POLL_HUP): Likewise.
18056         [POSIX || XPG3 || POSIX2008] (TRAP_BRKPT): Likewise.
18057         [POSIX || XPG3 || POSIX2008] (TRAP_TRACE): Likewise.
18058         (SIG*): Do not allow.
18059         [XPG3] (si_*): Likewise.
18060         [XPG3] (SI_*): Likewise.
18061         [XPG3 || XPG4] (sigev_*): Likewise.
18062         [XPG3 || XPG4] (SIGEV_*): Likewise.
18063         [XPG3 || XPG4] (sival_*): Likewise.
18064         [POSIX || XPG3 || XPG4] (uc_*): Likewise.
18065         [POSIX || XPG3] (BUS_*): Likewise.
18066         [POSIX || XPG3] (CLD_*): Likewise.
18067         [POSIX || XPG3] (FPE_*): Likewise.
18068         [POSIX || XPG3] (ILL_*): Likewise.
18069         [POSIX || XPG3] (POLL_*): Likewise.
18070         [POSIX || XPG3] (SEGV_*): Likewise.
18071         [POSIX || XPG3 || POSIX2008] (SS_*): Likewise.
18072         [POSIX || XPG3 || POSIX2008] (SV_*): Likewise.
18073         [POSIX || XPG3 || POSIX2008] (TRAP_*): Likewise.
18074         [POSIX || XPG3 || POSIX2008] (ss_*): Likewise.
18075         [POSIX || XPG3 || POSIX2008] (sv_*): Likewise.
18076         * conform/data/tar.h-data (TMAGLEN): Use macro-int-constant.
18077         Specify type and value.
18078         (TVERSLEN): Likewise.
18079         (REGTYPE): Likewise.
18080         (AREGTYPE): Likewise.
18081         (LNKTYPE): Likewise.
18082         (SYMTYPE): Likewise.
18083         (CHRTYPE): Likewise.
18084         (BLKTYPE): Likewise.
18085         (DIRTYPE): Likewise.
18086         (FIFOTYPE): Likewise.
18087         (CONTTYPE): Likewise.
18088         (TSUID): Likewise.
18089         (TSGID): Likewise.
18090         (TSVTX): Likewise.
18091         (TUREAD): Likewise.
18092         (TUWRITE): Likewise.
18093         (TUEXEC): Likewise.
18094         (TGREAD): Likewise.
18095         (TGWRITE): Likewise.
18096         (TGEXEC): Likewise.
18097         (TOREAD): Likewise.
18098         (TOWRITE): Likewise.
18099         (TOEXEC): Likewise.
18100         [POSIX] (TSVTX): Expect constant.
18102 2014-03-06  Joseph Myers  <joseph@codesourcery.com>
18104         * Makefile (tests): Change dependencies to ....
18105         (tests-special): ... additions to this variable.
18106         (tests): Depend on $(tests-special).
18107         * Makerules (check-abi-list): New variable.
18108         (check-abi): Depend on $(check-abi-list).
18109         [$(subdir) = elf] (tests-special): Add
18110         $(objpfx)check-abi-libc.out.
18111         [$(build-shared) = yes && subdir] (tests-special): Add
18112         $(check-abi-list).
18113         [$(build-shared) = yes && subdir] (tests): Do not depend on
18114         check-abi.
18115         * Rules (tests): Depend on $(tests-special).
18116         (xtests): Depend on $(xtests-special).
18117         * catgets/Makefile (tests): Change dependencies to ....
18118         (tests-special): ... additions to this variable.
18119         * conform/Makefile (tests): Change dependencies to ....
18120         (tests-special): ... additions to this variable.
18121         * elf/Makefile (tests): Change dependencies to ....
18122         (tests-special): ... additions to this variable.
18123         * grp/Makefile (tests): Change dependencies to ....
18124         (tests-special): ... additions to this variable.
18125         * iconv/Makefile (xtests): Change dependencies to ....
18126         (xtests-special): ... additions to this variable.
18127         * iconvdata/Makefile (tests): Change dependencies to ....
18128         (tests-special): ... additions to this variable.
18129         * intl/Makefile (tests): Change dependencies to ....
18130         (tests-special): ... additions to this variable.  Also add
18131         $(objpfx)tst-gettext.out.
18132         * io/Makefile (tests): Change dependencies to ....
18133         (tests-special): ... additions to this variable.
18134         * libio/Makefile (tests): Change dependencies to ....
18135         (tests-special): ... additions to this variable.
18136         * malloc/Makefile (tests): Change dependencies to ....
18137         (tests-special): ... additions to this variable.
18138         * misc/Makefile (tests): Change dependencies to ....
18139         (tests-special): ... additions to this variable.
18140         * nptl/Makefile (tests): Change dependencies to ....
18141         (tests-special): ... additions to this variable.
18142         * nptl_db/Makefile (tests): Change dependencies to ....
18143         (tests-special): ... additions to this variable.
18144         * posix/Makefile (tests): Change dependencies to ....
18145         (tests-special): ... additions to this variable.
18146         (xtests): Change dependencies to ....
18147         (xtests-special): ... additions to this variable.
18148         * resolv/Makefile (tests): Change dependencies to ....
18149         (tests-special): ... additions to this variable.
18150         (xtests): Change dependencies to ....
18151         (xtests-special): ... additions to this variable.
18152         * stdio-common/Makefile (tests): Change dependencies to ....
18153         (tests-special): ... additions to this variable.
18154         (do-tst-unbputc): Remove target.
18155         (do-tst-printf): Likewise.
18156         * stdlib/Makefile (tests): Change dependencies to ....
18157         (tests-special): ... additions to this variable.
18158         * string/Makefile (tests): Change dependencies to ....
18159         (tests-special): ... additions to this variable.
18160         * sysdeps/x86/Makefile (tests): Change dependencies to ....
18161         (tests-special): ... additions to this variable.
18163         * conform/data/netinet/tcp.h-data [POSIX2008 || XOPEN2K8]: Enable
18164         whole file.
18165         * conform/data/sys/timeb.h-data [POSIX2008 || XOPEN2K8]: Disable
18166         whole file.
18167         * conform/data/sys/uio.h-data [POSIX2008]: Likewise.
18168         * conform/data/ucontext.h-data [POSIX2008 || XOPEN2K8]: Likewise.
18170         * conform/data/aio.h-data [XPG3 || XPG4]: Disable whole file.
18171         * conform/data/arpa/inet.h-data [XPG3]: Likewise.
18172         * conform/data/dlfcn.h-data [XPG3 || XPG4]: Likewise.
18173         * conform/data/fmtmsg.h-data [XPG3]: Likewise.
18174         * conform/data/libgen.h-data [XPG3]: Likewise.
18175         * conform/data/mqueue.h-data [XPG3 || XPG4]: Likewise.
18176         * conform/data/ndbm.h-data [XPG3]: Likewise.
18177         * conform/data/net/if.h-data [XPG3 || XPG4 || UNIX98]: Likewise.
18178         * conform/data/netdb.h-data [XPG3]: Likewise.
18179         * conform/data/netinet/in.h-data [XPG3]: Likewise.
18180         * conform/data/poll.h-data [XPG3]: Likewise.
18181         * conform/data/spawn.h-data [XPG3 || XPG4 || UNIX98]: Likewise.
18182         * conform/data/strings.h-data [XPG3]: Likewise.
18183         * conform/data/stropts.h-data [XPG3]: Likewise.
18184         * conform/data/sys/mman.h-data [XPG3]: Likewise.
18185         * conform/data/sys/resource.h-data [XPG3]: Likewise.
18186         * conform/data/sys/select.h-data [XPG3 || XPG4 || UNIX98]:
18187         Likewise.
18188         * conform/data/sys/statvfs.h-data [XPG3]: Likewise.
18189         * conform/data/sys/time.h-data [XPG3]: Likewise.
18190         * conform/data/sys/timeb.h-data [XPG3]: Likewise.
18191         * conform/data/sys/uio.h-data [XPG3]: Likewise.
18192         * conform/data/sys/un.h-data [XPG3]: Likewise.
18193         * conform/data/syslog.h-data [XPG3]: Likewise.
18194         * conform/data/ucontext.h-data [XPG3]: Likewise.
18195         * conform/data/utmpx.h-data [XPG3]: Likewise.
18196         * conform/data/varargs.h-data [UNIX98]: Enable file.
18198         * manual/Makefile (INSTALL_INFO): Remove variable setting.
18200         * math/libm-test.inc (struct test_f_f_data): Move expected results
18201         into structure for each rounding mode.
18202         (struct test_ff_f_data): Likewise.
18203         (struct test_ff_f_data_nexttoward): Likewise.
18204         (struct test_fi_f_data): Likewise.
18205         (struct test_fl_f_data): Likewise.
18206         (struct test_if_f_data): Likewise.
18207         (struct test_fff_f_data): Likewise.
18208         (struct test_c_f_data): Likewise.
18209         (struct test_f_f1_data): Likewise.
18210         (struct test_fF_f1_data): Likewise.
18211         (struct test_ffI_f1_data): Likewise.
18212         (struct test_c_c_data): Likewise.
18213         (struct test_cc_c_data): Likewise.
18214         (struct test_f_i_data): Likewise.
18215         (struct test_ff_i_data): Likewise.
18216         (struct test_f_l_data): Likewise.
18217         (struct test_f_L_data): Likewise.
18218         (struct test_fFF_11_data): Likewise.
18219         (RM_): New macro.
18220         (RM_FE_DOWNWARD): Likewise.
18221         (RM_FE_TONEAREST): Likewise.
18222         (RM_FE_TOWARDZERO): Likewise.
18223         (RM_FE_UPWARD): Likewise.
18224         (RUN_TEST_LOOP_f_f): Update references to expected results.
18225         (RUN_TEST_LOOP_2_f): Likewise.
18226         (RUN_TEST_LOOP_fff_f): Likewise.
18227         (RUN_TEST_LOOP_c_f): Likewise.
18228         (RUN_TEST_LOOP_f_f1): Likewise.
18229         (RUN_TEST_LOOP_fF_f1): Likewise.
18230         (RUN_TEST_LOOP_fI_f1): Likewise.
18231         (RUN_TEST_LOOP_ffI_f1): Likewise.
18232         (RUN_TEST_LOOP_c_c): Likewise.
18233         (RUN_TEST_LOOP_cc_c): Likewise.
18234         (RUN_TEST_LOOP_f_i): Likewise.
18235         (RUN_TEST_LOOP_f_i_tg): Likewise.
18236         (RUN_TEST_LOOP_ff_i_tg): Likewise.
18237         (RUN_TEST_LOOP_f_b): Likewise.
18238         (RUN_TEST_LOOP_f_b_tg): Likewise.
18239         (RUN_TEST_LOOP_f_l): Likewise.
18240         (RUN_TEST_LOOP_f_L): Likewise.
18241         (RUN_TEST_LOOP_fFF_11): Likewise.
18242         * math/gen-libm-test.pl (parse_args): Output four copies of
18243         expected results for each test.
18245         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
18246         (__ASSUME_UTIMES): Remove.
18247         * sysdeps/unix/sysv/linux/tile/kernel-features.h
18248         (__ASSUME_UTIMES): Likewise.
18250         * math/gen-auto-libm-tests.c: Update comment on output format.
18251         (output_for_one_input_case): Generate before-rounding and
18252         after-rounding information as conditions on output flags not
18253         floating-point format.
18254         * math/auto-libm-test-out: Regenerated.
18255         * math/gen-libm-test.pl (cond_value): New function.
18256         (or_cond_value): Use cond_value.
18257         (generate_testfile): Handle conditional exceptions.
18259 2014-03-05  Joseph Myers  <joseph@codesourcery.com>
18261         * math/libm-test.inc (max_valid_error): New variable.
18262         (init_max_error): Take new argument specifying whether function
18263         results are exactly determined.  Set max_valid_error and bound
18264         other variables for errors based on this argument.
18265         (set_max_error): Do not record results above max_valid_error.
18266         (check_float_internal): Only accept errors of up to 0.5ulps if
18267         also at most max_valid_error.
18268         (START): Take new argument EXACT and pass it to init_max_error.
18269         (acos_test): Update call to START.
18270         (acos_test_tonearest): Likewise.
18271         (acos_test_towardzero): Likewise.
18272         (acos_test_downward): Likewise.
18273         (acos_test_upward): Likewise.
18274         (acosh_test): Likewise.
18275         (asin_test): Likewise.
18276         (asin_test_tonearest): Likewise.
18277         (asin_test_towardzero): Likewise.
18278         (asin_test_downward): Likewise.
18279         (asin_test_upward): Likewise.
18280         (asinh_test): Likewise.
18281         (atan_test): Likewise.
18282         (atanh_test): Likewise.
18283         (atan2_test): Likewise.
18284         (cabs_test): Likewise.
18285         (cacos_test): Likewise.
18286         (cacosh_test): Likewise.
18287         (carg_test): Likewise.
18288         (casin_test): Likewise.
18289         (casinh_test): Likewise.
18290         (catan_test): Likewise.
18291         (catanh_test): Likewise.
18292         (cbrt_test): Likewise.
18293         (ccos_test): Likewise.
18294         (ccosh_test): Likewise.
18295         (ceil_test): Likewise.
18296         (cexp_test): Likewise.
18297         (cimag_test): Likewise.
18298         (clog_test): Likewise.
18299         (clog10_test): Likewise.
18300         (conj_test): Likewise.
18301         (copysign_test): Likewise.
18302         (cos_test): Likewise.
18303         (cos_test_tonearest): Likewise.
18304         (cos_test_towardzero): Likewise.
18305         (cos_test_downward): Likewise.
18306         (cos_test_upward): Likewise.
18307         (cosh_test): Likewise.
18308         (cosh_test_tonearest): Likewise.
18309         (cosh_test_towardzero): Likewise.
18310         (cosh_test_downward): Likewise.
18311         (cosh_test_upward): Likewise.
18312         (cpow_test): Likewise.
18313         (cproj_test): Likewise.
18314         (creal_test): Likewise.
18315         (csin_test): Likewise.
18316         (csinh_test): Likewise.
18317         (csqrt_test): Likewise.
18318         (ctan_test): Likewise.
18319         (ctan_test_tonearest): Likewise.
18320         (ctan_test_towardzero): Likewise.
18321         (ctan_test_downward): Likewise.
18322         (ctan_test_upward): Likewise.
18323         (ctanh_test): Likewise.
18324         (ctanh_test_tonearest): Likewise.
18325         (ctanh_test_towardzero): Likewise.
18326         (ctanh_test_downward): Likewise.
18327         (ctanh_test_upward): Likewise.
18328         (erf_test): Likewise.
18329         (erfc_test): Likewise.
18330         (exp_test): Likewise.
18331         (exp_test_tonearest): Likewise.
18332         (exp_test_towardzero): Likewise.
18333         (exp_test_downward): Likewise.
18334         (exp_test_upward): Likewise.
18335         (exp10_test): Likewise.
18336         (exp10_test_tonearest): Likewise.
18337         (exp10_test_towardzero): Likewise.
18338         (exp10_test_downward): Likewise.
18339         (exp10_test_upward): Likewise.
18340         (pow10_test): Likewise.
18341         (exp2_test): Likewise.
18342         (expm1_test): Likewise.
18343         (expm1_test_tonearest): Likewise.
18344         (expm1_test_towardzero): Likewise.
18345         (expm1_test_downward): Likewise.
18346         (expm1_test_upward): Likewise.
18347         (fabs_test): Likewise.
18348         (fdim_test): Likewise.
18349         (floor_test): Likewise.
18350         (fma_test): Likewise.
18351         (fma_test_towardzero): Likewise.
18352         (fma_test_downward): Likewise.
18353         (fma_test_upward): Likewise.
18354         (fmax_test): Likewise.
18355         (fmin_test): Likewise.
18356         (fmod_test): Likewise.
18357         (fpclassify_test): Likewise.
18358         (frexp_test): Likewise.
18359         (hypot_test): Likewise.
18360         (ilogb_test): Likewise.
18361         (isfinite_test): Likewise.
18362         (finite_test): Likewise.
18363         (isgreater_test): Likewise.
18364         (isgreaterequal_test): Likewise.
18365         (isinf_test): Likewise.
18366         (isless_test): Likewise.
18367         (islessequal_test): Likewise.
18368         (islessgreater_test): Likewise.
18369         (isnan_test): Likewise.
18370         (isnormal_test): Likewise.
18371         (issignaling_test): Likewise.
18372         (isunordered_test): Likewise.
18373         (j0_test): Likewise.
18374         (j1_test): Likewise.
18375         (jn_test): Likewise.
18376         (ldexp_test): Likewise.
18377         (lgamma_test): Likewise.
18378         (gamma_test): Likewise.
18379         (lrint_test): Likewise.
18380         (lrint_test_tonearest): Likewise.
18381         (lrint_test_towardzero): Likewise.
18382         (lrint_test_downward): Likewise.
18383         (lrint_test_upward): Likewise.
18384         (llrint_test): Likewise.
18385         (llrint_test_tonearest): Likewise.
18386         (llrint_test_towardzero): Likewise.
18387         (llrint_test_downward): Likewise.
18388         (llrint_test_upward): Likewise.
18389         (log_test): Likewise.
18390         (log10_test): Likewise.
18391         (log1p_test): Likewise.
18392         (log2_test): Likewise.
18393         (logb_test): Likewise.
18394         (logb_test_downward): Likewise.
18395         (lround_test): Likewise.
18396         (llround_test): Likewise.
18397         (modf_test): Likewise.
18398         (nearbyint_test): Likewise.
18399         (nextafter_test): Likewise.
18400         (nexttoward_test): Likewise.
18401         (pow_test): Likewise.
18402         (pow_test_tonearest): Likewise.
18403         (pow_test_towardzero): Likewise.
18404         (pow_test_downward): Likewise.
18405         (pow_test_upward): Likewise.
18406         (remainder_test): Likewise.
18407         (drem_test): Likewise.
18408         (remainder_test_tonearest): Likewise.
18409         (drem_test_tonearest): Likewise.
18410         (remainder_test_towardzero): Likewise.
18411         (drem_test_towardzero): Likewise.
18412         (remainder_test_downward): Likewise.
18413         (drem_test_downward): Likewise.
18414         (remainder_test_upward): Likewise.
18415         (drem_test_upward): Likewise.
18416         (remquo_test): Likewise.
18417         (rint_test): Likewise.
18418         (rint_test_tonearest): Likewise.
18419         (rint_test_towardzero): Likewise.
18420         (rint_test_downward): Likewise.
18421         (rint_test_upward): Likewise.
18422         (round_test): Likewise.
18423         (scalb_test): Likewise.
18424         (scalbn_test): Likewise.
18425         (scalbln_test): Likewise.
18426         (signbit_test): Likewise.
18427         (sin_test): Likewise.
18428         (sin_test_tonearest): Likewise.
18429         (sin_test_towardzero): Likewise.
18430         (sin_test_downward): Likewise.
18431         (sin_test_upward): Likewise.
18432         (sincos_test): Likewise.
18433         (sinh_test): Likewise.
18434         (sinh_test_tonearest): Likewise.
18435         (sinh_test_towardzero): Likewise.
18436         (sinh_test_downward): Likewise.
18437         (sinh_test_upward): Likewise.
18438         (sqrt_test): Likewise.
18439         (sqrt_test_tonearest): Likewise.
18440         (sqrt_test_towardzero): Likewise.
18441         (sqrt_test_downward): Likewise.
18442         (sqrt_test_upward): Likewise.
18443         (tan_test): Likewise.
18444         (tan_test_tonearest): Likewise.
18445         (tan_test_towardzero): Likewise.
18446         (tan_test_downward): Likewise.
18447         (tan_test_upward): Likewise.
18448         (tanh_test): Likewise.
18449         (tgamma_test): Likewise.
18450         (trunc_test): Likewise.
18451         (y0_test): Likewise.
18452         (y1_test): Likewise.
18453         (yn_test): Likewise.
18454         (significand_test): Likewise.
18456         * math/libm-test.inc (struct ulp_data): Don't refer to ulps for
18457         individual tests in comment.
18458         (libm-test-ulps.h): Don't refer to test_ulps in #include comment.
18459         (prev_max_error): New variable.
18460         (prev_real_max_error): Likewise.
18461         (prev_imag_max_error): Likewise.
18462         (compare_ulp_data): Don't refer to test names in comment.
18463         (find_test_ulps): Remove function.
18464         (find_function_ulps): Likewise.
18465         (find_complex_function_ulps): Likewise.
18466         (init_max_error): Take function name as argument.  Look up ulps
18467         for that function.
18468         (print_ulps): Remove function.
18469         (print_max_error): Use prev_max_error instead of calling
18470         find_function_ulps.
18471         (print_complex_max_error): Use prev_real_max_error and
18472         prev_imag_max_error instead of calling find_complex_function_ulps.
18473         (check_float_internal): Take max_ulp parameter instead of calling
18474         find_test_ulps.  Don't call print_ulps.
18475         (check_float): Update call to check_float_internal.
18476         (check_complex): Update calls to check_float_internal.
18477         (START): Pass argument to init_max_error.
18478         * math/gen-libm-test.pl (%results): Don't include "kind"
18479         information.
18480         (parse_ulps): Don't handle ulps of individual tests.
18481         (print_ulps_file): Likewise.
18482         (output_ulps): Likewise.
18483         * math/README.libm-test: Update.
18484         * manual/libm-err-tab.pl (parse_ulps): Don't handle ulps of
18485         individual tests.
18486         * sysdeps/aarch64/libm-test-ulps: Remove individual test ulps.
18487         * sysdeps/alpha/fpu/libm-test-ulps: Likewise.
18488         * sysdeps/arm/libm-test-ulps: Likewise.
18489         * sysdeps/i386/fpu/libm-test-ulps: Likewise.
18490         * sysdeps/ia64/fpu/libm-test-ulps: Likewise.
18491         * sysdeps/m68k/coldfire/fpu/libm-test-ulps: Likewise.
18492         * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Likewise.
18493         * sysdeps/microblaze/libm-test-ulps: Likewise.
18494         * sysdeps/mips/mips32/libm-test-ulps: Likewise.
18495         * sysdeps/mips/mips64/libm-test-ulps: Likewise.
18496         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
18497         * sysdeps/powerpc/nofpu/libm-test-ulps: Likewise.
18498         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
18499         * sysdeps/sh/libm-test-ulps: Likewise.
18500         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
18501         * sysdeps/tile/libm-test-ulps: Likewise.
18502         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18504 2014-03-04  Joseph Myers  <joseph@codesourcery.com>
18506         * math/libm-test.inc (print_complex_max_error): Check separately
18507         whether real and imaginary errors are within allowed range and
18508         pass 0 to print_complex_function_ulps instead of value within
18509         allowed range.
18511 2014-03-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
18513         * libio/tst-ftell-active-handler.c (get_handles_fdopen): Fix
18514         formatting.
18515         (get_handles_fopen): Likewise.
18516         (do_write_test): Likewise.
18518         * libio/wfileops.c (do_ftell_wide): Fix up formatting.
18520         * libio/fileops.c (do_ftell): Use cached offset when
18521         available.
18522         * libio/iofwide.c (do_ftell_wide): Likewise.
18523         * libio/iofdopen.c (_IO_new_fdopen): Don't use
18524         _IO_file_attach.
18525         * libio/wfileops.c (_IO_fwide): Don't cache offset.
18527         [BZ #16532]
18528         * libio/libioP.h (get_file_offset): New function.
18529         * libio/fileops.c (get_file_offset): Likewise.
18530         (do_ftell): Likewise.
18531         (_IO_new_file_seekoff): Split out ftell logic.
18532         * libio/wfileops.c (do_ftell_wide): Likewise.
18533         (_IO_wfile_seekoff): Split out ftell logic.
18534         * libio/tst-ftell-active-handler.c: New test case.
18535         * libio/Makefile (tests): Add it.
18537 2014-03-03  Roland McGrath  <roland@hack.frob.com>
18539         * nptl/ChangeLog: Renamed to nptl/ChangeLog.old, no longer used.
18540         * nptl_db/ChangeLog: Renamed to nptl_db/ChangeLog.old, no longer used.
18542 2014-03-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
18544         [BZ #16639]
18545         * nscd/connections.c (nscd_init): Call do_exit.
18546         (start_threads): Call do_exit and notify_parent.
18547         (begin_drop_privileges): Call do_exit.
18548         (finish_drop_privileges): Likewise.
18549         * nscd/selinux.c (preserve_capabilities): Likewise.
18550         (install_real_capabilities): Likewise.
18551         (nscd_selinux_enabled): Likewise.
18552         (avc_create_thread): Likewise.
18553         (avc_alloc_lock): Likewise.
18554         (nscd_avc_init): Likewise.
18555         * nscd/nscd.c (parent_fd): New static variable.
18556         (main): Create a pipe between parent and child processes.
18557         Skip closing parent_fd.
18558         (monitor_child): New function.
18559         (do_exit): Likewise.
18560         (notify_parent): Likewise.
18561         * nscd/nscd.h (notify_parent): Likewise.
18562         (do_exit): Likewise.
18564 2014-03-03  Carlos O'Donell  <carlos@redhat.com>
18566         * malloc/malloc.c (__libc_calloc): Revert last change.
18568 2014-03-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18570         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18572 2014-03-03  Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
18574         * sysdeps/powerpc/powerpc64/power7/strrchr.S: New file.
18575         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strrchr multiarch
18576         implementation.
18577         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
18578         (__libc_ifunc_impl_list): Likewise.
18579         * sysdeps/powerpc/powerpc64/multiarch/strrchr.c: New file.
18580         * sysdeps/powerpc/powerpc64/multiarch/strrchr-ppc64.c: New file.
18581         * sysdeps/powerpc/powerpc64/multiarch/strrchr-power7.S: New file.
18582         * string/strrchr.c: Define STRRCHR.
18584 2014-02-28  Ondřej Bílka  <neleai@seznam.cz>
18586         * benchtest/bench-strtok.c (simple_strtok): Delete.
18587         (strtok_string): Use as benchmark.
18588         * string/strtok (STRTOK): New macro.
18590 2014-02-28  Carlos O'Donell  <carlos@redhat.com>
18592         * manual/threads.texi: Add header and standard comments to all
18593         functions.
18595         * elf/dl-lookup.c (check_match): New function.
18596         (ELF_MACHINE_SYM_NO_MATCH): Adjust comment.
18597         (do_lookup_x): Remove nested function check_match. Use non-nested
18598         function check_match.
18600 2014-02-28  Roland McGrath  <roland@hack.frob.com>
18602         * csu/Makefile (generated, before-compile): Use += rather than =.
18603         * catgets/Makefile (generated, generated-dirs): Likewise.
18604         * debug/Makefile (generated): Likewise.
18605         * dlfcn/Makefile (generated): Likewise.
18606         * elf/Makefile (before-compile, generated, generated-dirs): Likewise.
18607         * iconvdata/Makefile (before-compile, generated): Likewise.
18608         * intl/Makefile (before-compile, generated, generated-dirs): Likewise.
18609         * libio/Makefile (generated): Likewise.
18610         * malloc/Makefile (generated): Likewise.
18611         * manual/Makefile (generated, generated-dirs): Likewise.
18612         * misc/Makefile (generated): Likewise.
18613         * posix/Makefile (generated): Likewise.
18614         * resolv/Makefile (generated): Likewise.
18615         * sunrpc/Makefile (generated, generated-dirs): Likewise.
18616         * timezone/Makefile (generated, generated-dirs): Likewise.
18618         * stdio-common/Versions (libc: GLIBC_PRIVATE): Add missing }.
18620 2014-02-27  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18622         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llround
18623         power8 implementation.
18624         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power8.S: New
18625         file: POWER8 llround ifunc implementation.
18626         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c
18627         (__lllround): Add POWER8 implementation.
18628         * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S: New file:
18629         POWER8 llround implementation.
18631         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llrint
18632         power8 implementation.
18633         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power8.S: New
18634         file: POWER8 llrint ifunc implementation.
18635         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c (__lllrint):
18636         Add POWER8 implementation.
18637         * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S: New file:
18638         POWER8 llrint implementation.
18640         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add finite
18641         power8 implementation.
18642         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power8.S: New
18643         file: POWER8 finite ifunc implementation.
18644         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c (__finite):
18645         Add POWER8 implementation.
18646         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c (__finitef):
18647         Likewise.
18648         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S: New file:
18649         POWER8 finite implementation.
18650         * sysdeps/powerpc/powerpc64/power8/fpu/s_finitef.S: New file.
18652         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isinf
18653         power8 implementation.
18654         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power8.S: New
18655         file: POWER8 isinf ifunc implementation.
18656         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c (__isinf): Add
18657         POWER8 implementation.
18658         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c (__isinff):
18659         Likewise.
18660         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S: New file: POWER8
18661         isinf implementation.
18662         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinff.S: New file.
18664         * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h
18665         (INIT_ARCH): Add hwcap2 initialization.
18666         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isnan
18667         power8 implementation.
18668         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power8.S: New
18669         file: POWER8 isnan ifunc implementation.
18670         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c (__isnan): Add
18671         POWER8 implementation.
18672         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c (__isnanf):
18673         Likewise.
18674         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S: New file: POWER8
18675         isnan implementation.
18676         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnanf.S: New file.
18678 2014-02-27  Joey Ye  <joey.ye@arm.com>
18680         * sysdeps/arm/soft-fp/sfp-machine.h (_FP_NANFRAC_S, _FP_NANFRAC_D)
18681         (_FP_NANFRAC_Q): Set to zero.
18683 2014-02-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
18685         [BZ #16623]
18686         * math/auto-libm-test-in: New test inputs.
18687         * math/auto-libm-test-out: Regenerate.
18688         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Preserve sign of A
18689         and DA.
18690         (__cos): Likewise.
18691         * sysdeps/x86_64/fpu/libm-test-ulps: Regenerate.
18693 2014-02-27  Joseph Myers  <joseph@codesourcery.com>
18695         * scripts/evaluate-test.sh: Take new argument indicating whether
18696         failure is expected.
18697         * Makeconfig (evaluate-test): Pass argument to evaluate-test.sh
18698         indicating whether failure is expected.
18699         * conform/Makefile (test-xfail-run-conformtest): New variable.
18700         ($(objpfx)run-conformtest.out): Don't expect to fail at makefile
18701         level.
18702         * posix/Makefile (test-xfail-annexc): New variable.
18703         ($(objpfx)annexc.out): Don't expect to fail at makefile level.
18705 2014-02-26  Joseph Myers  <joseph@codesourcery.com>
18707         * argp/Makefile: Include Makeconfig immediately after defining
18708         subdir.
18709         * assert/Makefile: Likewise.
18710         * benchtests/Makefile: Likewise.
18711         * catgets/Makefile: Likewise.
18712         * conform/Makefile: Likewise.
18713         * crypt/Makefile: Likewise.
18714         * csu/Makefile: Likewise.
18715         (all): Remove target.
18716         * ctype/Makefile: Include Makeconfig immediately after defining
18717         subdir.
18718         * debug/Makefile: Likewise.
18719         * dirent/Makefile: Likewise.
18720         * dlfcn/Makefile: Likewise.
18721         * gmon/Makefile: Likewise.
18722         * gnulib/Makefile: Likewise.
18723         * grp/Makefile: Likewise.
18724         * gshadow/Makefile: Likewise.
18725         * hesiod/Makefile: Likewise.
18726         * hurd/Makefile: Likewise.
18727         (all): Remove target.
18728         * iconvdata/Makefile: Include Makeconfig immediately after
18729         defining subdir.
18730         * inet/Makefile: Likewise.
18731         * intl/Makefile: Likewise.
18732         * io/Makefile: Likewise.
18733         * libio/Makefile: Likewise.
18734         (all): Remove target.
18735         * locale/Makefile: Include Makeconfig immediately after defining
18736         subdir.
18737         * login/Makefile: Likewise.
18738         * mach/Makefile: Likewise.
18739         (all): Remove target.
18740         * malloc/Makefile: Include Makeconfig immediately after defining
18741         subdir.
18742         (all): Remove target.
18743         * manual/Makefile: Include Makeconfig immediately after defining
18744         subdir.
18745         * math/Makefile: Likewise.
18746         * misc/Makefile: Likewise.
18747         * nis/Makefile: Likewise.
18748         * nss/Makefile: Likewise.
18749         * po/Makefile: Likewise.
18750         (all): Remove target.
18751         * posix/Makefile: Include Makeconfig immediately after defining
18752         subdir.
18753         * pwd/Makefile: Likewise.
18754         * resolv/Makefile: Likewise.
18755         * resource/Makefile: Likewise.
18756         * rt/Makefile: Likewise.
18757         * setjmp/Makefile: Likewise.
18758         * shadow/Makefile: Likewise.
18759         * signal/Makefile: Likewise.
18760         * socket/Makefile: Likewise.
18761         * soft-fp/Makefile: Likewise.
18762         * stdio-common/Makefile: Likewise.
18763         * stdlib/Makefile: Likewise.
18764         * streams/Makefile: Likewise.
18765         * string/Makefile: Likewise.
18766         * sunrpc/Makefile: Likewise.
18767         (all): Remove target.
18768         * sysvipc/Makefile: Include Makeconfig immediately after defining
18769         subdir.
18770         * termios/Makefile: Likewise.
18771         * time/Makefile: Likewise.
18772         * timezone/Makefile: Likewise.
18773         (all): Remove target.
18774         * wcsmbs/Makefile: Include Makeconfig immediately after defining
18775         subdir.
18776         * wctype/Makefile: Likewise.
18778 2014-02-26  Steve Ellcey  <sellcey@mips.com>
18780         * sysdeps/mips/math_private.h (_FPU_MASK_ALL) New.
18781         (libc_feholdexcept_mips): Use _FPU_MASK_ALL.
18782         (libc_feholdexcept_setround_mips): Ditto.
18783         (libc_feholdsetround): New.
18784         (libc_feholdsetroundf): New.
18785         (libc_feholdsetroundl): New.
18786         (libc_feupdateenv_test_mips): New.
18787         (libc_feupdateenv_test): New.
18788         (libc_feupdateenv_testf): New.
18789         (libc_feupdateenv_testl): New.
18790         (libc_feresetround): New.
18791         (libc_feresetroundf): New.
18792         (libc_feresetroundl): New.
18793         (libc_fetestexcept_mips): New.
18794         (libc_fetestexcept): New.
18795         (libc_fetestexceptf): New.
18796         (libc_fetestexceptl): New.
18797         (HAVE_RM_CTX): New.
18798         (libc_feholdexcept_setround_mips_ctx): New.
18799         (libc_feholdexcept_setround_ctx): New.
18800         (libc_feholdexcept_setroundf_ctx): New.
18801         (libc_feholdexcept_setroundl_ctx): New.
18802         (libc_fesetenv_mips_ctx): New.
18803         (libc_fesetenv_ctx): New.
18804         (libc_fesetenv_ctxf): New.
18805         (libc_fesetenv_ctxl): New.
18806         (libc_feupdateenv_mips_ctx): New.
18807         (libc_feupdateenv_ctx): New.
18808         (libc_feupdateenvf_ctx): New.
18809         (libc_feupdateenvl_ctx): New.
18810         (libc_feholdsetround_mips_ctx): New.
18811         (libc_feholdsetround_ctx): New.
18812         (libc_feholdsetroundf_ctx): New.
18813         (libc_feholdsetroundl_ctx): New.
18814         (libc_feresetround_mips_ctx): New.
18815         (libc_feresetround_ctx): New.
18816         (libc_feresetroundf_ctx): New.
18817         (libc_feresetroundl_ctx): New.
18819 2014-02-26  Carlos O'Donell  <carlos@redhat.com>
18821         * manual/ipc.texi (Semaphores): Use @Theglibc{}.
18823         * manual/ipc.texi: New file.
18824         * manual/Makefile (chapters): Add ipc.
18825         * manual/job.texi: Add "Inter-Process Communication" to next.
18826         * manual/process.texi: Add "Inter-Process Communication" to prev.
18828 2014-02-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18830         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18832 2014-02-26  Ondřej Bílka  <neleai@seznam.cz>
18834         * malloc/malloc.c (__libc_calloc): Simplify implementation.
18836         * manual/arith.texi: Fix spaces after sentences.
18837         * manual/charset.texi: Likewise.
18838         * manual/errno.texi: Likewise.
18839         * manual/install.texi: Likewise.
18840         * manual/llio.texi: Likewise.
18841         * manual/locale.texi: Likewise.
18842         * manual/maint.texi: Likewise.
18843         * manual/math.texi: Likewise.
18844         * manual/memory.texi: Likewise.
18845         * manual/message.texi: Likewise.
18846         * manual/probes.texi: Likewise.
18847         * manual/resource.texi: Likewise.
18848         * manual/signal.texi: Likewise.
18849         * manual/socket.texi: Likewise.
18850         * manual/stdio.texi: Likewise.
18851         * manual/string.texi: Likewise.
18852         * manual/time.texi: Likewise.
18853         * manual/users.texi: Likewise.
18855 2014-02-25  Carlos O'Donell  <carlos@redhat.com>
18857         [BZ #16632]
18858         * include/features.h: Don't warn about _BSD_SOURCE or _SVID_SOURCE if
18859         _DEFAULT_SOURCE is defined.
18861 2014-02-25  Ulrich Drepper  <drepper@gmail.com>
18862             Carlos O'Donell  <carlos@redhat.com>
18864         [BZ #16613]
18865         * elf/dl-tls.c (_dl_count_modids): New function.
18866         * sysdeps/generic/ldsodefs.h: Declare _dl_count_modids.
18867         * elf/rtld.c (dl_main): Call _dl_count_modids to track TLS usage in
18868         audit library and increment generation counter.
18869         (_dl_allocate_tls_init): Add assertion to check TLS generation count.
18870         * elf/tst-audit9.c: New file.
18871         * elf/tst-auditmod9a.c: New file.
18872         * elf/tst-auditmod9b.c: New file.
18873         * elf/Makefile: Add rules to build and run tst-audit9.
18875 2014-02-25  Florian Weimer  <fweimer@redhat.com>
18877         [BZ #15347]
18878         * misc/sys/select.h (__FD_MASK): Avoid signed integer overflow.
18880 2014-02-25  Will Newton  <will.newton@linaro.org>
18882         * sysdeps/arm/__longjmp.S: Include stap-probe.h.
18883         (__longjmp): Restore sp and lr before restoring callee
18884         saved registers.  Add longjmp and longjmp_target
18885         SystemTap probe point.
18886         * sysdeps/arm/bits/setjmp.h (__jmp_buf): Update comment.
18887         * sysdeps/arm/include/bits/setjmp.h (__JMP_BUF_SP):
18888         Define to zero to match jmpbuf layout.
18889         * sysdeps/arm/setjmp.S: Include stap-probe.h.
18890         (__sigsetjmp): Save sp and lr before saving callee
18891         saved registers.  Add setjmp SystemTap probe point.
18893 2014-02-24  Stefan Liebler  <stli@linux.vnet.ibm.com>
18895         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
18897 2014-02-24  Andreas Schwab  <schwab@suse.de>
18899         [BZ #15804]
18900         * elf/pldd.c (wait_for_ptrace_stop): New function.
18901         (main): Call it after attaching.
18903 2014-02-22  Roland McGrath  <roland@hack.frob.com>
18905         * Makerules ($(common-objpfx)Versions.v.i): No longer depend
18906         on $(common-objpfx)abi-versions.h; using <shlib-compat.h> inside
18907         Versions files is now verboten.
18908         * hurd/Versions (libc: GLIBC_2.0):
18909         Remove various [SHLIB_COMPAT (libc, GLIBC_2_0, ...)] sections.
18910         (libc: HURD_CTHREADS_0.3): Remove conditionalization, was under
18911         [!SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)].
18912         * mach/Versions: Likewise.
18914         * csu/Versions: Remove unused %include.
18915         * resolv/Versions: Likewise.
18917 2014-02-21  Joseph Myers  <joseph@codesourcery.com>
18919         * Makefile ($(objpfx)c++-types-check.out): Use $(evaluate-test).
18920         ($(objpfx)check-local-headers.out): Likewise.
18921         ($(objpfx)begin-end-check.out): Likewise.
18922         * Makerules (check-abi-%.out): Likewise.
18923         * catgets/Makefile ($(objpfx)test1.cat): Likewise.
18924         ($(objpfx)test2.cat): Likewise.
18925         ($(objpfx)de/libc.cat): Likewise.
18926         ($(objpfx)test-gencat.out): Likewise.
18927         * conform/Makefile ($(objpfx)run-conformtest.out): Likewise.
18928         * elf/Makefile ($(objpfx)order-cmp.out): Likewise.
18929         ($(objpfx)noload-mem): Likewise.
18930         ($(objpfx)tst-pathopt.out): Likewise.
18931         ($(objpfx)tst-rtld-load-self.out): Likewise.
18932         ($(objpfx)tst-array1-cmp.out): Likewise.
18933         ($(objpfx)tst-array1-static-cmp.out): Likewise.
18934         ($(objpfx)tst-array2-cmp.out): Likewise.
18935         ($(objpfx)tst-array3-cmp.out): Likewise.
18936         ($(objpfx)tst-array4-cmp.out): Likewise.
18937         ($(objpfx)tst-array5-cmp.out): Likewise.
18938         ($(objpfx)tst-array5-static-cmp.out): Likewise.
18939         ($(objpfx)check-textrel.out): Likewise.
18940         ($(objpfx)check-execstack.out): Likewise.
18941         ($(objpfx)check-localplt.out): Likewise.
18942         ($(objpfx)order2-cmp.out): Likewise.
18943         ($(objpfx)tst-leaks1-mem): Likewise.
18944         ($(objpfx)tst-leaks1-static-mem): Likewise.
18945         ($(objpfx)tst-initorder-cmp.out): Likewise.
18946         ($(objpfx)tst-initorder2-cmp.out): Likewise.
18947         ($(objpfx)tst-unused-dep.out): Likewise.
18948         ($(objpfx)tst-unused-dep-cmp.out): Likewise.
18949         * grp/Makefile ($(objpfx)tst_fgetgrent.out): Likewise.
18950         * iconv/Makefile (test-iconvconfig): Likewise.
18951         * iconvdata/Makefile ($(objpfx)mtrace-tst-loading): Likewise.
18952         ($(objpfx)iconv-test.out): Likewise.
18953         ($(objpfx)tst-tables.out): Likewise.
18954         * intl/Makefile ($(objpfx)mtrace-tst-gettext): Likewise.
18955         ($(objpfx)tst-gettext.out): Likewise.
18956         ($(objpfx)tst-translit.out): Likewise.
18957         ($(objpfx)tst-gettext2.out): Likewise.
18958         ($(objpfx)tst-gettext4.out): Likewise.
18959         ($(objpfx)tst-gettext6.out): Likewise.
18960         * io/Makefile ($(objpfx)ftwtest.out): Likewise.
18961         * libio/Makefile ($(objpfx)test-freopen.out): Likewise.
18962         ($(objpfx)tst-fopenloc-cmp.out): Likewise.
18963         ($(objpfx)tst-fopenloc-mem.out): Likewise.
18964         * malloc/Makefile ($(objpfx)tst-mtrace.out): Likewise.
18965         * misc/Makefile ($(objpfx)tst-error1-mem): Likewise.
18966         * posix/Makefile ($(objpfx)globtest.out): Likewise.
18967         ($(objpfx)wordexp-tst.out): Likewise.
18968         ($(objpfx)annexc.out): Likewise.
18969         ($(objpfx)tst-fnmatch-mem): Likewise.
18970         ($(objpfx)bug-regex2-mem): Likewise.
18971         ($(objpfx)bug-regex14-mem): Likewise.
18972         ($(objpfx)bug-regex21-mem): Likewise.
18973         ($(objpfx)bug-regex31-mem): Likewise.
18974         ($(objpfx)tst-vfork3-mem): Likewise.
18975         ($(objpfx)tst-rxspencer-no-utf8-mem): Likewise.
18976         ($(objpfx)tst-pcre-mem): Likewise.
18977         ($(objpfx)tst-boost-mem): Likewise.
18978         ($(objpfx)tst-getconf.out): Likewise.
18979         ($(objpfx)bug-ga2-mem): Likewise.
18980         ($(objpfx)bug-glob2-mem): Likewise.
18981         * resolv/Makefile ($(objpfx)mtrace-tst-leaks): Likewise.
18982         ($(objpfx)mtrace-tst-leaks2): Likewise.
18983         * stdio-common/Makefile ($(objpfx)tst-unbputc.out): Likewise.
18984         ($(objpfx)tst-printf.out): Likewise.
18985         ($(objpfx)tst-setvbuf1.out): Likewise.
18986         ($(objpfx)tst-setvbuf1-cmp.out): Likewise.
18987         * stdlib/Makefile ($(objpfx)isomac.out): Likewise.
18988         ($(objpfx)tst-fmtmsg.out): Likewise.
18989         * string/Makefile ($(objpfx)tst-svc-cmp.out): Likewise.
18990         * sysdeps/x86/Makefile ($(objpfx)tst-xmmymm.out): Likewise.
18992         * bits/fcntl.h [__USE_MISC]: Remove redundant conditionals.
18993         * bits/sigaction.h [__USE_MISC]: Likewise.
18994         * bits/waitstatus.h: Update #endif comments.
18995         * ctype/ctype.h: Likewise.
18996         * dirent/dirent.h: Likewise.
18997         [__USE_MISC]: Remove redundant conditionals.
18998         * grp/grp.h: Update #endif comments.
18999         [__USE_GNU]: Remove redundant conditionals.
19000         [__USE_MISC]: Likewise.
19001         * inet/netinet/in.h [__USE_GNU]: Likewise.
19002         * io/sys/stat.h [__USE_MISC]: Likewise.
19003         * libio/bits/stdio-ldbl.h [__USE_MISC]: Likewise.
19004         * libio/bits/stdio.h: Update #endif comments.
19005         [__USE_MISC]: Remove redundant conditionals.
19006         * libio/bits/stdio2.h [__USE_MISC]: Likewise.
19007         * libio/stdio.h: Update #endif comments.
19008         [__USE_MISC]: Remove redundant conditionals.
19009         * math/bits/math-finite.h [__USE_MISC]: Likewise.
19010         * math/bits/mathcalls.h [__USE_MISC]: Likewise.
19011         * math/math.h: Update #else and #endif comments.
19012         [__USE_MISC]: Remove redundant conditionals.
19013         * misc/sys/uio.h: Update #endif comments.
19014         * posix/bits/unistd.h [__USE_MISC]: Remove redundant conditionals.
19015         * posix/glob.h [__USE_MISC]: Likewise.
19016         * posix/sys/types.h: Update #endif comments.
19017         [__USE_MISC]: Remove redundant conditionals.
19018         * posix/sys/wait.h: Update #endif comments.
19019         [__USE_MISC]: Remove redundant conditionals.
19020         * posix/unistd.h: Update #endif comments.
19021         [__USE_MISC]: Remove redundant conditionals.
19022         * pwd/pwd.h [__USE_GNU]: Likewise.
19023         [__USE_MISC]: Likewise.
19024         * resolv/netdb.h [__USE_GNU]: Likewise.
19025         * signal/signal.h: Update #endif comments.
19026         [__USE_MISC]: Remove redundant conditionals.
19027         * stdlib/stdlib.h: Update #else and #endif comments.
19028         [__USE_MISC]: Remove redundant conditionals.
19029         [__USE_GNU]: Likewise.
19030         * string/bits/string2.h [__USE_MISC]: Likewise.
19031         * string/string.h: Update #endif comments.
19032         [__USE_MISC]: Remove redundant conditionals.
19033         * sysdeps/m68k/m680x0/fpu/bits/mathinline.h [__USE_MISC]:
19034         Likewise.
19035         * sysdeps/mach/hurd/bits/fcntl.h [__USE_MISC]: Likewise.
19036         * sysdeps/mach/hurd/bits/stat.h [__USE_MISC]: Likewise.
19037         * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h [__USE_MISC]:
19038         Likewise.
19039         * sysdeps/unix/sysv/linux/alpha/bits/stat.h [__USE_MISC]:
19040         Likewise.
19041         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: Update #endif
19042         comments.
19043         [__USE_MISC]: Remove redundant conditionals.
19044         * sysdeps/unix/sysv/linux/bits/in.h [__USE_GNU]: Likewise.
19045         * sysdeps/unix/sysv/linux/bits/sigaction.h [__USE_MISC]: Likewise.
19046         * sysdeps/unix/sysv/linux/bits/socket.h [__USE_GNU]: Likewise.
19047         * sysdeps/unix/sysv/linux/bits/stat.h [__USE_MISC]: Likewise.
19048         * sysdeps/unix/sysv/linux/ia64/bits/sigaction.h [__USE_MISC]:
19049         Likewise.
19050         * sysdeps/unix/sysv/linux/m68k/bits/stat.h [__USE_MISC]: Likewise.
19051         * sysdeps/unix/sysv/linux/mips/bits/sigaction.h [__USE_MISC]:
19052         Likewise.
19053         * sysdeps/unix/sysv/linux/mips/bits/stat.h [__USE_MISC]: Likewise.
19054         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h [__USE_MISC]:
19055         Likewise.
19056         * sysdeps/unix/sysv/linux/s390/bits/sigaction.h [__USE_MISC]:
19057         Likewise.
19058         * sysdeps/unix/sysv/linux/s390/bits/stat.h [__USE_MISC]: Likewise.
19059         * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h [__USE_MISC]:
19060         Likewise.
19061         * sysdeps/unix/sysv/linux/sparc/bits/stat.h [__USE_MISC]:
19062         Likewise.
19063         * sysdeps/unix/sysv/linux/x86/bits/stat.h [__USE_MISC]: Likewise.
19064         * sysdeps/x86/bits/string.h: Update #endif comments.
19065         * sysdeps/x86/fpu/bits/mathinline.h [__USE_MISC]: Remove redundant
19066         conditionals.
19067         * time/sys/time.h: Update #endif comments.
19068         * time/time.h: Likewise.
19069         [__USE_MISC]: Remove redundant conditionals.
19071 2014-02-21  Yury Gribov  <y.gribov@samsung.com>
19073         [BZ #16600]
19074         * sysdeps/arm/libm-test-ulps: Update for VFPv4.
19076 2014-02-21  Andreas Schwab  <schwab@linux-m68k.org>
19078         * Versions.def (librt): Add GLIBC_2.17.
19080 2014-02-21  Adam Conrad  <adconrad@0c3.net>
19082         * sysdeps/powerpc/bits/hwcap.h: Allow _SYSDEPS_SYSDEP_H guard as a
19083         synonym for _SYS_AUXV_H to allow direct inclusion.
19084         * sysdeps/sparc/bits/hwcap.h: Likewise.
19085         * sysdeps/powerpc/sysdep.h: Define _SYSDEPS_SYSDEP_H instead of
19086         _SYS_AUXV_H so we can include sysdep.h and sys/auxv.h together.
19087         * sysdeps/sparc/sysdep.h: Likewise.
19089 2014-02-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
19091         * benchtests/bench-strrchr.c (do_test): Fix minor formatting.
19093 2014-02-21  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
19095         * benchtests/bench-strrchr.c: Print length instead of position.
19097 2014-02-20  Joseph Myers  <joseph@codesourcery.com>
19099         [BZ #16611]
19100         * sysdeps/unix/sysv/linux/kernel-features.h
19101         [__LINUX_KERNEL_VERSION >= 0x030000 && __ASSUME_SOCKETCALL]
19102         (__ASSUME_SENDMMSG_SOCKETCALL): Define.
19103         [__LINUX_KERNEL_VERSION >= 0x030000 && (__i386__ || __x86_64__ ||
19104         __powerpc__ || __sh__ || __sparc__)] (__ASSUME_SENDMMSG_SYSCALL):
19105         Likewise.
19106         [__i386__ || __powerpc__ || __sh__ || __sparc__]
19107         (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
19108         [__ASSUME_SENDMMSG_SOCKETCALL || __ASSUME_SENDMMSG_SYSCALL]
19109         (__ASSUME_SENDMMSG): Define instead of using previous
19110         [__LINUX_KERNEL_VERSION >= 0x020627] condition.
19111         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
19112         (__ASSUME_SENDMMSG_SYSCALL): Define.
19113         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
19114         [__LINUX_KERNEL_VERSION >= 0x030200] (__ASSUME_SENDMMSG_SYSCALL):
19115         Likewise.
19116         * sysdeps/unix/sysv/linux/arm/kernel-features.h
19117         [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
19118         Likewise.
19119         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
19120         [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
19121         Likewise.
19122         * sysdeps/unix/sysv/linux/internal_sendmmsg.S [__ASSUME_SOCKETCALL
19123         && !__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL &&
19124         !__ASSUME_SENDMMSG_SYSCALL] (__NR_sendmmsg): Undefine.
19125         [__ASSUME_SENDMMSG]: Change conditionals to
19126         [__ASSUME_SENDMMSG_SOCKETCALL].
19127         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
19128         [__LINUX_KERNEL_VERSION >= 0x030300] (__ASSUME_SENDMMSG_SYSCALL):
19129         Define.
19130         * sysdeps/unix/sysv/linux/mips/kernel-features.h
19131         [__LINUX_KERNEL_VERSION >= 0x030100] (__ASSUME_SENDMMSG_SYSCALL):
19132         Likewise.
19133         * sysdeps/unix/sysv/linux/sendmmsg.c [__ASSUME_SOCKETCALL &&
19134         !__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL &&
19135         !__ASSUME_SENDMMSG_SYSCALL] (__NR_sendmmsg): Undefine.
19136         [!__ASSUME_SENDMMSG]: Change conditional to
19137         [!__ASSUME_SENDMMSG_SOCKETCALL].
19138         * sysdeps/unix/sysv/linux/tile/kernel-features.h
19139         [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
19140         Define.
19142         [BZ #16610]
19143         * sysdeps/unix/sysv/linux/kernel-features.h
19144         [__LINUX_KERNEL_VERSION >= 0x020621 && __ASSUME_SOCKETCALL]
19145         (__ASSUME_RECVMMSG_SOCKETCALL): Define.
19146         [(__LINUX_KERNEL_VERSION >= 0x020621 && (__i386__ || __x86_64__ ||
19147         __sparc__)) || (__LINUX_KERNEL_VERSION >= 0x020625 && (__powerpc__
19148         || __sh__))] (__ASSUME_RECVMMSG_SYSCALL): Likewise.
19149         [__i386__ || __sparc__]
19150         (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
19151         [__ASSUME_RECVMMSG_SOCKETCALL || __ASSUME_RECVMMSG_SYSCALL]
19152         (__ASSUME_RECVMMSG): Define instead of using previous
19153         [__LINUX_KERNEL_VERSION >= 0x020621] condition.
19154         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
19155         (__ASSUME_RECVMMSG_SYSCALL): Define.
19156         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
19157         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
19158         Likewise.
19159         * sysdeps/unix/sysv/linux/arm/kernel-features.h
19160         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
19161         Likewise.
19162         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
19163         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
19164         Likewise.
19165         * sysdeps/unix/sysv/linux/internal_recvmmsg.S [__ASSUME_SOCKETCALL
19166         && !__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL &&
19167         !__ASSUME_RECVMMSG_SYSCALL] (__NR_recvmmsg): Undefine.
19168         [__ASSUME_RECVMMSG]: Change condition to
19169         [__ASSUME_RECVMMSG_SOCKETCALL].
19170         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
19171         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
19172         Define.
19173         (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
19174         * sysdeps/unix/sysv/linux/mips/kernel-features.h
19175         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
19176         Likewise.
19177         * sysdeps/unix/sysv/linux/recvmmsg.c [__ASSUME_SOCKETCALL &&
19178         !__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL &&
19179         !__ASSUME_RECVMMSG_SYSCALL] (__NR_recvmmsg): Undefine.
19180         [!__ASSUME_RECVMMSG]: Change condition to
19181         [!__ASSUME_RECVMMSG_SOCKETCALL].
19182         * sysdeps/unix/sysv/linux/tile/kernel-features.h
19183         (__ASSUME_RECVMMSG_SYSCALL): Define.
19185         [BZ #16609]
19186         * sysdeps/unix/sysv/linux/kernel-features.h [__i386__ ||
19187         __powerpc__ || __s390__ || __sh__ || __sparc__]
19188         (__ASSUME_SOCKETCALL): Define.
19189         [__LINUX_KERNEL_VERSION && __ASSUME_SOCKETCALL]
19190         (__ASSUME_ACCEPT4_SOCKETCALL): Likewise.
19191         [(__LINUX_KERNEL_VERSION >= 0x02061c && (__x86_64__ || __sparc__))
19192         || (__LINUX_KERNEL_VERSION >= 0x020625 && (__powerpc__ ||
19193         __sh__))] (__ASSUME_ACCEPT4_SYSCALL): Likewise.
19194         [__sparc__] (__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL): Likewise.
19195         [__ASSUME_ACCEPT4_SOCKETCALL || __ASSUME_ACCEPT4_SYSCALL]
19196         (__ASSUME_ACCEPT4): Define instead of using previous
19197         [__LINUX_KERNEL_VERSION >= 0x02061c && (__i386__ || __x86_64__ ||
19198         __powerpc__ || __sparc__ || __s390__)] condition.
19199         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
19200         (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.
19201         * sysdeps/unix/sysv/linux/accept4.c [__ASSUME_SOCKETCALL &&
19202         !__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL &&
19203         !__ASSUME_ACCEPT4_SYSCALL] (__NR_accept4): Undefine.
19204         [!__ASSUME_ACCEPT4]: Change condition to
19205         [!__ASSUME_ACCEPT4_SOCKETCALL].
19206         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
19207         (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.  Correct
19208         condition to [__LINUX_KERNEL_VERSION >= 0x030200].
19209         * sysdeps/unix/sysv/linux/arm/kernel-features.h
19210         [__LINUX_KERNEL_VERSION >= 0x020624] (__ASSUME_ACCEPT4): Change to
19211         __ASSUME_ACCEPT4_SYSCALL.
19212         * sysdeps/unix/sysv/linux/i386/accept4.S [__ASSUME_ACCEPT4]:
19213         Change conditions to [__ASSUME_ACCEPT4_SOCKETCALL].
19214         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
19215         [__LINUX_KERNEL_VERSION >= 0x030300] (__ASSUME_ACCEPT4): Change to
19216         __ASSUME_ACCEPT4_SYSCALL.
19217         * sysdeps/unix/sysv/linux/internal_accept4.S [__ASSUME_SOCKETCALL
19218         && !__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL &&
19219         !__ASSUME_ACCEPT4_SYSCALL] (__NR_accept4): Undefine.
19220         [__ASSUME_ACCEPT4]: Change condition to
19221         [__ASSUME_ACCEPT4_SOCKETCALL].
19222         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
19223         (__ASSUME_SOCKETCALL): Define.
19224         [__LINUX_KERNEL_VERSION >= 0x02061c] (__ASSUME_ACCEPT4): Remove.
19225         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
19226         (__ASSUME_SOCKETCALL): Define.
19227         (__ASSUME_ACCEPT4): Remove.
19228         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_ACCEPT4_SYSCALL):
19229         Define.
19230         * sysdeps/unix/sysv/linux/mips/kernel-features.h
19231         [__LINUX_KERNEL_VERSION >= 0x02061f] (__ASSUME_ACCEPT4_SYSCALL):
19232         Likewise.
19233         * sysdeps/unix/sysv/linux/tile/kernel-features.h
19234         (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.
19236         * sysdeps/unix/sysv/linux/arm/bits/hwcap.h (HWCAP_ARM_VFPD32): New
19237         macro.
19238         (HWCAP_ARM_LPAE): Likewise.
19239         (HWCAP_ARM_EVTSTRM): Likewise.
19240         * sysdeps/unix/sysv/linux/arm/dl-procinfo.c (_dl_arm_cap_flags):
19241         Add vpfd32, lpae and evtstrm.
19242         * sysdeps/unix/sysv/linux/arm/dl-procinfo.h (_DL_HWCAP_COUNT):
19243         Increase to 22.
19245 2014-02-19  Joseph Myers  <joseph@codesourcery.com>
19247         * math/auto-libm-test-in: Add tests of clog10.
19248         * math/auto-libm-test-out: Regenerated.
19249         * math/libm-test.inc (clog10_test_data): Use AUTO_TESTS_c_c.
19250         * sysdeps/i386/fpu/libm-test-ulps: Update.
19251         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
19253 2014-02-18  Andreas Schwab  <schwab@suse.de>
19255         [BZ #16574]
19256         * resolv/res_send.c (send_vc): Add parameter ansp2_malloced.
19257         Store non-zero if the second buffer was newly allocated.
19258         (send_dg): Likewise.
19259         (__libc_res_nsend): Add parameter ansp2_malloced and pass it down
19260         to send_vc and send_dg.
19261         (res_nsend): Pass NULL for ansp2_malloced.
19262         * resolv/res_query.c (__libc_res_nquery): Add parameter
19263         answerp2_malloced and pass it down to __libc_res_nsend.
19264         (res_nquery): Pass additional NULL to __libc_res_nquery.
19265         (__libc_res_nsearch): Add parameter answerp2_malloced and pass it
19266         down to __libc_res_nquery and __libc_res_nquerydomain.  Deallocate
19267         second answer buffer if answerp2_malloced was set.
19268         (res_nsearch): Pass additional NULL to __libc_res_nsearch.
19269         (__libc_res_nquerydomain): Add parameter
19270         answerp2_malloced and pass it down to __libc_res_nquery.
19271         (res_nquerydomain): Pass additional NULL to
19272         __libc_res_nquerydomain.
19273         * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyname_r): Pass
19274         additional NULL to __libc_res_nsend and __libc_res_nquery.
19275         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Pass
19276         additional NULL to __libc_res_nsearch.
19277         (_nss_dns_gethostbyname4_r): Revert last change.  Use new
19278         parameter of __libc_res_nsearch to check for separately allocated
19279         second buffer.
19280         (_nss_dns_gethostbyaddr2_r): Pass additional NULL to
19281         __libc_res_nquery.
19282         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Pass
19283         additional NULL to __libc_res_nquery.
19284         * resolv/gethnamaddr.c (gethostbyname2): Pass additional NULL to
19285         __libc_res_nsearch.
19286         (gethostbyaddr): Pass additional NULL to __libc_res_nquery.
19287         * include/resolv.h: Update prototypes of __libc_res_nquery,
19288         __libc_res_nsearch, __libc_res_nsend.
19290 2014-02-18  Joseph Myers  <joseph@codesourcery.com>
19292         * math/auto-libm-test-in: Add tests of fma.
19293         * math/auto-libm-test-out: Regenerated.
19294         * math/libm-test.inc (fma_test_data): Use AUTO_TESTS_fff_f.
19295         (fma_towardzero_test_data): Likewise.
19296         (fma_downward_test_data): Likewise.
19297         (fma_upward_test_data): Likewise.
19298         * math/gen-auto-libm-tests.c (rounding_mode_desc): Add field
19299         mpc_mode.
19300         (rounding_modes): Add values for new field.
19301         (func_calc_method): Add value mpfr_fff_f.
19302         (func_calc_desc): Add mpfr_fff_f union field.
19303         (test_function): Add field exact_args.
19304         (FUNC): Add macro argument EXACT_ARGS.
19305         (FUNC_mpfr_f_f): Update call to FUNC.
19306         (FUNC_mpfr_f_f): Likewise.
19307         (FUNC_mpfr_ff_f): Likewise.
19308         (FUNC_mpfr_if_f): Likewise.
19309         (FUNC_mpc_c_f): Likewise.
19310         (FUNC_mpc_c_c): Likewise.
19311         (test_functions): Add fma.  Update calls to FUNC.
19312         (handle_input_arg): Add argument exact_args.
19313         (add_test): Update call to handle_input_arg.
19314         (calc_generic_results): Add argument mode.  Handle mpfr_fff_f.
19315         (output_for_one_input_case): Update call to calc_generic_results.
19316         Recalculate exact zero results in each rounding mode.
19318         * math/gen-auto-libm-tests.c (adjust_real): Ensure integers are
19319         non-negative before setting low bit.
19320         * math/auto-libm-test-in: Mark one asin test possibly having
19321         spurious underflow.
19322         * math/auto-libm-test-out: Regenerated.
19323         * sysdeps/i386/fpu/libm-test-ulps: Update.
19324         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
19326 2014-02-17  David Holsgrove <david.holsgrove@xilinx.com>
19328         * sysdeps/microblaze: Move directory from ports/sysdeps/microblaze.
19329         * sysdeps/unix/sysv/linux/microblaze: Move directory from
19330         ports/sysdeps/unix/sysv/linux/microblaze.
19331         * README: Add missing listing for microblaze*-*-linux-gnu.
19333 2014-02-16  Ondřej Bílka  <neleai@seznam.cz>
19335         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname4_r): Remove
19336         duplicate code
19338 2014-02-16  Mike Frysinger  <vapier@gentoo.org>
19340         * sysdeps/ia64: Move directory from ports/sysdeps/ia64.
19341         * sysdeps/unix/sysv/linux/ia64: Move directory from
19342         ports/sysdeps/unix/sysv/linux/ia64.
19343         * README: Update listing for ia64-*-linux-gnu.
19345 2014-02-14  Tomas Dohnalek  <tdohnale@redhat.com>
19346             Joseph Myers  <joseph@codesourcery.com>
19348         * Makeconfig (test-name): New variable.
19349         (evaluate-test): Likewise.
19350         * Makerules (do-test-clean): Remove .test-result files.
19351         (common-mostlyclean): Likewise.
19352         * Rules ($(objpfx)%.out): Use $(evaluate-test) in both rules.
19353         * scripts/evaluate-test.sh: New file.
19355 2014-02-14  Joseph Myers  <joseph@codesourcery.com>
19357         * libio/Makefile ($(objpfx)tst-fopenloc.check): Split into
19358         separate $(objpfx)tst-fopenloc-cmp.out and
19359         $(objpfx)tst-fopenloc-mem.out targets.
19360         (tests): Update dependencies.
19361         * posix/Makefile (tests variable): Add tst-rxspencer-no-utf8.
19362         (generated): Change tst-rxspencer-mem and tst-rxspencer.mtrace to
19363         tst-rxspencer-no-utf8-mem and tst-rxspencer-no-utf8.mtrace.
19364         (tst-rxspencer-no-utf8-ARGS): New variable.
19365         (tst-rxspencer-no-utf8-ENV): Likewise.
19366         (tests target): Depend on $(objpfx)tst-rxspencer-no-utf8-mem
19367         instead of $(objpfx)tst-rxspencer-mem.
19368         ($(objpfx)tst-rxspencer-mem): Change target to
19369         $(objpfx)tst-rxspencer-no-utf8-mem.  Depend on
19370         $(objpfx)tst-rxspencer-no-utf8.out instead of running test program.
19371         * posix/tst-rxspencer-no-utf8.c: New file.
19373         * elf/Makefile ($(objpfx)order.out): Remove rule.
19374         [$(run-built-tests) = yes] (tests): Depend on
19375         $(objpfx)order-cmp.out.
19376         ($(objpfx)order-cmp.out): New rule.
19377         [$(run-built-tests) = yes] (tests): Depend on
19378         $(objpfx)tst-array1-cmp.out, $(objpfx)tst-array1-static-cmp.out,
19379         $(objpfx)tst-array2-cmp.out, $(objpfx)tst-array3-cmp.out,
19380         $(objpfx)tst-array4-cmp.out, $(objpfx)tst-array5-cmp.out and
19381         $(objpfx)tst-array5-static-cmp.out.
19382         ($(objpfx)tst-array1.out): Remove rule.
19383         ($(objpfx)tst-array1-cmp.out): New rule.
19384         ($(objpfx)tst-array1-static.out): Remove rule.
19385         ($(objpfx)tst-array1-static-cmp.out): New rule.
19386         ($(objpfx)tst-array2.out): Remove rule.
19387         ($(objpfx)tst-array2-cmp.out): New rule.
19388         ($(objpfx)tst-array3.out): Remove rule.
19389         ($(objpfx)tst-array3-cmp.out): New rule.
19390         ($(objpfx)tst-array4.out): Remove rule.
19391         ($(objpfx)tst-array4-cmp.out): New rule.
19392         ($(objpfx)tst-array5.out): Remove rule.
19393         ($(objpfx)tst-array5-cmp.out): New rule.
19394         ($(objpfx)tst-array5-static.out): Remove rule.
19395         ($(objpfx)tst-array5-static-cmp.out): New rule.
19396         [$(run-built-tests) = yes] (tests): Depend on
19397         $(objpfx)order2-cmp.out.
19398         ($(objpfx)order2.out): Remove rule.
19399         ($(objpfx)order2-cmp.out): New rule.
19400         ($(objpfx)tst-initorder.out): Remove rule.
19401         [$(run-built-tests) = yes] (tests): Depend on
19402         $(objpfx)tst-initorder-cmp.out.
19403         ($(objpfx)tst-initorder-cmp.out): New rule.
19404         ($(objpfx)tst-initorder2.out): Remove rule.
19405         [$(run-built-tests) = yes] (tests): Depend on
19406         $(objpfx)tst-initorder2-cmp.out.
19407         ($(objpfx)tst-initorder2-cmp.out): New rule.
19408         [$(run-built-tests) = yes] (tests): Depend on
19409         $(objpfx)tst-unused-dep-cmp.out.
19410         ($(objpfx)tst-unused-dep-cmp.out): Do not run cmp.
19411         ($(objpfx)tst-unused-dep-cmp.out): New rule.
19412         * stdio-common/Makefile [$(run-built-tests) = yes] (tests): Depend
19413         on $(objpfx)tst-setvbuf1-cmp.out.
19414         ($(objpfx)tst-setvbuf1.out): Do not run cmp.
19415         ($(objpfx)tst-setvbuf1-cmp.out): New rule.
19416         * string/Makefile [$(run-built-tests) = yes] (tests): Depend
19417         $(objpfx)tst-svc-cmp.out instead of $(objpfx)tst-svc.out.
19418         ($(objpfx)tst-svc.out): Remove rule.
19419         ($(objpfx)tst-svc-cmp.out): New rule.
19421 2014-02-13  Joseph Myers  <joseph@codesourcery.com>
19423         * bits/mman.h [__USE_MISC]: Remove redundant conditionals.
19424         * ctype/ctype.h [__USE_MISC]: Likewise.
19425         * dirent/dirent.h [__USE_MISC]: Likewise.
19426         * grp/grp.h [__USE_MISC]: Likewise.
19427         * io/fcntl.h [__USE_MISC]: Likewise.
19428         * io/sys/stat.h [__USE_MISC]: Likewise.
19429         * libio/stdio.h [__USE_MISC]: Likewise.
19430         * posix/unistd.h [__USE_MISC]: Likewise.
19431         * pwd/pwd.h [__USE_MISC]: Likewise.
19432         * stdlib.h [__USE_MISC]: Likewise.
19433         * string/bits/string2.h [__USE_MISC]: Likewise.
19434         * string/string.h [__USE_MISC]: Likewise.
19435         * time/time.h [__USE_MISC]: Likewise.
19437 2014-02-13  Andreas Schwab  <schwab@suse.de>
19439         [BZ #16574]
19440         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname4_r): Free the
19441         second answer buffer if it was separately allocated.
19443 2014-02-12  Joseph Myers  <joseph@codesourcery.com>
19445         * sysdeps/mips/math-tests.h: Include <features.h>.
19446         [!__mips_soft_float && _MIPS_SIM != _ABIO32 && __GNUC_PREREQ (4, 9)]
19447         (ROUNDING_TESTS_long_double): Do not define.
19448         [!__mips_soft_float && _MIPS_SIM != _ABIO32 && __GNUC_PREREQ (4, 9)]
19449         (EXCEPTION_TESTS_long_double): Likewise.
19450         * sysdeps/mips/mips64/libm-test-ulps: Update.
19452         * include/features.h (__USE_BSD): Remove macro definitions.
19453         (__USE_SVID): Likewise.
19454         (_BSD_SOURCE): Likewise.
19455         (_SVID_SOURCE): Likewise.
19456         [!defined _BSD_SOURCE && !defined _SVID_SOURCE]: Remove condition
19457         from definition of _DEFAULT_SOURCE.
19458         [_BSD_SOURCE || _SVID_SOURCE]: Change condition to
19459         [_DEFAULT_SOURCE].
19460         * bits/fcntl.h [__USE_BSD]: Change condition to [__USE_MISC].
19461         * bits/mman.h [__USE_BSD]: Likewise.
19462         * bits/termios.h [__USE_BSD]: Likewise.
19463         * bits/waitstatus.h [__USE_BSD]: Likewise.
19464         * ctype/ctype.h [__USE_SVID]: Likewise.
19465         * dirent/dirent.h [__USE_BSD]: Likewise.
19466         * grp/grp.h [__USE_SVID]: Likewise.
19467         [__USE_BSD]: Likewise.
19468         * inet/netinet/igmp.h [__USE_BSD]: Likewise.
19469         * io/fcntl.h [__USE_BSD]: Likewise.
19470         * io/ftw.h [__USE_BSD]: Likewise.
19471         * io/sys/stat.h [__USE_BSD]: Likewise.
19472         * libio/bits/stdio-ldbl.h [__USE_BSD]: Likewise.
19473         * libio/bits/stdio2.h [__USE_BSD]: Likewise.
19474         * libio/stdio.h [__USE_SVID]: Likewise.
19475         [__USE_BSD]: Likewise.
19476         * math/math.h [__USE_SVID]: Likewise.
19477         [__USE_BSD]: Likewise.
19478         * misc/bits/syslog-ldbl.h [__USE_BSD]: Likewise.
19479         * misc/bits/syslog.h [__USE_BSD]: Likewise.
19480         * misc/search.h [__USE_SVID]: Likewise.
19481         * misc/sys/mman.h [__USE_BSD]: Likewise.
19482         * misc/sys/syslog.h [__USE_BSD]: Likewise.
19483         * misc/sys/uio.h [__USE_BSD]: Likewise.
19484         * posix/bits/unistd.h [__USE_BSD]: Likewise.
19485         * posix/glob.h [__USE_BSD]: Likewise.
19486         * posix/regex.h [__USE_BSD]: Likewise.
19487         * posix/sys/types.h [__USE_BSD]: Likewise.
19488         [__USE_SVID]: Likewise.
19489         * posix/sys/utsname.h [__USE_SVID]: Likewise.
19490         * posix/sys/wait.h [__USE_BSD]: Likewise.
19491         [__USE_SVID]: Likewise.
19492         * posix/unistd.h [__USE_BSD]: Likewise.
19493         [__USE_SVID]: Likewise.
19494         * pwd/pwd.h [__USE_SVID]: Likewise.
19495         * resolv/netdb.h [__USE_BSD]: Likewise.
19496         * setjmp/setjmp.h [__USE_BSD]: Likewise.
19497         * signal/signal.h [__USE_BSD]: Likewise.
19498         [__USE_SVID]: Likewise.
19499         * socket/sys/socket.h [__USE_BSD]: Likewise.
19500         * stdlib/fmtmsg.h [__USE_SVID]: Likewise.
19501         * stdlib/stdlib.h [__USE_BSD]: Likewise.
19502         [__USE_SVID]: Likewise.
19503         * string/bits/string2.h [__USE_BSD]: Likewise.
19504         [__USE_SVID]: Likewise.
19505         * string/bits/string3.h [__USE_BSD]: Likewise.
19506         * string/endian.h [__USE_BSD]: Likewise.
19507         * string/string.h [__USE_SVID]: Likewise.
19508         [__USE_BSD]: Likewise.
19509         * string/strings.h [__USE_BSD]: Likewise.
19510         * sysdeps/generic/netinet/ip.h [__USE_BSD]: Likewise.
19511         * sysdeps/gnu/netinet/ip_icmp.h [__USE_BSD]: Likewise.
19512         * sysdeps/mach/hurd/bits/fcntl.h [__USE_BSD]: Likewise.
19513         * sysdeps/mach/hurd/bits/stat.h [__USE_BSD]: Likewise.
19514         * sysdeps/unix/sysv/linux/alpha/bits/mman.h [__USE_BSD]: Likewise.
19515         * sysdeps/unix/sysv/linux/alpha/bits/termios.h [__USE_BSD]:
19516         Likewise.
19517         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_BSD]:
19518         Likewise.
19519         * sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_BSD]: Likewise.
19520         * sysdeps/unix/sysv/linux/bits/sys_errlist.h [__USE_BSD]:
19521         Likewise.
19522         * sysdeps/unix/sysv/linux/bits/termios.h [__USE_BSD]: Likewise.
19523         * sysdeps/unix/sysv/linux/mips/bits/termios.h [__USE_BSD]:
19524         Likewise.
19525         * sysdeps/unix/sysv/linux/netinet/if_ether.h [__USE_BSD]:
19526         Likewise.
19527         * sysdeps/unix/sysv/linux/netinet/if_fddi.h [__USE_BSD]: Likewise.
19528         * sysdeps/unix/sysv/linux/netinet/if_tr.h [__USE_BSD]: Likewise.
19529         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_BSD]:
19530         Likewise.
19531         * sysdeps/unix/sysv/linux/sparc/bits/termios.h [__USE_BSD]:
19532         Likewise.
19533         * sysdeps/x86/bits/string.h [__USE_BSD]: Likewise.
19534         * sysvipc/sys/ipc.h [__USE_SVID]: Likewise.
19535         * termios/termios.h [__USE_BSD]: Likewise.
19536         * time/sys/time.h [__USE_BSD]: Likewise.
19537         * time/time.h [__USE_BSD]: Likewise.
19538         [__USE_SVID]: Likewise.
19540         * Makefile (subdir_targets): Remove subdir_lint.out.
19542         * stdio-common/Makefile (do-tst-unbputc): Remove target.
19543         (do-tst-printf): Likewise.
19544         (tests): Depend directly on $(objpfx)tst-unbputc.out and
19545         $(objpfx)tst-printf.out.
19547         * io/ftwtest-sh (testout): Change to $tmp/ftwtest-tmp.out.
19549         * Makerules (check-abi-%): Change target to
19550         $(objpfx)check-abi-%.out.
19551         (check-abi target): Update dependencies.
19552         (check-abi-pattern variable): Redirect output of diff to $@.
19553         (check-abi variable): Likewise.
19554         * elf/Makefile (check-abi): Update dependencies.
19556         * soft-fp/op-common.h (_FP_DECL): Mark exponent as possibly
19557         unused.
19558         (_FP_PACK_SEMIRAW): Determine tininess based on rounding shifted
19559         value if _FP_TININESS_AFTER_ROUNDING and unrounded value is in
19560         subnormal range.
19561         (_FP_PACK_CANONICAL): Determine tininess based on rounding to
19562         normal precision if _FP_TININESS_AFTER_ROUNDING and unrounded
19563         value has largest subnormal exponent.
19564         * soft-fp/soft-fp.h [FP_NO_EXCEPTIONS]
19565         (_FP_TININESS_AFTER_ROUNDING): Undefine and redefine to 0.
19566         * sysdeps/aarch64/soft-fp/sfp-machine.h
19567         (_FP_TININESS_AFTER_ROUNDING): New macro.
19568         * sysdeps/alpha/soft-fp/sfp-machine.h
19569         (_FP_TININESS_AFTER_ROUNDING): Likewise.
19570         * sysdeps/arm/soft-fp/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
19571         Likewise.
19572         * sysdeps/mips/mips64/soft-fp/sfp-machine.h
19573         (_FP_TININESS_AFTER_ROUNDING): Likewise.
19574         * sysdeps/mips/soft-fp/sfp-machine.h
19575         (_FP_TININESS_AFTER_ROUNDING): Likewise.
19576         * sysdeps/powerpc/soft-fp/sfp-machine.h
19577         (_FP_TININESS_AFTER_ROUNDING): Likewise.
19578         * sysdeps/sh/soft-fp/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
19579         Likewise.
19580         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h
19581         (_FP_TININESS_AFTER_ROUNDING): Likewise.
19582         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h
19583         (_FP_TININESS_AFTER_ROUNDING): Likewise.
19584         * sysdeps/tile/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
19585         Likewise.
19587 2014-02-12  Dylan Alex Simon  <dylan@dylex.net>
19589         [BZ #16545]
19590         * sysdeps/x86_64/fpu/libm-test-ulps: Update on AMD family 21h
19591         model 1.
19593 2014-02-12  Richard Henderson  <rth@redhat.com>
19595         * sysdeps/alpha: Move directory from ports/sysdeps/alpha.
19596         * sysdeps/unix/alpha: Move directory from ports/sysdeps/unix/alpha.
19597         * sysdeps/unix/sysv/linux/alpha: Move directory from
19598         ports/sysdeps/unix/sysv/linux/alpha.
19599         * README: Update listing for alpha-*-linux-gnu.
19601 2014-02-11  Joseph Myers  <joseph@codesourcery.com>
19603         * include/features.h: Update comment documenting feature test
19604         macros.
19605         [_BSD_SOURCE || _SVID_SOURCE]: Give #warning.  Define
19606         _DEFAULT_SOURCE.
19607         * manual/creature.texi (_BSD_SOURCE): Remove documentation.
19608         (_SVID_SOURCE): Likewise.
19609         (_DEFAULT_SOURCE): Update description of default features.
19610         (Feature Test Macros): Don't mention _SVID_SOURCE in conjunction
19611         with _GNU_SOURCE.
19612         * manual/filesys.texi (__ftw_func_t): Do not refer to _BSD_SOURCE.
19613         (S_ISVTX): Likewise.
19614         * manual/math.texi (Mathematical Constants): Likewise.
19615         * manual/signal.texi (Interrupted Primitives): Likewise.
19616         * manual/startup.texi (putenv): Do not refer to _SVID_SOURCE.
19617         * math/test-matherr.c (_SVID_SOURCE): Do not define.
19618         * sysvipc/sys/ipc.h [__USE_SVID && !__USE_XOPEN && __GNUC__ >= 2]:
19619         Don't refer to _SVID_SOURCE in warning text.
19621         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
19623         * elf/dl-lookup.c (ELF_MACHINE_SYM_NO_MATCH): Define if not
19624         already defined.
19625         (do_lookup_x): Use ELF_MACHINE_SYM_NO_MATCH.
19626         * sysdeps/mips/dl-lookup.c: Remove.
19627         * sysdeps/mips/dl-machine.h (ELF_MACHINE_SYM_NO_MATCH): New macro.
19629 2014-02-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
19631         [BZ #16447]
19632         * math/auto-libm-test-in: Add testcase for expl.
19633         * math/auto-libm-test-out: Regenerate.
19634         * sysdeps/ieee754/ldbl-128/e_expl.c (__ieee754_expl): Fix
19635         calculation of unsafe.
19636         * sysdeps/s390/fpu/libm-test-ulps: Adjust ULPs for added testcase.
19638 2014-02-11  Marcus Shawcroft  <marcus.shawcroft@arm.com>
19640         * sysdeps/aarch64: Move directory from ports/sysdeps/aarch64.
19641         * sysdeps/unix/sysv/linux/aarch64: Move directory from
19642         ports/sysdeps/unix/sysv/linux/aarch64.
19643         * README: Update listing for aarch64*-*-linux-gnu.
19645 2014-02-11  Will Newton  <will.newton@linaro.org>
19647         * manual/probes.texi (Mathematical Function Probes): Use
19648         "triggered" instead of "hit".
19650         * manual/probes.texi (Internal Probes): Add documentation
19651         of setjmp, longjmp and longjmp_target probes.
19653         * include/stap-probe.h: Add comment about probe argument
19654         format.
19656         * malloc/mtrace.c (attribute_hidden): Remove unused macro
19657         definition.  (tr_where, tr_freehook, tr_mallochook,
19658         tr_reallochook, tr_memalignhook): Use ANSI protoype.
19660 2014-02-11  David S. Miller  <davem@davemloft.net>
19662         * stdio-common/tst-sscanf.c (main): Use 'long' for 'dummy' when
19663         processing int_tests.
19665 2014-02-10  Joseph Myers  <joseph@codesourcery.com>
19667         * sysdeps/mips: Move directory from ports/sysdeps/mips.
19668         * sysdeps/unix/mips: Move directory from ports/sysdeps/unix/mips.
19669         * sysdeps/unix/sysv/linux/mips: Move directory from
19670         ports/sysdeps/unix/sysv/linux/mips.
19671         * README: Update listing for mips-*-linux-gnu and
19672         mips64-*-linux-gnu.
19674 2014-02-10  Andreas Schwab  <schwab@linux-m68k.org>
19676         * sysdeps/m68k: Move directory from ports/sysdeps/m68k.
19677         * sysdeps/unix/sysv/linux/m68k: Move directory from
19678         ports/sysdeps/unix/sysv/linux/m68k.
19679         * README: Update listing for m68k-*-linux-gnu.
19681 2014-02-10  Chris Metcalf  <cmetcalf@tilera.com>
19683         * sysdeps/tile: Move directory from ports/sysdeps/tile.
19684         * sysdeps/unix/sysv/linux/generic: Move directory from
19685         ports/sysdeps/unix/sysv/linux/generic.
19686         * sysdeps/unix/sysv/linux/tile: Move directory from
19687         ports/sysdeps/unix/sysv/linux/tile.
19688         * README: Update listing for tile*-*-linux-gnu.
19690 2014-02-10  Ondřej Bílka  <neleai@seznam.cz>
19692         * assert/assert.c (__assert_fail_base): Use glibc_likely instead
19693         __builtin_expect.
19694         * benchtests/bench-memmem.c (simple_memmem): Likewise.
19695         * catgets/open_catalog.c (__open_catalog): Likewise.
19696         * csu/libc-start.c (LIBC_START_MAIN): Likewise.
19697         * debug/confstr_chk.c: Likewise.
19698         * debug/fread_chk.c (__fread_chk): Likewise.
19699         * debug/fread_u_chk.c (__fread_unlocked_chk): Likewise.
19700         * debug/getgroups_chk.c: Likewise.
19701         * debug/mbsnrtowcs_chk.c: Likewise.
19702         * debug/mbsrtowcs_chk.c: Likewise.
19703         * debug/mbstowcs_chk.c: Likewise.
19704         * debug/memcpy_chk.c: Likewise.
19705         * debug/memmove_chk.c: Likewise.
19706         * debug/mempcpy_chk.c: Likewise.
19707         * debug/memset_chk.c: Likewise.
19708         * debug/stpcpy_chk.c (__stpcpy_chk): Likewise.
19709         * debug/strcat_chk.c (__strcat_chk): Likewise.
19710         * debug/strcpy_chk.c (__strcpy_chk): Likewise.
19711         * debug/strncat_chk.c (__strncat_chk): Likewise.
19712         * debug/vsnprintf_chk.c (___vsnprintf_chk): Likewise.
19713         * debug/vswprintf_chk.c (__vswprintf_chk): Likewise.
19714         * debug/wcpcpy_chk.c (__wcpcpy_chk): Likewise.
19715         * debug/wcpncpy_chk.c: Likewise.
19716         * debug/wcscat_chk.c (__wcscat_chk): Likewise.
19717         * debug/wcscpy_chk.c (__wcscpy_chk): Likewise.
19718         * debug/wcsncat_chk.c (__wcsncat_chk): Likewise.
19719         * debug/wcsncpy_chk.c: Likewise.
19720         * debug/wcsnrtombs_chk.c: Likewise.
19721         * debug/wcsrtombs_chk.c: Likewise.
19722         * debug/wcstombs_chk.c: Likewise.
19723         * debug/wmemcpy_chk.c: Likewise.
19724         * debug/wmemmove_chk.c: Likewise.
19725         * debug/wmempcpy_chk.c: Likewise.
19726         * debug/wmemset_chk.c: Likewise.
19727         * dirent/scandirat.c (SCANDIRAT): Likewise.
19728         * dlfcn/dladdr1.c (dladdr1): Likewise.
19729         * dlfcn/dladdr.c (dladdr): Likewise.
19730         * dlfcn/dlclose.c (dlclose_doit): Likewise.
19731         * dlfcn/dlerror.c (__dlerror): Likewise.
19732         * dlfcn/dlinfo.c (dlinfo_doit): Likewise.
19733         * dlfcn/dlmopen.c (dlmopen_doit): Likewise.
19734         * dlfcn/dlopen.c (dlopen_doit): Likewise.
19735         * dlfcn/dlopenold.c (__dlopen_nocheck): Likewise.
19736         * dlfcn/dlsym.c (dlsym_doit): Likewise.
19737         * dlfcn/dlvsym.c (dlvsym_doit): Likewise.
19738         * elf/dl-cache.c (_dl_load_cache_lookup): Likewise.
19739         * elf/dl-close.c (remove_slotinfo, _dl_close_worker, _dl_close):
19740         Likewise.
19741         * elf/dl-conflict.c: Likewise.
19742         * elf/dl-deps.c (_dl_build_local_scope, _dl_map_object_deps): Likewise.
19743         * elf/dl-dst.h: Likewise.
19744         * elf/dl-fini.c (_dl_sort_fini, _dl_fini): Likewise.
19745         * elf/dl-fptr.c (_dl_make_fptr): Likewise.
19746         * elf/dl-hwcaps.c (_dl_important_hwcaps): Likewise.
19747         * elf/dl-init.c (call_init, _dl_init): Likewise.
19748         * elf/dl-libc.c (__libc_dlopen_mode, __libc_dlsym): Likewise.
19749         * elf/dl-load.c (_dl_dst_substitute, fillin_rpath, _dl_init_paths)
19750         (_dl_map_object_from_fd, open_verify, open_path, _dl_map_object):
19751         Likewise.
19752         * elf/dl-lookup.c (do_lookup_x, add_dependency, _dl_lookup_symbol_x):
19753         Likewise.
19754         * elf/dl-minimal.c (__libc_memalign): Likewise.
19755         * elf/dl-open.c (add_to_global, dl_open_worker, _dl_open): Likewise.
19756         * elf/dl-reloc.c (_dl_relocate_object): Likewise.
19757         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Likewise.
19758         * elf/dl-sym.c (do_sym): Likewise.
19759         * elf/dl-tls.c (tls_get_addr_tail, update_get_addr)
19760         (__tls_get_addr, _dl_tls_get_addr_soft): Likewise.
19761         * elf/dl-version.c (match_symbol, _dl_check_map_versions): Likewise.
19762         * elf/dl-writev.h (_dl_writev): Likewise.
19763         * elf/ldconfig.c (search_dir): Likewise.
19764         * elf/rtld.c (_dl_start_final, _dl_start, init_tls, do_preload)
19765         (dl_main): Likewise.
19766         * elf/setup-vdso.h (setup_vdso): Likewise.
19767         * grp/compat-initgroups.c (compat_call): Likewise.
19768         * grp/fgetgrent.c (fgetgrent): Likewise.
19769         * grp/initgroups.c (getgrouplist, initgroups): Likewise.
19770         * grp/putgrent.c (putgrent): Likewise.
19771         * hesiod/nss_hesiod/hesiod-grp.c (_nss_hesiod_initgroups_dyn):
19772         Likewise.
19773         * hurd/hurdinit.c: Likewise.
19774         * iconvdata/8bit-gap.c (struct): Likewise.
19775         * iconvdata/ansi_x3.110.c : Likewise.
19776         * iconvdata/big5.c : Likewise.
19777         * iconvdata/big5hkscs.c : Likewise.
19778         * iconvdata/cp1255.c: Likewise.
19779         * iconvdata/cp1258.c : Likewise.
19780         * iconvdata/cp932.c : Likewise.
19781         * iconvdata/euc-cn.c: Likewise.
19782         * iconvdata/euc-jisx0213.c : Likewise.
19783         * iconvdata/euc-jp.c: Likewise.
19784         * iconvdata/euc-jp-ms.c : Likewise.
19785         * iconvdata/euc-kr.c (euckr_from_ucs4): Likewise.
19786         * iconvdata/gb18030.c : Likewise.
19787         * iconvdata/gbbig5.c (const): Likewise.
19788         * iconvdata/gbgbk.c: Likewise.
19789         * iconvdata/gbk.c : Likewise.
19790         * iconvdata/ibm1364.c : Likewise.
19791         * iconvdata/ibm930.c : Likewise.
19792         * iconvdata/ibm932.c: Likewise.
19793         * iconvdata/ibm933.c : Likewise.
19794         * iconvdata/ibm935.c : Likewise.
19795         * iconvdata/ibm937.c : Likewise.
19796         * iconvdata/ibm939.c : Likewise.
19797         * iconvdata/ibm943.c: Likewise.
19798         * iconvdata/iso_11548-1.c: Likewise.
19799         * iconvdata/iso-2022-cn.c : Likewise.
19800         * iconvdata/iso-2022-cn-ext.c : Likewise.
19801         * iconvdata/iso-2022-jp-3.c: Likewise.
19802         * iconvdata/iso-2022-jp.c (gconv_end): Likewise.
19803         * iconvdata/iso-2022-kr.c : Likewise.
19804         * iconvdata/iso646.c (gconv_end): Likewise.
19805         * iconvdata/iso_6937-2.c : Likewise.
19806         * iconvdata/iso_6937.c : Likewise.
19807         * iconvdata/iso8859-1.c: Likewise.
19808         * iconvdata/johab.c (johab_sym_hanja_to_ucs): Likewise.
19809         * iconvdata/shift_jisx0213.c : Likewise.
19810         * iconvdata/sjis.c : Likewise.
19811         * iconvdata/t.61.c : Likewise.
19812         * iconvdata/tcvn5712-1.c : Likewise.
19813         * iconvdata/tscii.c: Likewise.
19814         * iconvdata/uhc.c : Likewise.
19815         * iconvdata/unicode.c (gconv_end): Likewise.
19816         * iconvdata/utf-16.c (gconv_end): Likewise.
19817         * iconvdata/utf-32.c (gconv_end): Likewise.
19818         * iconvdata/utf-7.c (base64): Likewise.
19819         * iconv/gconv_cache.c (__gconv_load_cache): Likewise.
19820         * iconv/gconv_close.c (__gconv_close): Likewise.
19821         * iconv/gconv_open.c (__gconv_open): Likewise.
19822         * iconv/gconv_simple.c (internal_ucs4_loop_single)
19823         (ucs4_internal_loop, ucs4_internal_loop_unaligned)
19824         (ucs4_internal_loop_single, internal_ucs4le_loop_single)
19825         (ucs4le_internal_loop, ucs4le_internal_loop_unaligned)
19826         (ucs4le_internal_loop_single): Likewise.
19827         * iconv/iconv.c (iconv): Likewise.
19828         * iconv/iconv_close.c: Likewise.
19829         * iconv/loop.c (SINGLE): Likewise.
19830         * iconv/skeleton.c (FUNCTION_NAME): Likewise.
19831         * include/atomic.h: Likewise.
19832         * inet/inet6_option.c (option_alloc): Likewise.
19833         * intl/bindtextdom.c (set_binding_values): Likewise.
19834         * intl/dcigettext.c (DCIGETTEXT, _nl_find_msg): Likewise.
19835         * intl/loadmsgcat.c (_nl_load_domain): Likewise.
19836         * intl/localealias.c (read_alias_file): Likewise.
19837         * libio/filedoalloc.c (_IO_file_doallocate): Likewise.
19838         * libio/fileops.c (_IO_file_open, _IO_file_underflow_mmap)
19839         (_IO_new_file_overflow, _IO_file_xsgetn_mmap): Likewise.
19840         * libio/fmemopen.c (fmemopen): Likewise.
19841         * libio/iofgets.c (_IO_fgets): Likewise.
19842         * libio/iofgets_u.c (fgets_unlocked): Likewise.
19843         * libio/iofgetws.c (fgetws): Likewise.
19844         * libio/iofgetws_u.c (fgetws_unlocked): Likewise.
19845         * libio/iogetdelim.c (_IO_getdelim): Likewise.
19846         * libio/wfileops.c (_IO_wfile_underflow, _IO_wfile_underflow_mmap)
19847         (adjust_wide_data, _IO_wfile_seekoff): Likewise.
19848         * locale/findlocale.c (_nl_find_locale): Likewise.
19849         * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
19850         * locale/loadlocale.c (_nl_intern_locale_data, _nl_load_locale):
19851         Likewise.
19852         * locale/setlocale.c (setlocale): Likewise.
19853         * login/programs/pt_chown.c (main): Likewise.
19854         * malloc/arena.c (ptmalloc_init, shrink_heap, arena_get2): Likewise.
19855         * malloc/malloc.c (_int_malloc, _int_free): Likewise.
19856         * malloc/memusage.c (update_data, malloc, realloc, calloc, free)
19857         (mmap, mmap64, mremap, munmap): Likewise.
19858         * math/e_exp2l.c: Likewise.
19859         * math/e_scalb.c (invalid_fn, __ieee754_scalb): Likewise.
19860         * math/e_scalbf.c (invalid_fn, __ieee754_scalbf): Likewise.
19861         * math/e_scalbl.c (invalid_fn, __ieee754_scalbl): Likewise.
19862         * math/s_catan.c (__catan): Likewise.
19863         * math/s_catanf.c (__catanf): Likewise.
19864         * math/s_catanh.c (__catanh): Likewise.
19865         * math/s_catanhf.c (__catanhf): Likewise.
19866         * math/s_catanhl.c (__catanhl): Likewise.
19867         * math/s_catanl.c (__catanl): Likewise.
19868         * math/s_ccosh.c (__ccosh): Likewise.
19869         * math/s_ccoshf.c (__ccoshf): Likewise.
19870         * math/s_ccoshl.c (__ccoshl): Likewise.
19871         * math/s_cexp.c (__cexp): Likewise.
19872         * math/s_cexpf.c (__cexpf): Likewise.
19873         * math/s_cexpl.c (__cexpl): Likewise.
19874         * math/s_clog10.c (__clog10): Likewise.
19875         * math/s_clog10f.c (__clog10f): Likewise.
19876         * math/s_clog10l.c (__clog10l): Likewise.
19877         * math/s_clog.c (__clog): Likewise.
19878         * math/s_clogf.c (__clogf): Likewise.
19879         * math/s_clogl.c (__clogl): Likewise.
19880         * math/s_csin.c (__csin): Likewise.
19881         * math/s_csinf.c (__csinf): Likewise.
19882         * math/s_csinh.c (__csinh): Likewise.
19883         * math/s_csinhf.c (__csinhf): Likewise.
19884         * math/s_csinhl.c (__csinhl): Likewise.
19885         * math/s_csinl.c (__csinl): Likewise.
19886         * math/s_csqrt.c (__csqrt): Likewise.
19887         * math/s_csqrtf.c (__csqrtf): Likewise.
19888         * math/s_csqrtl.c (__csqrtl): Likewise.
19889         * math/s_ctan.c (__ctan): Likewise.
19890         * math/s_ctanf.c (__ctanf): Likewise.
19891         * math/s_ctanh.c (__ctanh): Likewise.
19892         * math/s_ctanhf.c (__ctanhf): Likewise.
19893         * math/s_ctanhl.c (__ctanhl): Likewise.
19894         * math/s_ctanl.c (__ctanl): Likewise.
19895         * math/w_pow.c: Likewise.
19896         * math/w_powf.c: Likewise.
19897         * math/w_powl.c: Likewise.
19898         * math/w_scalb.c (sysv_scalb): Likewise.
19899         * math/w_scalbf.c (sysv_scalbf): Likewise.
19900         * math/w_scalbl.c (sysv_scalbl): Likewise.
19901         * misc/error.c (error_tail): Likewise.
19902         * misc/pselect.c (__pselect): Likewise.
19903         * nis/nis_callback.c (__nis_create_callback): Likewise.
19904         * nis/nis_call.c (__nisfind_server): Likewise.
19905         * nis/nis_creategroup.c (nis_creategroup): Likewise.
19906         * nis/nis_domain_of_r.c (nis_domain_of_r): Likewise.
19907         * nis/nis_findserv.c (__nis_findfastest_with_timeout): Likewise.
19908         * nis/nis_getservlist.c (nis_getservlist): Likewise.
19909         * nis/nis_lookup.c (nis_lookup): Likewise.
19910         * nis/nis_subr.c (nis_leaf_of_r, nis_getnames): Likewise.
19911         * nis/nis_table.c (__create_ib_request, nis_list, nis_add_entry)
19912         (nis_modify_entry, nis_first_entry, nis_next_entry): Likewise.
19913         * nis/nis_xdr.c (xdr_endpoint): Likewise.
19914         * nis/nss_compat/compat-grp.c (getgrent_next_file)
19915         (internal_getgrnam_r, internal_getgrgid_r): Likewise.
19916         * nis/nss_compat/compat-initgroups.c (add_group)
19917         (internal_getgrent_r): Likewise.
19918         * nis/nss_compat/compat-pwd.c (getpwent_next_file)
19919         (internal_getpwnam_r, internal_getpwuid_r): Likewise.
19920         * nis/nss_compat/compat-spwd.c (getspent_next_file)
19921         (internal_getspnam_r): Likewise.
19922         * nis/nss_nis/nis-alias.c (internal_nis_getaliasent_r)
19923         (_nss_nis_getaliasbyname_r): Likewise.
19924         * nis/nss_nis/nis-ethers.c (_nss_nis_gethostton_r)
19925         (_nss_nis_getntohost_r): Likewise.
19926         * nis/nss_nis/nis-grp.c (internal_nis_setgrent)
19927         (internal_nis_getgrent_r, _nss_nis_getgrnam_r)
19928         (_nss_nis_getgrgid_r): Likewise.
19929         * nis/nss_nis/nis-hosts.c (_nss_nis_sethostent)
19930         (internal_nis_gethostent_r, internal_gethostbyname2_r)
19931         (_nss_nis_gethostbyname_r, _nss_nis_gethostbyaddr_r)
19932         (_nss_nis_gethostbyname4_r): Likewise.
19933         * nis/nss_nis/nis-initgroups.c (internal_getgrent_r)
19934         (initgroups_netid): Likewise.
19935         * nis/nss_nis/nis-netgrp.c (_nss_nis_setnetgrent): Likewise.
19936         * nis/nss_nis/nis-network.c (internal_nis_getnetent_r)
19937         (_nss_nis_getnetbyname_r, _nss_nis_getnetbyaddr_r): Likewise.
19938         * nis/nss_nis/nis-proto.c (_nss_nis_getprotobyname_r)
19939         (_nss_nis_getprotobynumber_r): Likewise.
19940         * nis/nss_nis/nis-publickey.c (_nss_nis_getpublickey)
19941         (_nss_nis_getsecretkey): Likewise.
19942         * nis/nss_nis/nis-pwd.c (_nis_saveit, internal_nis_setpwent)
19943         (internal_nis_getpwent_r, _nss_nis_getpwnam_r)
19944         (_nss_nis_getpwuid_r): Likewise.
19945         * nis/nss_nis/nis-rpc.c (internal_nis_getrpcent_r)
19946         (_nss_nis_getrpcbyname_r, _nss_nis_getrpcbynumber_r): Likewise.
19947         * nis/nss_nis/nis-service.c (dosearch, internal_nis_getservent_r)
19948         (_nss_nis_getservbyname_r, _nss_nis_getservbyport_r): Likewise.
19949         * nis/nss_nis/nis-spwd.c (_nss_nis_setspent)
19950         (internal_nis_getspent_r, _nss_nis_getspnam_r): Likewise.
19951         * nis/nss_nisplus/nisplus-alias.c (_nss_nisplus_getaliasbyname_r):
19952         Likewise.
19953         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_gethostton_r)
19954         (_nss_nisplus_getntohost_r): Likewise.
19955         * nis/nss_nisplus/nisplus-grp.c (internal_nisplus_getgrent_r)
19956         (_nss_nisplus_getgrnam_r, _nss_nisplus_getgrgid_r): Likewise.
19957         * nis/nss_nisplus/nisplus-hosts.c (internal_gethostbyname2_r)
19958         (_nss_nisplus_gethostbyaddr_r, _nss_nisplus_gethostbyname4_r):
19959         Likewise.
19960         * nis/nss_nisplus/nisplus-initgroups.c
19961         (_nss_nisplus_initgroups_dyn): Likewise.
19962         * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyname_r)
19963         (_nss_nisplus_getnetbyaddr_r): Likewise.
19964         * nis/nss_nisplus/nisplus-proto.c (_nss_nisplus_getprotobyname_r)
19965         (_nss_nisplus_getprotobynumber_r): Likewise.
19966         * nis/nss_nisplus/nisplus-pwd.c (internal_nisplus_getpwent_r)
19967         (_nss_nisplus_getpwnam_r, _nss_nisplus_getpwuid_r): Likewise.
19968         * nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_getrpcbyname_r):
19969         Likewise.
19970         * nis/nss_nisplus/nisplus-service.c
19971         (internal_nisplus_getservent_r, _nss_nisplus_getservbyname_r)
19972         (_nss_nisplus_getservbyport_r): Likewise.
19973         * nis/nss_nisplus/nisplus-spwd.c (internal_nisplus_getspent_r)
19974         (_nss_nisplus_getspnam_r): Likewise.
19975         * nis/ypclnt.c (__yp_bind, yp_match, yp_all, yp_maplist):
19976         Likewise.
19977         * nscd/aicache.c (addhstaiX): Likewise.
19978         * nscd/cache.c (cache_search, prune_cache): Likewise.
19979         * nscd/connections.c (register_traced_file, send_ro_fd)
19980         (handle_request, nscd_run_prune, nscd_run_worker, fd_ready)
19981         (main_loop_epoll): Likewise.
19982         * nscd/grpcache.c (addgrbyX): Likewise.
19983         * nscd/hstcache.c (addhstbyX): Likewise.
19984         * nscd/initgrcache.c (addinitgroupsX): Likewise.
19985         * nscd/mem.c (gc, mempool_alloc): Likewise.
19986         * nscd/netgroupcache.c (do_notfound, addgetnetgrentX)
19987         (addinnetgrX): Likewise.
19988         * nscd/nscd-client.h (__nscd_acquire_maplock)
19989         (__nscd_drop_map_ref): Likewise.
19990         * nscd/nscd_getai.c (__nscd_getai): Likewise.
19991         * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
19992         * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp, nscd_gethst_r):
19993         Likewise.
19994         * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
19995         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
19996         * nscd/nscd_helper.c (__readvall, open_socket, __nscd_get_mapping)
19997         (__nscd_get_map_ref): Likewise.
19998         * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
19999         * nscd/nscd_netgroup.c (__nscd_setnetgrent, __nscd_innetgr):
20000         Likewise.
20001         * nscd/pwdcache.c (addpwbyX): Likewise.
20002         * nscd/selinux.c (preserve_capabilities): Likewise.
20003         * nscd/servicescache.c (addservbyX): Likewise.
20004         * nss/nss_files/files-XXX.c (internal_getent): Likewise.
20005         * posix/fnmatch.c (fnmatch): Likewise.
20006         * posix/getopt.c (_getopt_internal_r): Likewise.
20007         * posix/glob.c (glob, glob_in_dir): Likewise.
20008         * posix/wordexp.c (exec_comm_child): Likewise.
20009         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr2_r)
20010         (getanswer_r, gaih_getanswer_slice): Likewise.
20011         * resolv/nss_dns/dns-network.c (getanswer_r): Likewise.
20012         * resolv/res_init.c: Likewise.
20013         * resolv/res_mkquery.c (res_nmkquery): Likewise.
20014         * resolv/res_query.c (__libc_res_nquery): Likewise.
20015         * resolv/res_send.c (__libc_res_nsend, send_vc, reopen, send_dg):
20016         Likewise.
20017         * stdio-common/_i18n_number.h (_i18n_number_rewrite): Likewise.
20018         * stdio-common/perror.c (perror): Likewise.
20019         * stdio-common/printf_fp.c (___printf_fp): Likewise.
20020         * stdio-common/tmpnam.c (tmpnam): Likewise.
20021         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Likewise.
20022         * stdlib/cxa_finalize.c (__cxa_finalize): Likewise.
20023         * stdlib/cxa_thread_atexit_impl.c (__cxa_thread_atexit_impl):
20024         Likewise.
20025         * stdlib/drand48-iter.c (__drand48_iterate): Likewise.
20026         * stdlib/putenv.c (putenv): Likewise.
20027         * stdlib/setenv.c (__add_to_environ): Likewise.
20028         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Likewise.
20029         * stdlib/strtol_l.c (INTERNAL): Likewise.
20030         * string/memmem.c (memmem): Likewise.
20031         * string/strerror.c (strerror): Likewise.
20032         * string/strnlen.c (__strnlen): Likewise.
20033         * string/test-memmem.c (simple_memmem): Likewise.
20034         * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Likewise.
20035         * sunrpc/pm_getport.c (__get_socket): Likewise.
20036         * sysdeps/gnu/unwind-resume.c (init, _Unwind_Resume): Likewise.
20037         * sysdeps/i386/dl-irel.h (elf_irel): Likewise.
20038         * sysdeps/i386/dl-machine.h (elf_machine_runtime_setup)
20039         (elf_machine_rel, elf_machine_lazy_rel, elf_machine_lazy_rela):
20040         Likewise.
20041         * sysdeps/ieee754/dbl-64/e_atanh.c (__ieee754_atanh): Likewise.
20042         * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Likewise.
20043         * sysdeps/ieee754/dbl-64/e_fmod.c (__ieee754_fmod): Likewise.
20044         * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r): Likewise.
20045         * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Likewise.
20046         * sysdeps/ieee754/dbl-64/e_j1.c (__ieee754_j1, __ieee754_y1):
20047         Likewise.
20048         * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn, __ieee754_yn):
20049         Likewise.
20050         * sysdeps/ieee754/dbl-64/e_log10.c (__ieee754_log10): Likewise.
20051         * sysdeps/ieee754/dbl-64/e_log2.c (__ieee754_log2): Likewise.
20052         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
20053         * sysdeps/ieee754/dbl-64/e_sinh.c (__ieee754_sinh): Likewise.
20054         * sysdeps/ieee754/dbl-64/s_asinh.c (__asinh): Likewise.
20055         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Likewise.
20056         * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Likewise.
20057         * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Likewise.
20058         * sysdeps/ieee754/dbl-64/s_modf.c (__modf): Likewise.
20059         * sysdeps/ieee754/dbl-64/s_scalbln.c (__scalbln): Likewise.
20060         * sysdeps/ieee754/dbl-64/s_scalbn.c (__scalbn): Likewise.
20061         * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c (__ieee754_acosh):
20062         Likewise.
20063         * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c (__ieee754_log10):
20064         Likewise.
20065         * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c (__ieee754_log2):
20066         Likewise.
20067         * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c (__frexp): Likewise.
20068         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
20069         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c (__remquo): Likewise.
20070         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c (__round): Likewise.
20071         * sysdeps/ieee754/flt-32/e_atanhf.c (__ieee754_atanhf): Likewise.
20072         * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r): Likewise.
20073         * sysdeps/ieee754/flt-32/s_logbf.c (__logbf): Likewise.
20074         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Likewise.
20075         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_nearbyint): Likewise.
20076         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c (__llrintl): Likewise.
20077         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c (__llroundl): Likewise.
20078         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
20079         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c (__lrintl): Likewise.
20080         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c (__lroundl): Likewise.
20081         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
20082         * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
20083         Likewise.
20084         * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l, __ieee754_y0l):
20085         Likewise.
20086         * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l, __ieee754_y1l):
20087         Likewise.
20088         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl, __ieee754_ynl):
20089         Likewise.
20090         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
20091         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
20092         * sysdeps/posix/clock_getres.c (hp_timing_getres, realtime_getres):
20093         Likewise.
20094         * sysdeps/posix/fdopendir.c (__fdopendir): Likewise.
20095         * sysdeps/posix/getaddrinfo.c (gaih_inet, getaddrinfo): Likewise.
20096         * sysdeps/posix/opendir.c (__opendirat): Likewise.
20097         * sysdeps/posix/sleep.c: Likewise.
20098         * sysdeps/posix/tempname.c: Likewise.
20099         * sysdeps/powerpc/powerpc32/dl-irel.h (elf_irela): Likewise.
20100         * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
20101         Likewise.
20102         * sysdeps/powerpc/powerpc32/dl-machine.h
20103         (elf_machine_runtime_setup, elf_machine_rela): Likewise.
20104         * sysdeps/powerpc/powerpc64/dl-irel.h (elf_irela): Likewise.
20105         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
20106         * sysdeps/pthread/aio_notify.c (__aio_notify_only): Likewise.
20107         * sysdeps/pthread/aio_suspend.c (do_aio_misc_wait, aio_suspend):
20108         Likewise.
20109         * sysdeps/s390/dl-irel.h (elf_irela): Likewise.
20110         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_runtime_setup)
20111         (elf_machine_rela, elf_machine_lazy_rel): Likewise.
20112         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_runtime_setup)
20113         (elf_machine_rela, elf_machine_lazy_rel): Likewise.
20114         * sysdeps/s390/s390-64/utf16-utf32-z9.c (gconv_end): Likewise.
20115         * sysdeps/s390/s390-64/utf8-utf16-z9.c (gconv_end): Likewise.
20116         * sysdeps/s390/s390-64/utf8-utf32-z9.c (gconv_end): Likewise.
20117         * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
20118         * sysdeps/sparc/sparc32/dl-irel.h (elf_irela): Likewise.
20119         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela)
20120         (elf_machine_lazy_rel): Likewise.
20121         * sysdeps/sparc/sparc64/dl-irel.h (elf_irela): Likewise.
20122         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela)
20123         (elf_machine_lazy_rel): Likewise.
20124         * sysdeps/sparc/sparc64/dl-plt.h (sparc64_fixup_plt): Likewise.
20125         * sysdeps/unix/clock_gettime.c (hp_timing_gettime): Likewise.
20126         * sysdeps/unix/clock_settime.c (hp_timing_settime): Likewise.
20127         * sysdeps/unix/grantpt.c (grantpt): Likewise.
20128         * sysdeps/unix/sysv/linux/accept4.c (accept4): Likewise.
20129         * sysdeps/unix/sysv/linux/adjtime.c (ADJTIME): Likewise.
20130         * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): Likewise.
20131         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
20132         Likewise.
20133         * sysdeps/unix/sysv/linux/faccessat.c (faccessat): Likewise.
20134         * sysdeps/unix/sysv/linux/fchmodat.c (fchmodat): Likewise.
20135         * sysdeps/unix/sysv/linux/fchownat.c (fchownat): Likewise.
20136         * sysdeps/unix/sysv/linux/futimesat.c (futimesat): Likewise.
20137         * sysdeps/unix/sysv/linux/fxstatat64.c (__fxstatat64): Likewise.
20138         * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Likewise.
20139         * sysdeps/unix/sysv/linux/i386/fallocate64.c (fallocate64): Likewise.
20140         * sysdeps/unix/sysv/linux/i386/fallocate.c (fallocate): Likewise.
20141         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Likewise.
20142         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Likewise.
20143         * sysdeps/unix/sysv/linux/i386/get_clockfreq.c (__get_clockfreq):
20144         Likewise.
20145         * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c
20146         (__posix_fallocate64_l64): Likewise.
20147         * sysdeps/unix/sysv/linux/i386/posix_fallocate.c
20148         (posix_fallocate): Likewise.
20149         * sysdeps/unix/sysv/linux/i386/scandir64.c (__old_scandir64):
20150         Likewise.
20151         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
20152         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request)
20153         (getifaddrs_internal): Likewise.
20154         * sysdeps/unix/sysv/linux/linkat.c (linkat): Likewise.
20155         * sysdeps/unix/sysv/linux/mkdirat.c (mkdirat): Likewise.
20156         * sysdeps/unix/sysv/linux/mq_unlink.c (mq_unlink): Likewise.
20157         * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Likewise.
20158         * sysdeps/unix/sysv/linux/posix_fallocate64.c
20159         (__posix_fallocate64_l64): Likewise.
20160         * sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate):
20161         Likewise.
20162         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Likewise.
20163         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c
20164         (__get_clockfreq): Likewise.
20165         * sysdeps/unix/sysv/linux/readlinkat.c (readlinkat): Likewise.
20166         * sysdeps/unix/sysv/linux/recvmmsg.c (recvmmsg): Likewise.
20167         * sysdeps/unix/sysv/linux/renameat.c (renameat): Likewise.
20168         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
20169         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
20170         * sysdeps/unix/sysv/linux/sched_setaffinity.c: Likewise.
20171         * sysdeps/unix/sysv/linux/sendmmsg.c (__sendmmsg): Likewise.
20172         * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs, shm_open):
20173         Likewise.
20174         * sysdeps/unix/sysv/linux/sleep.c (__sleep): Likewise.
20175         * sysdeps/unix/sysv/linux/symlinkat.c (symlinkat): Likewise.
20176         * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Likewise.
20177         * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Likewise.
20178         * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
20179         * sysdeps/unix/sysv/linux/unlinkat.c (unlinkat): Likewise.
20180         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c (__fxstatat):
20181         Likewise.
20182         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
20183         (posix_fallocate): Likewise.
20184         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
20185         * sysdeps/unix/sysv/linux/xmknodat.c (__xmknodat): Likewise.
20186         * sysdeps/x86_64/dl-irel.h (elf_irela): Likewise.
20187         * sysdeps/x86_64/dl-machine.h (elf_machine_runtime_setup)
20188         (elf_machine_rela, elf_machine_rela_relative)
20189         (elf_machine_lazy_rel): Likewise.
20190         * time/asctime.c (asctime_internal): Likewise.
20191         * time/tzfile.c (__tzfile_read, __tzfile_compute): Likewise.
20192         * time/tzset.c (__tzset_parse_tz): Likewise.
20193         * wcsmbs/mbrtoc16.c (mbrtoc16): Likewise.
20194         * wcsmbs/mbrtowc.c (__mbrtowc): Likewise.
20195         * wcsmbs/wcsmbsload.c (__wcsmbs_load_conv): Likewise.
20196         * wcsmbs/wcsmbsload.h: Likewise.
20198         [BZ #15894]
20199         * stdlib/setenv.c (__add_to_environ): Remove duplicate code.
20201         * malloc/arena.c (grow_heap, get_free_list, reused_arena)
20202         (arena_get2): Remove THREAD_STATS conditionals.
20203         * malloc/malloc.c (__malloc_assert, __libc_realloc, _int_free)
20204         (__malloc_stats, int): Likewise.
20206 2014-02-08  Mike Frysinger  <vapier@gentoo.org>
20208         * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs): Compare
20209         f.f_type to RAMFS_MAGIC too.  Compare mp->mnt_type to shm too.
20211         * manual/setjmp.texi: Fix typos/grammar errors.
20213         * debug/tst-backtrace4.c (handle_signal): Add NUM_FUNCTIONS to output.
20214         Only return early when n is <= 0.  Delete unused return statement.
20216         * debug/Makefile (CFLAGS-tst-longjmp_chk3.c): Define.
20217         (CPPFLAGS-tst-longjmp_chk3.c): Likewise.
20218         * debug/tst-longjmp_chk3.c: New file.
20220         * benchtests/bench-strcpy_chk.c: Move test-skeleton.c to top.
20221         (test_main): Replace code with set_fortify_handler call.
20222         * debug/test-strcpy_chk.c: Likewise.
20223         * debug/tst-chk1.c: Likewise.
20224         * debug/tst-longjmp_chk.c: Likewise.
20225         * test-skeleton.c: Include fcntl.h & paths.h
20226         (set_fortify_handler): Define.
20228         * debug/tst-longjmp_chk.c: Add header comment and include
20229         ../test-skeleton.c.
20230         (do_test): Mark static.
20231         (TEST_FUNCTION): Define.
20233         * sysdeps/unix/sysv/linux/bits/in.h (IP_NODEFRAG): Define.
20234         (IP_PMTUDISC_INTERFACE): Likewise.
20235         (IP_MULTICAST_IF): Likewise.
20236         (IP_MULTICAST_TTL): Likewise.
20237         (IP_MULTICAST_LOOP): Likewise.
20238         (IP_ADD_MEMBERSHIP): Likewise.
20239         (IP_DROP_MEMBERSHIP): Likewise.
20240         (IP_UNBLOCK_SOURCE): Likewise.
20241         (IP_BLOCK_SOURCE): Likewise.
20242         (IP_ADD_SOURCE_MEMBERSHIP): Likewise.
20243         (IP_DROP_SOURCE_MEMBERSHIP): Likewise.
20244         (IP_MSFILTER): Likewise.
20245         (MCAST_JOIN_GROUP): Likewise.
20246         (MCAST_BLOCK_SOURCE): Likewise.
20247         (MCAST_UNBLOCK_SOURCE): Likewise.
20248         (MCAST_LEAVE_GROUP): Likewise.
20249         (MCAST_JOIN_SOURCE_GROUP): Likewise.
20250         (MCAST_LEAVE_SOURCE_GROUP): Likewise.
20251         (MCAST_MSFILTER): Likewise.
20252         (IP_MULTICAST_ALL): Likewise.
20253         (IP_UNICAST_IF): Likewise.
20255         * timezone/Makefile: Delete $(have-ksh) check.
20256         ($(objpfx)tzselect): Change $(KSH) to $(BASH).
20257         * timezone/tzselect.ksh: Add +x mode bits.
20259         * sysdeps/unix/sysv/linux/linux_fsinfo.h (AFS_SUPER_MAGIC): Define.
20260         (ANON_INODE_FS_MAGIC): Likewise.
20261         (BDEVFS_MAGIC): Likewise.
20262         (BINFMTFS_MAGIC): Likewise.
20263         (BTRFS_TEST_MAGIC): Likewise.
20264         (CRAMFS_MAGIC_WEND): Likewise.
20265         (DEBUGFS_MAGIC): Likewise.
20266         (ECRYPTFS_SUPER_MAGIC): Likewise.
20267         (EXT3_SUPER_MAGIC): Likewise.
20268         (EXT4_SUPER_MAGIC): Likewise.
20269         (FUTEXFS_SUPER_MAGIC): Likewise.
20270         (HOSTFS_SUPER_MAGIC): Likewise.
20271         (HUGETLBFS_MAGIC): Likewise.
20272         (MINIX3_SUPER_MAGIC): Likewise.
20273         (MTD_INODE_FS_MAGIC): Likewise.
20274         (NILFS_SUPER_MAGIC): Likewise.
20275         (OPENPROM_SUPER_MAGIC): Likewise.
20276         (PIPEFS_MAGIC): Likewise.
20277         (PSTOREFS_MAGIC): Likewise.
20278         (QNX6_SUPER_MAGIC): Likewise.
20279         (RAMFS_MAGIC): Likewise.
20280         (REISERFS_SUPER_MAGIC_STRING): Likewise.
20281         (REISER2FS_SUPER_MAGIC_STRING): Likewise.
20282         (REISER2FS_JR_SUPER_MAGIC_STRING): Likewise.
20283         (SECURITYFS_MAGIC): Likewise.
20284         (SELINUX_MAGIC): Likewise.
20285         (SMACK_MAGIC): Likewise.
20286         (SOCKFS_MAGIC): Likewise.
20287         (SQUASHFS_MAGIC): Likewise.
20288         (STACK_END_MAGIC): Likewise.
20289         (TMPFS_MAGIC): Likewise.
20290         (USBDEVICE_SUPER_MAGIC): Likewise.
20291         (V9FS_MAGIC): Likewise.
20292         (XENFS_SUPER_MAGIC): Likewise.
20293         (CRAMFS_MAGIC): Fix typo in comment.
20294         (EXT2_SUPER_MAGIC): Update comment.
20295         (USBDEVFS_SUPER_MAGIC): Fix sorting order by moving further down.
20297 2014-02-08  Joseph Myers  <joseph@codesourcery.com>
20299         * sysdeps/arm: Move directory from ports/sysdeps/arm.
20300         * sysdeps/unix/arm: Move directory from ports/sysdeps/unix/arm.
20301         * sysdeps/unix/sysv/linux/arm: Move directory from
20302         ports/sysdeps/unix/sysv/linux/arm.
20303         * README: Update listing for arm-*-linux-gnueabi.
20305         * README: Remove mention of am33.
20307 2014-02-07  Roland McGrath  <roland@hack.frob.com>
20309         * bits/sigset.h (__sigemptyset): Use a statement expression rather
20310         than the comma operator, to avoid "rhs of comma has no effect"
20311         compiler warnings.
20312         (__sigfillset, __sigandset, __sigorset): Likewise.
20313         * include/signal.h (__sigemptyset): Likewise.
20314         * sysdeps/generic/malloc-machine.h (mutex_lock): Likewise.
20316 2014-02-07  Allan McRae  <allan@archlinux.org>
20318         * version.h (RELEASE): Set to "development".
20319         (VERSION): Set to "2.19.90"
20320         * NEWS: Add 2.20 section.
20322 2014-02-06  Carlos O'Donell  <carlos@redhat.com>
20324         [BZ #16529]
20325         * inet/netinet/in.h: Remove comma after IPPROTO_MH.
20327 2014-02-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
20329         * manual/contrib.texi: Update entry for Carlos O'Donell,
20330         Joseph Myers, Roland McGrath, Alexandre Oliva and Ryan Arnold.
20332 2014-02-05  Carlos O'Donell  <carlos@rehdat.com>
20334         * sysdeps/unix/sysv/linux/kernel-features.h: Fix comment.
20336         * sysdeps/unix/sysv/linux/kernel-features.h
20337         [__LINUX_KERNEL_VERSION >= 0x020621]
20338         (__ASSUME_PROC_PID_TASK_COMM): Define.
20340 2014-02-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
20342         [BZ #16398]
20343         * libio/wfileops.c (_IO_wfile_seekoff): Break out form
20344         conversion when destination buffer does not have enough space.
20345         * libio/tst-ftell-partial-wide.c: New test case.
20346         * libio/Makefile (tests): Add tst-ftell-partial-wide.
20348         * manual/contrib.texi: Update entry for Ondrej Bilka, Will
20349         Newton and Alexandre Oliva.  Add entries for Steve Ellcey, Chris
20350         Leonard and Allan McRae.
20352 2014-02-04  David S. Miller  <davem@davemloft.net>
20354         * sysdeps/sparc/fpu/libm-test-ulps: Update for some 64-bit differences from
20355         32-bit.
20357 2014-02-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20359         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist:
20360         New file
20361         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist:
20362         New file
20363         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist:
20364         New file.
20365         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist:
20366         New file.
20367         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist:
20368         New file.
20369         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist:
20370         New file.
20371         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist:
20372         New file.
20373         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist:
20374         New file.
20375         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist:
20376         New file.
20377         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist:
20378         New file.
20379         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist:
20380         New file.
20381         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist:
20382         New file.
20383         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist:
20384         New file.
20386 2014-02-01  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20388         * nptl/shlib-versions: Change powerpc*le start to 2.17.
20389         * shlib-versions: Likewise.
20391 2014-02-04  Roland McGrath  <roland@hack.frob.com>
20392             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20394         * sysdeps/powerpc/Makefile [$(config-machine) ends with 'le']
20395         (abilist-pattern): New variable, set to %-le.abilist.
20397         * Makerules (abilist-pattern): New variable.
20398         (vpath): Use $(abilist-pattern) in place of %.abilist.
20399         (check-abi-% pattern rule): Likewise.
20400         (check-abi, update-abi): Likewise.
20402 2014-02-04  Eric Wong  <normalperson@yhbt.net>
20404         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
20406 2014-02-03  Carlos O'Donell  <carlos@redhat.com>
20408         * manual/startup.texi: Add next, previous, and top entries for
20409         the `Program Arguments' and `Environment Variables' nodes.
20411 2014-02-03  Alexandre Oliva <aoliva@redhat.com>
20413         * manual/macros.texi: Add comments before MTASC-safety macros.
20415         * manual/users.texi: Document MTASC-safety properties.
20417         * manual/threads.texi (pthread_key_create, pthread_key_delete)
20418         (pthread_getspecific, pthread_setspecific): Format with
20419         @deftypefun, and add @safety note.
20420         * manual/signal.texi: Move comments that analyze the above
20421         functions to their home place.
20423 2014-02-03  Allan McRae  <allan@archlinux.org>
20425         * po/sl.po: Update Slovenian translation from translation project.
20427 2014-02-02  Alexandre Oliva <aoliva@redhat.com>
20429         * manual/time.texi (timegm): Add missing blank after @c.
20430         Reported by Joseph Myers <joseph@codesourcery.com>.
20432 2014-02-01  Alexandre Oliva <aoliva@redhat.com>
20434         * manual/check-safety.sh: New.
20435         * manual/Makefile ($(objpfx)stamp-summary): Run it.
20437         * manual/terminal.texi: Document MTASC-safety properties.
20439         * manual/filesys.texi: Document MTASC-safety properties.
20441         * manual/errno.texi: Document MTASC-safety properties.
20443         * manual/intro.texi: Document safety identifiers and
20444         conditionals.
20446         * manual/string.texi (wcstok): Fix prototype.
20447         (wcstok, strtok, strtok_r): Adjust reentrancy remarks.
20449         * manual/time.texi: Document MTASC-safety properties.
20451         * manual/string.texi: Document MTASC-safety properties.
20453         * manual/threads.texi: Document MTASC-safety properties.
20455         * manual/stdio.texi: Document MTASC-safety properties.
20457         * manual/syslog.texi: Document MTASC-safety properties.
20459         * manual/sysinfo.texi: Document MTASC-safety properties.
20461         * manual/startup.texi: Document MTASC-safety properties.
20463         * manual/socket.texi: Document MTASC-safety properties.
20465         * manual/signal.texi: Document MTASC-safety properties.
20467 2014-01-31  Alexandre Oliva <aoliva@redhat.com>
20469         * manual/setjmp.texi: Document MTASC-safety properties.
20471         * manual/search.texi: Document MTASC-safety properties.
20473         * manual/resource.texi: Document MTASC-safety properties.
20475         * manual/process.texi: Document MTASC-safety properties.
20477         * manual/platform.texi: Document MTASC-safety properties.
20479         * manual/pipe.texi: Document MTASC-safety properties.
20481         * manual/pattern.texi: Document MTASC-safety properties.
20483         * manual/message.texi: Document MTASC-safety properties.
20485         [BZ #12751]
20486         * manual/memory.texi: Document MTASC-safety properties.
20488         * manual/math.texi: Document MTASC-safety properties.
20490         * manual/locale.texi: Document MTASC-safety properties.
20492         * manual/llio.texi: Document MTASC-safety properties.
20494         * manual/libdl.texi: New.
20496         * manual/lang.texi: Document MTASC-safety properties.
20498         * manual/job.texi: Document MTASC-safety properties.
20500         * manual/getopt.texi: Document MTASC-safety properties.
20502         * manual/ctype.texi: Document MTASC-safety properties.
20504 2014-01-31  Maciej W. Rozycki  <macro@codesourcery.com>
20506         [BZ #16046]
20507         * csu/libc-tls.c (static_map): Remove variable.
20508         (__libc_setup_tls): Use main executable's link map for TLS data.
20509         * elf/dl-close.c (_dl_close_worker) [!SHARED]: Remove special
20510         casing for LM_ID_BASE and GL(dl_nns).
20511         * elf/dl-iteratephdr.c [!SHARED] (dl_iterate_phdr): Remove
20512         function.  Alias dl_iterate_phdr to __dl_iterate_phdr.
20513         * elf/dl-load.c (_dl_map_object) [!SHARED]: Remove special
20514         casing for GL(dl_ns)[LM_ID_BASE]._ns_loaded.
20515         * elf/dl-support.c (_dl_main_map): Also initialize l_flags_1
20516         member.
20517         (_dl_non_dynamic_init): Also initialize _dl_main_map's l_phdr and
20518         l_phnum members.
20520 2014-01-30  Alexandre Oliva <aoliva@redhat.com>
20522         * manual/debug.texi: Document MTASC-safety properties.
20524 2014-01-29  H.J. Lu  <hongjiu.lu@intel.com>
20526         [BZ #16510]
20527         * sysdeps/x86/fpu/bits/mathinline.h: Check __SSE2_MATH__ instead
20528         of __x86_64__ when disabling x87 inline functions.
20530 2014-01-29  Alexandre Oliva <aoliva@redhat.com>
20532         * manual/charset.texi: Document MTASC-safety properties.
20534         * manual/crypt.texi: Document MTASC-safety properties.
20536         * manual/conf.texi: Document MTASC-safety properties.
20538         * manual/arith.texi: Document MTASC-safety properties.
20540         * manual/argp.texi: Document MTASC-safety properties.
20542         * manual/macros.texi: Introduce macros to document multi
20543         thread, asynchronous signal and asynchronous cancellation
20544         safety properties.
20545         * manual/intro.texi: Introduce the properties themselves.
20547 2014-01-27  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
20549         * sysdeps/sh/sh4/Makefile: New file.
20551 2014-01-27  Andreas Schwab  <schwab@linux-m68k.org>
20553         * math/gen-libm-test.pl ($srcdir): New variable.
20554         ($auto_input): Use it.
20556 2014-01-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
20558         [BZ #16506]
20559         * nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): Avoid
20560         access beyond array bounds when parsing netgroups file.
20562         * nscd/netgroupcache.c (addgetnetgrentX): Compute offset from
20563         the old buffer before realloc.
20565 2014-01-27  Allan McRae  <allan@archlinux.org>
20567         * po/fr.po: Update French translation from translation project.
20569 2014-01-26  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
20571         * sysdeps/sh/libm-test-ulps: Regenerate.
20573 2014-01-24  David S. Miller  <davem@davemloft.net>
20575         * sysdeps/sparc/fpu/libm-test-ulps: Regenerate.
20577 2014-01-25  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
20579         * sysdeps/sh/sh4/fpu/libm-test-ulps: Move to ...
20580         * sysdeps/sh/libm-test-ulps: ... here and regenerated.
20582 2013-01-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
20584         [BZ #16474]
20585         * nscd/netgroupcache.c (addgetnetgrentX): Adjust triplet
20586         string pointers after reallocation.
20588 2014-01-24  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
20590         * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: Use __SH4__ and
20591         __SH4A__ instead of __SH_FPU_ANY__.
20593 2014-01-23  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
20595         * sysdeps/sh/fpu_control.h: New file.
20596         * sysdeps/sh/sh4/fpu/fpu_control.h: Remove.
20597         * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: New file.
20598         * sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h: Remove.
20599         * sysdeps/unix/sysv/linux/sh/sh3/sys: Remove directory.
20600         * sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h: Remove.
20601         * sysdeps/unix/sysv/linux/sh/sh4/sys: Remove directory.
20602         * sysdeps/sh/sys/ucontext.h: Remove.
20603         * sysdeps/sh/sys: Remove directory.
20605 2014-01-22  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
20607         * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Merge into
20608         s390/sys/ucontext.h.
20609         * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Likewise.
20610         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: New file.
20612 2014-01-20  H.J. Lu  <hongjiu.lu@intel.com>
20614         [BZ #15605]
20615         * sysdeps/x86_64/x32/symbol-hacks.h: Include generic symbol-hacks.h.
20617 2014-01-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20619         [BZ#16431]
20620         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c (__gettimeofday):
20621         Adjust the vDSO correctly for internal calls.
20622         * sysdeps/unix/sysv/linux/powerpc/time.c (time): Likewise.
20624 2014-01-20  Allan McRae  <allan@archlinux.org>
20626         * po/ca.po: Update Catalan translation from translation project.
20628 2014-01-16  Mike Frysinger  <vapier@gentoo.org>
20630         * sysdeps/s390/sotruss-lib.c: New file.
20632 2014-01-16  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20634         [BZ#16430]
20635         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c
20636         (__GI___gettimeofday): Alias for a different internal symbol to avoid
20637         local calls issues by not having a PLT stub required for IFUNC calls.
20638         * sysdeps/unix/sysv/linux/powerpc/time.c (__GI_time): Likewise.
20640 2014-01-16 Joseph Myers  <joseph@codesourcery.com>
20642         * math/test-fpucw-ieee.c: Use <> in #include of test-fpucw.c.
20643         * math/test-fpucw-static.c: Likewise.
20645 2013-01-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
20647         [BZ #16453]
20648         * nscd/netgroupcache.c (addgetnetgrentX): Don't use alloca.
20650 2014-01-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20652         * sysdeps/powerpc/sotruss-lib.c: New file: sotruss-lib.so
20653         implementation for powerpc.
20655 2014-01-15  Ondřej Bílka  <neleai@seznam.cz>
20657         [BZ #14782]
20658         * sysdeps/posix/system.c (__libc_system): Do not enable
20659         asynchronous cancellation.
20661 2014-01-15  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
20663         [BZ #16427]
20664         * sysdeps/ieee754/ldbl-128/w_expl.c (__expl): Invoke the non-IEEE
20665         handling only for numbers special also in the IEEE case.
20667 2014-01-15  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
20669         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
20671 2014-01-11  Allan McRae  <allan@archlinux.org>
20673         * po/bg.po: Update Bulgarian translation from translation project.
20675         * po/de.po: Update German translation from translation project.
20677 2014-01-10  Roland McGrath  <roland@hack.frob.com>
20679         * sysdeps/generic/gcc-compat.h: New file.
20681 2014-01-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
20683         * benchtests/asin-inputs: Correct slow inputs.
20684         * benchtests/acos-inputs: Likewise.
20686 2014-01-10  Allan McRae  <allan@archlinux.org>
20688         * po:sv.po: Update Swedish translation from translation project.
20690         * po/vi.po: Update Vietnamese translation from translation project.
20692         * po/eo.po: Update Esperanto translation from translation project.
20694         * po/cs.po: Update Czech translation from translation project.
20696         * po/nl.po: Update Dutch translation from translation project.
20698         * po/pl.po: Update Polish translation from translation project.
20700         * po/ru.po: Update Russian translation from translation project.
20702         * po/uk.po: Update Ukrainian translation from translation project.
20704 2014-01-08  Brooks Moses  <bmoses@google.com>
20706         * elf/dl-load.c: Fix comment typo.
20708 2014-01-08  Carlos O'Donell  <carlos@redhat.com>
20710         * po/header.pot: Rename to...
20711         * po/pot.header: ... this.
20712         * po/Makefile: Use pot.header.
20714 2014-01-08  Yuriy Kaminskiy  <yumkam@gmail.com>
20715             Maxim Kuvyrkov  <maxim@kugelworks.com>
20717         [BZ #16394]
20718         * sysdeps/i386/i686/memmove.S (memmove): Compare distance between
20719         SRC and DEST against LEN.
20721 2014-01-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20723         [BZ #16414]
20724         * sysdeps/powerpc/powerpc64/fpu/s_truncl.S: Remove wrong
20725         implementation.
20726         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Remove bogus comment.
20728 2014-01-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20730         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
20732 2014-01-08  Joseph Myers  <joseph@codesourcery.com>
20734         [BZ #16408]
20735         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Use __expl
20736         for large positive arguments.
20738 2014-01-07  Joseph Myers  <joseph@codesourcery.com>
20740         * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
20742         * math/auto-libm-test-in: Mark various tests with
20743         xfail-rounding:ldbl-128ibm.
20744         * math/auto-libm-test-out: Regenerated.
20746         [BZ #16407]
20747         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl):
20748         Increase overflow threshold.
20750 2014-01-07  Ondřej Bílka  <neleai@seznam.cz>
20752         [BZ #14286]
20753         * stdio-common/vfprintf.c: Check for integer overflow.
20755 2014-01-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
20757         * sysdeps/s390/dl-tls.h: sysdeps/s390/dl-tls.h: Remove casts for
20758         the first argument and return value of __tls_get_addr_internal.
20760 2014-01-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
20762         * sysdeps/s390/s390-32/dl-machine.h: Gate the definition of refsym
20763         also with !RTLD_BOOTSTRAP to get rid of unused variable warning.
20765 2014-01-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
20767         * sysdeps/s390/Makefile: Build rtld-global-offsets.sym.
20768         * sysdeps/s390/rtld-global-offsets.sym: New file.
20769         * sysdeps/unix/sysv/linux/s390/Versions: Add getcontext as new
20770         GLIBC_2.19 symbol.
20771         * sysdeps/unix/sysv/linux/s390/getcontext.S: New file.
20772         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Rename to ...
20773         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S:
20774         ... this.
20775         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Rename to ...
20776         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S:
20777         ... this.
20778         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
20779         Regenerate.
20780         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
20781         Regenerate.
20782         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Restore upper
20783         halfs of GPRs for high_gprs contexts.
20784         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Save and
20785         restore upper halfs of GPRs for high_gprs contexts.  Copy uc_flags
20786         field.
20787         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Copy
20788         uc_flags field.
20789         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Split into 32 and
20790         64 bit versions:
20791         * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Add field
20792         for high GPRs (uc_high_gprs) and for future extensions
20793         (__reserved).
20794         * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Add field
20795         for future extensions (__reserved).
20796         * sysdeps/unix/sysv/linux/s390/ucontext_i.sym: Split into 32 and
20797         64 bit versions:
20798         * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym: Add
20799         SC_HIGHGPRS offset definition.
20800         * sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.sym: New file.
20801         * sysdeps/unix/sysv/linux/s390/rtld-getcontext.S: New file.
20803         * Versions.def: Add GLIBC_2.19 for libpthread.
20804         * nptl/sysdeps/unix/sysv/linux/s390/Versions: Add longjmp and
20805         siglongjmp for libpthread with GLIBC_2.19 symver.
20806         * nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c: New file.
20807         * sysdeps/s390/Makefile: Build v1-longjmp.c and v1-sigjmp.c.
20808         * sysdeps/s390/Versions: New GLIBC_2.19 and GLIBC_PRIVATE symbols.
20809         * sysdeps/s390/__longjmp.c: New file.
20810         * sysdeps/s390/bits/setjmp.h: Add new fields to __s390_jmp_buf.
20811         * sysdeps/s390/longjmp.c: New file.
20812         * sysdeps/s390/setjmp.S: New file.
20813         * sysdeps/s390/sigjmp.S: New file.
20814         * sysdeps/s390/v1-longjmp.c: New file.
20815         * sysdeps/s390/v1-setjmp.h: New file.
20816         * sysdeps/s390/v1-sigjmp.c: New file.
20817         * sysdeps/unix/sysv/linux/s390/Makefile: Build __longjmp_chk.
20818         * sysdeps/unix/sysv/linux/s390/Versions: Add __longjmp_chk with
20819         GLIBC_2.19 version.
20820         * sysdeps/unix/sysv/linux/s390/longjmp_chk.c: New file.
20821         * sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c: Provide
20822         versioned symbols for ____longjmp_chk.
20823         * sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c:
20824         Likewise.
20825         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
20826         Regenerate.
20827         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
20828         Regenerate.
20829         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
20830         Regenerate.
20831         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
20832         Regenerate.
20833         * sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c: New file.
20834         * sysdeps/s390/s390-32/__longjmp.c: Rename to ...
20835         * sysdeps/s390/s390-32/__longjmp-common.c: ... this.
20836         * sysdeps/s390/s390-32/setjmp.S: Rename and adjust to ...
20837         * sysdeps/s390/s390-32/setjmp-common.S: ... this.
20838         * sysdeps/s390/s390-64/__longjmp.c: Rename to ...
20839         * sysdeps/s390/s390-64/__longjmp-common.c: ... this.
20840         * sysdeps/s390/s390-64/setjmp.S: Rename and adjust to ...
20841         * sysdeps/s390/s390-64/setjmp-common.S: ... this.
20842         * sysdeps/s390/rtld-__longjmp.c: New file.
20843         * sysdeps/s390/rtld-setjmp.S: New file.
20845 2014-01-06  Joseph Myers  <joseph@codesourcery.com>
20847         [BZ #16400]
20848         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
20849         Return -__logl (x) for small positive arguments without evaluating
20850         a polynomial.
20852 2014-01-06  Mike Frysinger  <vapier@gentoo.org>
20854         * sysdeps/unix/sysv/linux/sys/ptrace.h (ptrace_peeksiginfo_args):
20855         Rename to ...
20856         (__ptrace_peeksiginfo_args): ... this.
20857         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
20858         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
20859         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
20861 2014-01-06  Allan McRae  <allan@archlinux.org>
20863         * inet/netinet/in.h: Fix typo in comment.
20865 2014-01-05  Andreas Jaeger  <aj@suse.de>
20867         * sysdeps/i386/fpu/libm-test-ulps: Update.
20869 2014-01-05  Allan McRae  <allan@archlinux.org>
20871         * po/libc.pot: Regenerated.
20873         * malloc/memusagestat.c: Fix gettext call formatting.
20875 2014-01-04  Sami Kerola  <kerolasa@iki.fi>
20877         * nscd/nscd.c: Improve usage() output.
20879 2014-01-04  Mike Frysinger  <vapier@gentoo.org>
20881         * config.h.in: Add HAVE_LINUX_FANOTIFY_H template.
20882         * sysdeps/unix/sysv/linux/configure: Regenerated.
20883         * sysdeps/unix/sysv/linux/configure.ac: Call AC_DEFINE.
20884         * sysdeps/unix/sysv/linux/tst-fanotify.c: Include config.h.
20886 2014-01-03  Joseph Myers  <joseph@codesourcery.com>
20888         [BZ #16390]
20889         * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
20890         (CFLAGS-e_atan2l.c): Use -fno-builtin-fabsl.
20892 2014-01-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20894         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: Remove
20895         extra tokens at end of #undef directive.
20896         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: Likewise.
20897         * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: Likewise.
20898         * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c: Likewise.
20900 2014-01-03  Joseph Myers  <joseph@codesourcery.com>
20902         * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
20904         * math/auto-libm-test-in: Mark various tests with
20905         xfail-rounding:ldbl-128ibm.
20906         * math/auto-libm-test-out: Regenerated.
20908 2014-01-02  Joseph Myers  <joseph@codesourcery.com>
20910         [BZ #16386]
20911         * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Adjust
20912         numbers with subnormal high part when calculating exponent.
20914         [BZ #16385]
20915         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Use fabsl not
20916         fabs.
20918         [BZ #16384]
20919         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (ln2): Initialize with
20920         M_LN2l.
20921         (__ieee754_acoshl): Use __log1pl not __log1p.
20923 2013-01-02  Ondřej Bílka  <neleai@seznam.cz>
20925         * malloc/arena.c (malloc_atfork, free_atfork, ptmalloc_lock_all)
20926         (ptmalloc_unlock_all, ptmalloc_unlock_all2, next_env_entry)
20927         (__failing_morecore, ptmalloc_init, dump_heap, new_heap)
20928         (grow_heap, heap_trim, _int_new_arena, get_free_list)
20929         (reused_arena, arena_get2): Convert to GNU style.
20930         * malloc/hooks.c (memalign_hook_ini, __malloc_check_init)
20931         (mem2mem_check, mem2chunk_check, top_check, realloc_check)
20932         (memalign_check, __malloc_set_state): Likewise.
20933         * malloc/mallocbug.c (main): Likewise.
20934         * malloc/malloc.c (__malloc_assert, malloc_init_state)
20935         (free_perturb, do_check_malloced_chunk, do_check_malloc_state)
20936         (sysmalloc, systrim, mremap_chunk, __libc_malloc, __libc_free)
20937         (__libc_realloc, _mid_memalign, _int_malloc, malloc_consolidate)
20938         (_int_realloc, _int_memalign, mtrim, musable, __libc_mallopt)
20939         (__posix_memalign, malloc_info): Likewise.
20940         * malloc/malloc.h: Likewise.
20941         * malloc/mcheck.c (checkhdr, unlink_blk, link_blk, freehook)
20942         (mallochook, memalignhook, reallochook, mabort): Likewise.
20943         * malloc/mcheck.h: Likewise.
20944         * malloc/memusage.c (update_data, me, malloc, realloc, calloc)
20945         (free, mmap, mmap64, mremap, munmap, dest): Likewise.
20946         * malloc/memusagestat.c (main, parse_opt, more_help): Likewise.
20947         * malloc/morecore.c (__default_morecore): Likewise.
20948         * malloc/mtrace.c (tr_break, lock_and_info, mtrace): Likewise.
20949         * malloc/obstack.c (_obstack_begin, _obstack_newchunk)
20950         (_obstack_allocated_p, obstack_free, _obstack_memory_used)
20951         (print_and_abort): Likewise.
20952         * malloc/obstack.h: Likewise.
20953         * malloc/set-freeres.c (__libc_freeres): Likewise.
20954         * malloc/tst-mallocstate.c (main): Likewise.
20955         * malloc/tst-mtrace.c (main): Likewise.
20956         * malloc/tst-realloc.c (do_test): Likewise.
20958 2013-01-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
20960         [BZ #16366]
20961         * nscd/netgroupcache.c (do_notfound): New function.
20962         (addgetnetgrentX): Use it.
20964         [BZ # 16365]
20965         * nscd/netgroupcache.c (addgetnetgrentX): Break if status is
20966         NSS_STATUS_NOTFOUND.
20968 2014-01-01  Joseph Myers  <joseph@codesourcery.com>
20970         * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
20971         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20973 2014-01-01  Allan McRae  <allan@archlinux.org>
20975         * scripts/update-copyrights: Update configure input file suffix.
20977         * NEWS: Update copyright year.
20978         * catgets/gencat.c: Likewise.
20979         * csu/version.c: Likewise.
20980         * debug/catchsegv.sh: Likewise.
20981         * debug/pcprofiledump.c: Likewise.
20982         * debug/xtrace.sh: Likewise.
20983         * elf/ldconfig.c: Likewise.
20984         * elf/ldd.bash.in: Likewise.
20985         * elf/pldd.c: Likewise.
20986         * elf/sotruss.ksh: Likewise.
20987         * elf/sprof.c: Likewise.
20988         * iconv/iconv_prog.c: Likewise.
20989         * iconv/iconvconfig.c: Likewise.
20990         * locale/programs/locale.c: Likewise.
20991         * locale/programs/localedef.c: Likewise.
20992         * login/programs/pt_chown.c: Likewise.
20993         * malloc/memusage.sh: Likewise.
20994         * malloc/memusagestat.c: Likewise.
20995         * malloc/mtrace.pl: Likewise.
20996         * manual/libc.texinfo: Likewise.
20997         * nscd/nscd.c: Likewise.
20998         * nss/getent.c: Likewise.
20999         * nss/makedb.c: Likewise.
21000         * posix/getconf.c: Likewise.
21001         * scripts/test-installation.pl: Likewise.
21003         * All files with FSF copyright notices: Update copyright dates
21004         using scripts/update-copyrights.
21005         * intl/plural.c: Regenerated.
21006         * locale/programs/charmap-kw.h: Likewise.
21007         * locale/programs/locfile-kw.h: Likewise.
21009 2013-12-31  Mike Frysinger  <vapier@gentoo.org>
21011         * sysdeps/unix/sysv/linux/configure: Regenerated.
21012         * sysdeps/unix/sysv/linux/configure.ac: Call AC_CHECK_HEADER on
21013         the linux/fanotify.h header.
21014         * sysdeps/unix/sysv/linux/tst-fanotify.c: Check if
21015         HAVE_LINUX_FANOTIFY_H is defined.
21017 2013-12-31  Siddhesh Poyarekar  <siddhesh@redhat.com>
21019         * benchtests/cos-inputs: New inputs.
21020         * benchtests/sin-inputs: Likewise.
21022         * benchtests/atan-inputs: New inputs. Fix name of multiple
21023         precision fallback inputs.
21025         * benchtests/atanh-inputs: New inputs.
21026         * benchtests/tanh-inputs: Likewise.
21028         * benchtests/acosh-inputs: New inputs.
21029         * benchtests/asinh-inputs: Likewise.
21031         * benchtests/cosh-inputs: New inputs.
21032         * benchtests/sinh-inputs: Likewise.
21034         * benchtests/acos-inputs: Add more inputs.
21035         * benchtests/asin-inputs: Likewise.
21037 2013-12-30  Ville Skytta  <ville.skytta@iki.fi>
21039         [BZ #16375]
21040         * manual/arith.texi: Fix spelling.
21041         * manual/charset.texi: Likewise.
21042         * manual/errno.texi: Likewise.
21043         * manual/filesys.texi: Likewise.
21044         * manual/lang.texi: Likewise.
21045         * manual/llio.texi: Likewise.
21046         * manual/locale.texi: Likewise.
21047         * manual/message.texi: Likewise.
21048         * manual/resource.texi: Likewise.
21049         * manual/search.texi: Likewise.
21050         * manual/setjmp.texi: Likewise.
21051         * manual/stdio.texi: Likewise.
21052         * manual/string.texi: Likewise.
21053         * manual/sysinfo.texi: Likewise.
21054         * manual/time.texi: Likewise.
21056 2013-12-27  Carlos O'Donell  <carlos@redhat.com>
21058         * po/sl.po: New file.
21060 2013-12-27  Mike Frysinger  <vapier@gentoo.org>
21062         * .gitignore: Add core/.gdbinit/.gdb_history.
21064 2013-12-27  Allan McRae  <allan@archlinux.org>
21066         [BZ #16369]
21067         * sysdeps/ieee754/dbl-64/s_sin.c (csloww): Fix variable name.
21068         Reported by Il'ya Malakhov <ilmalakhov@yandex.ru>
21070 2013-12-24  Brooks Moses  <bmoses@google.com>
21072         * string/string.h (__CORRECT_ISO_CPP_STRING_H_PROTO): Define for
21073         all compilers that claim C++98 compliance, not just GCC.
21074         * string/strings.h (__CORRECT_ISO_CPP_STRINGS_H_PROTO):
21075         Likewise.
21077 2013-12-24  Maxim Kuvyrkov  <maxim@kugelworks.com>
21079         * NEWS: Restore accidentally deleted bug-fix entries.
21081 2013-12-24  Maxim Kuvyrkov  <maxim@kugelworks.com>
21082             Ondřej Bílka  <neleai@seznam.cz>
21084         [BZ #15073]
21085         * malloc/malloc.c (_int_free): Perform sanity check only if we
21086         have_lock.
21088 2013-12-23  Ondřej Bílka  <neleai@seznam.cz>
21090         [BZ #12986]
21091         * manual/stdio.texi (String Input Conversions): Clarify that character
21092         classes are not supported.
21094 2013-12-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21096         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
21098 2013-12-22  Joseph Myers  <joseph@codesourcery.com>
21100         [BZ #16337]
21101         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
21102         Calculate results for small negative arguments directly rather
21103         than using reflection formula with special underflow handling.
21105         * sysdeps/mach/hurd/Implies: Change unix/bsd/bsd4.4 to unix/bsd.
21106         * sysdeps/unix/bsd/syscalls.list (chflags): Add entry from
21107         sysdeps/unix/bsd/bsd4.4/syscalls.list.
21108         (fchflags): Likewise.
21109         (revoke): Likewise.
21110         (setlogin): Likewise.
21111         (sigaltstack): Likewise.
21112         (wait4): Likewise.
21113         (sigblock): Remove.
21114         (sigsetmask): Likewise.
21115         (wait3): Likewise.
21116         (waitpid): Likewise.
21117         * sysdeps/unix/bsd/bsd4.4/syscalls.list: Remove file.
21118         * sysdeps/unix/sysv/linux/wait3.c: Update directory of included
21119         file.
21120         * sysdeps/unix/bsd/bsd4.4/Makefile: Move to ...
21121         * sysdeps/unix/bsd/Makefile: ... here.
21122         * sysdeps/unix/bsd/bsd4.4/Versions: Move to ...
21123         * sysdeps/unix/bsd/Versions: ... here.
21124         * sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h: Move to ...
21125         * sysdeps/unix/bsd/bits/sockaddr.h: ... here.
21126         * sysdeps/unix/bsd/bsd4.4/cmsg_nxthdr.c: Move to ...
21127         * sysdeps/unix/bsd/cmsg_nxthdr.c: ... here.
21128         * sysdeps/unix/bsd/bsd4.4/sigblock.c: Move to ...
21129         * sysdeps/unix/bsd/sigblock.c: ... here.
21130         * sysdeps/unix/bsd/bsd4.4/sigsetmask.c: Move to ...
21131         * sysdeps/unix/bsd/sigsetmask.c: ... here.
21132         * sysdeps/unix/bsd/bsd4.4/sigvec.c: Move to ...
21133         * sysdeps/unix/bsd/sigvec.c: ... here.
21134         * sysdeps/unix/bsd/bsd4.4/tcdrain.c: Move to ...
21135         * sysdeps/unix/bsd/tcdrain.c: ... here.
21136         * sysdeps/unix/bsd/bsd4.4/tcgetattr.c: Move to ...
21137         * sysdeps/unix/bsd/tcgetattr.c: ... here.
21138         * sysdeps/unix/bsd/bsd4.4/tcsetattr.c: Move to ...
21139         * sysdeps/unix/bsd/tcsetattr.c: ... here.
21140         * sysdeps/unix/bsd/bsd4.4/wait.c: Move to ...
21141         * sysdeps/unix/bsd/wait.c: ... here.
21142         * sysdeps/unix/bsd/bsd4.4/wait3.c: Move to ...
21143         * sysdeps/unix/bsd/wait3.c: ... here.
21144         * sysdeps/unix/bsd/bsd4.4/waitpid.c: Move to ...
21145         * sysdeps/unix/bsd/waitpid.c: ... here.
21147 2013-12-21  Joseph Myers  <joseph@codesourcery.com>
21149         [BZ #16356]
21150         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Also set
21151         round-to-nearest for [!USE_AS_EXPM1L].
21152         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Likewise.
21153         * math/auto-libm-test-in: Do not expect cosh tests to fail.  Add
21154         more tests of exp and exp10.  Expect some exp10 tests to miss
21155         exceptions or fail in directed rounding modes.
21156         * math/auto-libm-test-out: Regenerated.
21157         * math/libm-test.inc (exp10_tonearest_test_data): New array.
21158         (exp10_test_tonearest): New function.
21159         (exp10_towardzero_test_data): New array.
21160         (exp10_test_towardzero): New function.
21161         (exp10_downward_test_data): New array.
21162         (exp10_test_downward): New function.
21163         (exp10_upward_test_data): New array.
21164         (exp10_test_upward): New function.
21165         (main): Call the new functions.
21166         * sysdeps/i386/fpu/libm-test-ulps: Update.
21167         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21169 2013-12-20  Joseph Myers  <joseph@codesourcery.com>
21171         * math/auto-libm-test-in: Add more tests of acos, acosh, asin,
21172         asinh, atan, atan2, atanh, cbrt, cos and cosh.
21173         * math/auto-libm-test-out: Regenerated.
21174         * math/libm-test.inc (acosh_test_data): Add more tests.
21175         (atanh_test_data): Likewise.
21176         (ceil_test_data): Likewise.
21177         (copysign_test_data): Likewise.
21178         * sysdeps/i386/fpu/libm-test-ulps: Update.
21179         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21181         * timezone/checktab.awk: Update from tzcode 2013i.
21182         * timezone/private.h: Likewise.
21183         * timezone/scheck.c: Likewise.
21184         * timezone/tzfile.h: Likewise.
21185         * timezone/tzselect.ksh: Likewise.
21186         * timezone/zdump.c: Likewise.
21187         * timezone/zic.c: Likewise.
21189         * math/auto-libm-test-in: Add tests of cpow.
21190         * math/auto-libm-test-out: Regenerated.
21191         * math/libm-test.inc (cpow_test_data): Use AUTO_TESTS_cc_c.
21192         * math/gen-auto-libm-tests.c (func_calc_method): Add value
21193         mpc_cc_c.
21194         (func_calc_desc): Add mpc_cc_c union field.
21195         (test_functions): Add cpow.
21196         (special_fill_2pi): New function.
21197         (special_real_inputs): Add 2pi.
21198         (calc_generic_results): Handle mpc_cc_c.
21199         * sysdeps/i386/fpu/libm-test-ulps: Update.
21200         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21202         * math/auto-libm-test-in: Add tests of ccos, ccosh, cexp, clog,
21203         csqrt, ctan and ctanh.
21204         * math/auto-libm-test-out: Regenerated.
21205         * math/libm-test.inc (TEST_COND_x86_64): New macro.
21206         (TEST_COND_x86): Likewise.
21207         (ccos_test_data): Use AUTO_TESTS_c_c.
21208         (ccosh_test_data): Likewise.
21209         (cexp_test_data): Likewise.
21210         (clog_test_data): Likewise.
21211         (csqrt_test_data): Likewise.
21212         (ctan_test_data): Likewise.
21213         (ctan_tonearest_test_data): Likewise.
21214         (ctan_towardzero_test_data): Likewise.
21215         (ctan_downward_test_data): Likewise.
21216         (ctan_upward_test_data): Likewise.
21217         (ctanh_test_data): Likewise.
21218         (ctanh_tonearest_test_data): Likewise.
21219         (ctanh_towardzero_test_data): Likewise.
21220         (ctanh_downward_test_data): Likewise.
21221         (ctanh_upward_test_data): Likewise.
21222         * math/gen-auto-libm-tests.c (func_calc_method): Add value
21223         mpc_c_c.
21224         (func_calc_desc): Add mpc_c_c union field.
21225         (FUNC_mpc_c_c): New macro.
21226         (test_functions): Add cacos, cacosh, casin, casinh, catan, catanh,
21227         ccos, ccosh, cexp, clog, clog10, csin, csinh, csqrt, ctan and
21228         ctanh.
21229         (special_fill_min_subnorm_p120): New function.
21230         (special_real_inputs): Add min_subnorm_p120.
21231         (calc_generic_results): Handle mpc_c_c.
21232         * sysdeps/i386/fpu/libm-test-ulps: Update.
21233         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21235 2013-12-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
21237         * sysdeps/ieee754/dbl-64/s_sin.c (do_cos, do_cos_slow, do_sin)
21238         (do_sin_slow): New functions.
21239         (__sin, __cos, slow1, slow2, sloww1, sloww2, bsloww1, bsloww2)
21240         (cslow2, csloww1, csloww2): Use the new functions.
21242         * sysdeps/ieee754/dbl-64/s_sin.c (sloww1): Add new argument M.
21243         Use M to change sign of result instead of X.  Assume X is
21244         positive.
21245         (csloww1): Likewise.
21246         (__sin): Adjust.
21247         (__cos): Adjust.
21249         * sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute): Remove
21250         arguments A and DA.
21251         (__sin): Adjust.
21252         (__cos): Likewise.
21254         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Use DA directly.
21255         (__cos): Likewise.
21256         (sloww1): Don't adjust sign of DX.
21257         (csloww1): Likewise.
21258         (sloww2): Use X directly and don't adjust sign of DX.
21259         (csloww2): Likewise.
21261 2013-12-19  Joseph Myers  <joseph@codesourcery.com>
21263         * math/auto-libm-test-in: Add tests of cabs and carg.
21264         * math/auto-libm-test-out: Regenerated.
21265         * math/libm-test.inc (cabs_test_data): Use AUTO_TESTS_c_f.
21266         (carg_test_data): Likewise.
21267         * math/gen-auto-libm-tests.c (func_calc_method): Add value
21268         mpc_c_f.
21269         (func_calc_desc): Add mpc_c_f union field.
21270         (test_functions): Add cabs and carg.
21271         (calc_generic_results): Handle mpc_c_f.
21273         * sysdeps/powerpc/powerpc32/libgcc-compat.S
21274         [_SOFT_FLOAT || __NO_FPRS__] (__fixdfdi_v_glibc20): Do not define
21275         as a macro and a compat symbol.
21276         [_SOFT_FLOAT || __NO_FPRS__] (__fixsfdi_v_glibc20): Likewise.
21277         [_SOFT_FLOAT || __NO_FPRS__] (__fixunsdfdi_v_glibc20): Likewise.
21278         [_SOFT_FLOAT || __NO_FPRS__] (__fixunssfdi_v_glibc20): Likewise.
21279         [_SOFT_FLOAT || __NO_FPRS__] (__floatdidf_v_glibc20): Likewise.
21280         [_SOFT_FLOAT || __NO_FPRS__] (__floaddisf_v_glibc20): Likewise.
21281         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixdfdi): Do
21282         not use .hidden.
21283         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixsfdi):
21284         Likewise.
21285         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixunsdfdi):
21286         Likewise.
21287         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixunssfdi):
21288         Likewise.
21289         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__floaddidf):
21290         Likewise.
21291         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__floaddisf):
21292         Likewise.
21293         * sysdeps/powerpc/nofpu/Versions (libc): Remove __fixdfdi,
21294         __fixsfdi, __fixunsdfdi, __fixunssfdi, __floatdidf and __floatdisf
21295         from GLIBC_2.3.2.
21297 2013-12-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21299         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
21301 2013-12-19  Joseph Myers  <joseph@codesourcery.com>
21303         * manual/texinfo.tex: Update to version 2013-11-26.10 with
21304         trailing whitespace removed.
21305         * scripts/config.guess: Update to version 2013-11-29.
21306         * scripts/config.sub: Update to version 2013-10-01.
21308         * math/auto-libm-test-in: Add tests of sincos.
21309         * math/auto-libm-test-out: Regenerated.
21310         * math/libm-test.inc (sincos_test_data): Use AUTO_TESTS_fFF_11.
21311         * math/gen-auto-libm-tests.c (func_calc_method): Add value
21312         mpfr_f_11.
21313         (func_calc_desc): Add mpfr_f_11 union field.
21314         (test_functions): Add sincos.
21315         (calc_generic_results): Handle mpfr_f_11.
21316         * sysdeps/i386/fpu/libm-test-ulps: Update.
21317         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21319 2013-12-19  Andreas Schwab  <schwab@suse.de>
21321         * sysdeps/powerpc/powerpc64/power7/memchr.S: Fix argument of
21322         CALL_MCOUNT.
21323         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.
21324         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S
21325         [USE_IN_EXTENDED_LOCALE_MODEL]: Likewise.
21327 2013-12-19  Joseph Myers  <joseph@codesourcery.com>
21329         * math/gen-libm-test.pl (%beautify): Remove M_* constants.
21330         * sysdeps/i386/fpu/libm-test-ulps: Update.
21331         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21333         [BZ #16293]
21334         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]: Set
21335         round-to-nearest mode when using frndint.
21336         * sysdeps/i386/fpu/s_expm1.S (__expm1): Likewise.
21337         * sysdeps/i386/fpu/s_expm1f.S (__expm1f): Likewise.
21338         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]:
21339         Likewise.
21340         * math/auto-libm-test-in: Add more tests of expm1.  Do not expect
21341         sinh test to fail.
21342         * math/auto-libm-test-out: Regenerated.
21343         * math/libm-test.inc (TEST_COND_x86_64): Remove macro.
21344         (TEST_COND_x86): Likewise.
21345         (expm1_tonearest_test_data): New array.
21346         (expm1_test_tonearest): New function.
21347         (expm1_towardzero_test_data): New array.
21348         (expm1_test_towardzero): New function.
21349         (expm1_downward_test_data): New array.
21350         (expm1_test_downward): New function.
21351         (expm1_upward_test_data): New array.
21352         (expm1_test_upward): New function.
21353         (main): Run the new test functions.
21354         * sysdeps/i386/fpu/libm-test-ulps: Update.
21355         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21357         * include/features.h: Update comment documenting feature test
21358         macros.  Mention _DEFAULT_SOURCE in comment.
21359         [_GNU_SOURCE] (_DEFAULT_SOURCE): Undefine and redefine.
21360         [_DEFAULT_SOURCE]: Undefine and redefine _DEFAULT_SOURCE,
21361         _BSD_SOURCE and _SVID_SOURCE.
21362         [!__STRICT_ANSI__ && !_ISOC99_SOURCE && !_POSIX_SOURCE &&
21363         !_POSIX_C_SOURCE && !_XOPEN_SOURCE && !_BSD_SOURCE &&
21364         !_SVID_SOURCE]: Likewise.
21365         [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
21366         (__USE_POSIX_IMPLICITLY): Define.
21367         [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
21368         (_POSIX_SOURCE): Undefine and redefine.
21369         [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
21370         (_POSIX_C_SOURCE): Likewise.
21371         * manual/creature.texi (_DEFAULT_SOURCE): Document.
21372         (Feature Test Macros): Update documentation of default features.
21374 2013-12-19  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
21376         * benchtests/Makefile: Add bench-strtok.
21377         * benchtests/bench-strtok.c: New file: strtok benchtest.
21379 2013-12-19  Allan McRae  <allan@archlinux.org>
21381         * manual/install.texi: Suppress menu for plain text output.
21382         * INSTALL: Regenerated.
21384 2013-12-18  Brooks Moses  <bmoses@google.com>
21386         [BZ #15846]
21387         * misc/getauxval.c: Include errno.h.
21388         (__getauxval): Set errno to ENOENT if the requested type is not
21389         found.
21390         * misc/sys/auxv.h (getauxval): Document that it may set errno;
21391         don't declare with __attribute_const__.
21392         * elf/tst-auxv.c: Add tests for errno and type-not-found case.
21393         * manual/startup.texi: Document that getauxval sets errno.
21395 2013-12-18  Joseph Myers  <joseph@codesourcery.com>
21397         * math/auto-libm-test-in: Add tests of jn and yn.
21398         * math/auto-libm-test-out: Regenerated.
21399         * math/libm-test.inc (jn_test_data): Use AUTO_TESTS_if_f.
21400         (yn_test_data): Likewise.
21401         * math/gen-auto-libm-tests.c (func_calc_method): Add value
21402         mpfr_if_f.
21403         (func_calc_desc): Add mpfr_if_f union field.
21404         (FUNC_mpfr_if_f): New macro.
21405         (test_functions): Add jn and yn.
21406         (calc_generic_results): Assert type of second input for
21407         mpfr_ff_f.  Handle mpfr_if_f.
21408         (output_for_one_input_case): Disable all checking for arguments
21409         fitting floating-point types in case of an integer argument.
21410         * sysdeps/i386/fpu/libm-test-ulps: Update.
21411         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21413         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
21414         Don't expect fegetround reference in libm.so.
21416 2013-12-17  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
21418         * sysdeps/ieee754/dbl-64/Makefile (CFLAGS-e_sqrt.c): Add
21419         $(config-cflags-nofma).
21421 2013-12-18  Joseph Myers  <joseph@codesourcery.com>
21423         * math/auto-libm-test-in: Mark some hypot tests no-test-inline.
21424         * math/auto-libm-test-out: Regenerated.
21426         [BZ #16338]
21427         * sysdeps/ieee754/ldbl-128/e_logl.c (__ieee754_logl): Use __frexpl
21428         to determine exponent and adjust argument to have exponent of -1.
21429         * math/auto-libm-test-in: Add more tests of log, log10, log1p and
21430         log2.
21431         * math/auto-libm-test-out: Regenerated.
21432         * sysdeps/i386/fpu/libm-test-ulps: Update.
21433         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21435 2013-12-18  Ondřej Bílka  <neleai@seznam.cz>
21437         * manual/probes.texi: Remove cases when per-thread arenas are
21438         disabled.
21440 2013-12-18  Andreas Schwab  <schwab@suse.de>
21442         * sysdeps/i386/i686/multiarch/strstr.c: Remove.
21443         * sysdeps/i386/i686/multiarch/strstr-c.c: Remove.
21444         * sysdeps/i386/i686/multiarch/strcasestr.c: Remove.
21445         * sysdeps/i386/i686/multiarch/strcasestr-nonascii.c: Remove.
21446         * sysdeps/i386/i686/multiarch/Makefile: Update.
21447         * sysdeps/i386/i686/multiarch/ifunc-impl-list.c: Update.
21449 2013-12-17  Joseph Myers  <joseph@codesourcery.com>
21451         * sysdeps/unix/bsd/bsd4.4/bits/errno.h: Remove file.
21452         * sysdeps/unix/bsd/bsd4.4/bits/ioctls.h: Likewise.
21454 2013-12-17  Paul Eggert  <eggert@cs.ucla.edu>
21456         [BZ #15968]
21457         Support TZ transition times < 00:00:00.
21458         This is needed for version-3 tz-format files; it supports time
21459         stamps past 2037 for America/Godthab (the only entry in the tz
21460         database for which this change is relevant).
21461         * manual/time.texi (TZ Variable): Document transition times
21462         from -167:59:59 through -00:00:01.
21463         * time/tzset.c (tz_rule): Time of day is now signed.
21464         (__tzset_parse_tz): Parse negative time of day.
21466         Document TZ transition times >= 25:00:00.
21467         * manual/time.texi (TZ Variable): Document transition times from
21468         25:00:00 through 167:59:59.  These are already supported, and this
21469         support will help with version-3 tz-format files.
21471         * manual/time.texi (TZ Variable): Modernize North America example
21472         to reflect current (i.e., 2007-and-later) daylight saving rules.
21474         * manual/time.texi (TZ Variable): POSIX.1 hour can be 24.
21476 2013-12-17  Joseph Myers  <joseph@codesourcery.com>
21478         * sysdeps/unix/bsd/bits/posix_opt.h: Remove file.
21479         * sysdeps/unix/bsd/bits/stat.h: Likewise.
21480         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/environments.h: Likewise.
21481         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h: Likewise.
21482         * sysdeps/unix/bsd/bsd4.4/freebsd/sys/sysmacros.h: Likewise.
21483         * sysdeps/unix/bsd/bsdstat.h: Likewise.
21484         * sysdeps/unix/bsd/clock.c: Likewise.
21485         * sysdeps/unix/bsd/i386/vfork.S: Likewise.
21486         * sysdeps/unix/bsd/i386/wait3.S: Likewise.
21487         * sysdeps/unix/bsd/init-posix.c: Likewise.
21488         * sysdeps/unix/bsd/poll.c: Likewise.
21489         * sysdeps/unix/bsd/ptsname.c: Likewise.
21490         * sysdeps/unix/bsd/seekdir.c: Likewise.
21491         * sysdeps/unix/bsd/setegid.c: Likewise.
21492         * sysdeps/unix/bsd/seteuid.c: Likewise.
21493         * sysdeps/unix/bsd/setgid.c: Likewise.
21494         * sysdeps/unix/bsd/setrgid.c: Likewise.
21495         * sysdeps/unix/bsd/setruid.c: Likewise.
21496         * sysdeps/unix/bsd/setsid.c: Likewise.
21497         * sysdeps/unix/bsd/setuid.c: Likewise.
21498         * sysdeps/unix/bsd/sigaction.c: Likewise.
21499         * sysdeps/unix/bsd/sigprocmask.c: Likewise.
21500         * sysdeps/unix/bsd/sigsuspend.c: Likewise.
21501         * sysdeps/unix/bsd/sys/reboot.h: Likewise.
21502         * sysdeps/unix/bsd/telldir.c: Likewise.
21503         * sysdeps/unix/bsd/times.c: Likewise.
21504         * sysdeps/unix/bsd/usleep.c: Likewise.
21506         * misc/Makefile (install-lib): Remove libbsd-compat.a.
21507         ($(objpfx)libbsd-compat.a): Remove rule.
21509         * include/features.h (__FAVOR_BSD): Do not define.
21510         * manual/creature.texi (_BSD_SOURCE): Do not document as enabling
21511         features conflicting with POSIX.
21512         (_GNU_SOURCE): Do not mention interaction with _BSD_SOURCE.
21513         (_BSD_SOURCE): Remove description of not being a subset of other
21514         feature test macros.
21515         * manual/job.texi (getpgrp): Do not document BSD version.
21516         (getpgid): Do not document by reference to BSD getpgrp.
21517         * posix/unistd.h [__FAVOR_BSD]: Remove conditional code.
21518         * setjmp/setjmp.h [__FAVOR_BSD]: Likewise.
21519         * signal/signal.h [__FAVOR_BSD]: Likewise.
21520         * sysdeps/gnu/netinet/tcp.h (struct tcphdr): Use anonymous unions
21521         instead of making contents conditional on [__FAVOR_BSD].
21522         * sysdeps/gnu/netinet/udp.h (struct udphdr): Likewise.
21524 2013-12-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21526         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
21528 2013-12-17  Joseph Myers  <joseph@codesourcery.com>
21530         [BZ #16314]
21531         * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Adjust up
21532         values below 2**-450, not 2**-500.
21533         * math/auto-libm-test-in: Don't allow spurious underflow from
21534         hypot.
21535         * math/auto-libm-test-out: Regenerated.
21537         [BZ #16316]
21538         [BZ #16330]
21539         * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Update
21540         values of ha and hb and sort them after adjusting subnormal
21541         arguments.
21542         * sysdeps/ieee754/ldbl-128/e_hypotl.c (__ieee754_hypotl):
21543         Likewise.
21544         * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Update
21545         values of ea and eb and sort them after adjusting subnormal
21546         arguments.
21547         * math/auto-libm-test-in: Do not expect some hypot tests of
21548         subnormals to fail.  Add more hypot tests.
21549         * math/auto-libm-test-out: Regenerated.
21551 2013-12-16  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
21553         [BZ #13304]
21554         * sysdeps/sh/s_fma.c: New file.
21555         * sysdeps/sh/s_fmaf.c: New file.
21556         * sysdeps/sh/soft-fp/sfp-machine.h: New file.  Based on arm
21557         version.
21558         * sysdeps/sh/Implies: Add sh/soft-fp.
21560 2013-12-16  Roland McGrath  <roland@hack.frob.com>
21562         * elf/dl-error.c (struct catch): Add new member `errcode'.  Add a
21563         level of indirection to members `objname', `errstring', `malloced'.
21564         (_dl_signal_error): Store through pointers in *LCATCH rather modifying
21565         *LCATCH itself.  Set *LCATCH->errcode to ERRCODE rather than passing
21566         it as the __longjmp argument (just pass 1 instead).
21567         (_dl_catch_error): Initialize C with argument pointers and address of
21568         volatile local ERRCODE rather than copying values out of C at return.
21570 2013-12-16  Joseph Myers  <joseph@codesourcery.com>
21572         * math/auto-libm-test-in: Add tests of atan2, hypot and pow.
21573         * math/auto-libm-test-out: Regenerated.
21574         * math/libm-test.inc (atan2_test_data): Use AUTO_TESTS_ff_f.
21575         (hypot_test_data): Likewise.
21576         (pow_test_data): Likewise.
21577         (pow_tonearest_test_data): Likewise.
21578         * math/gen-auto-libm-tests.c (func_calc_method): Add value
21579         mpfr_ff_f.
21580         (func_calc_desc): Add mpfr_ff_f union field.
21581         (FUNC_mpfr_ff_f): New macro.
21582         (test_functions): Add atan2, hypot and pow.
21583         (special_fill_min): New function.
21584         (special_fill_minus_min): Likewise.
21585         (special_fill_min_subnorm): Likewise.
21586         (special_fill_minus_min_subnorm): Likewise.
21587         (special_real_inputs): Add min, -min, min_subnorm and
21588         -min_subnorm.
21589         (calc_generic_results): Handle mpfr_ff_f.
21590         * sysdeps/i386/fpu/libm-test-ulps: Update.
21591         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21593 2013-12-16  Will Newton  <will.newton@linaro.org>
21595         * manual/memory.texi (Malloc Examples): Mention aligned_alloc.
21596         (Aligned Memory Blocks): Add documentation for aligned_alloc
21597         and suggest it as an alternative to posix_memalign.
21598         (Hooks for Malloc): Document __memalign_hook is also called
21599         for aligned_alloc.  (Summary of Malloc): Add summary for
21600         aligned alloc.  Document __memalign_hook is also called
21601         for aligned_alloc.
21603 2013-12-16  Will Newton  <will.newton@linaro.org>
21605         * manual/memory.texi (Malloc Examples): Clarify default
21606         alignment documentation.  Suggest posix_memalign rather
21607         than memalign or valloc.
21608         (Aligned Memory Blocks): Remove suggestion to use memalign
21609         or valloc.  Remove obsolete comment about BSD.
21610         Document memalign errno values and mark the function obsolete.
21611         Document posix_memalign returned error codes.  Mark valloc
21612         as obsolete.  (Hooks for Malloc): __memalign_hook is also
21613         called for posix_memalign and valloc.
21614         (Summary of Malloc): Add posix_memalign to function summary.
21615         __memalign_hook is also called for posix_memalign and valloc.
21617 2013-12-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
21619         * sysdeps/ieee754/dbl-64/s_sin.c (TAYLOR_SINCOS): Rename to
21620         TAYLOR_SIN.
21621         (__sin): Adjust.
21622         (__cos): Likewise.
21623         (sloww): Use mynumber union.  Expand ternary operator into
21624         if-else statements.
21625         (cslow): use mynumber union.
21627 2013-12-16  Allan McRae  <allan@archlinux.org>
21629         * configure.ac: Set AUTOCONF when maintainer-mode is not used.
21630         * configure: Regenerated.
21632         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update file name.
21634         [BZ #14120]
21635         * configure.ac: Added --enable-maintainer-mode. Check for
21636         autoconf when enabled.
21637         * configure: Regenerated.
21639         * nscd/nscd.service: New file.
21640         * nscd/nscd.tmpfiles: New file.
21642 2013-12-14  Ondřej Bílka  <neleai@seznam.cz>
21644         [BZ #12100]
21645         * sysdeps/x86_64/multiarch/strstr-sse2-unaligned.S: New file
21646         * sysdeps/x86_64/multiarch/strstr-c.c: Moved to ...
21647         * sysdeps/x86_64/multiarch/strstr.c: ... here.
21648         (strstr): Add __strstr_sse2_unaligned ifunc.
21649         * sysdeps/x86_64/multiarch/strcasestr-c.c: Moved to ...
21650         * sysdeps/x86_64/multiarch/strcasestr.c ... here.
21651         (strcasestr): Remove __strcasestr_sse42 ifunc.
21652         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: Remove.
21653         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update.
21654         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Update.
21656 2013-12-14  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
21658         * sysdeps/sh/sh4/fpu/bits/fenv.h: Move to ...
21659         * sysdeps/sh/bits/fenv.h: ... here.
21660         * sysdeps/sh/sh4/fpu/bits: Remove directory.
21662 2013-12-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21664         * NEWS: Mention ppc64 STT_GNU_IFUNC support.
21666         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add hypot and
21667         hypotf multiarch implementations.
21668         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-power7.c: New file.
21669         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-ppc64.c: New file.
21670         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot.c: New file:
21671         multiarch hypot for PPC64.
21672         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-power7.c: New file.
21673         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-ppc64.c: New file.
21674         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf.c : New file:
21675         multiarch hypotf for PPC64.
21677         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add modf and
21678         modff multiarch implementations.
21679         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-power5+.c: New file.
21680         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c: New file.
21681         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c: New file:
21682         multiarch modf for PPC64.
21683         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-power5+.c: New file.
21684         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-ppc64.c: New file.
21685         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c : New file:
21686         multiarch modff for PPC64.
21688         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add logb, logbf,
21689         and logl multiarch implementations.
21690         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-power7.c: New file.
21691         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-ppc64.c: New file.
21692         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c: New file:
21693         multiarch logb for PPC64.
21694         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-power7.c: New file.
21695         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-ppc64.c: New file.
21696         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf.c: New file:
21697         multiarch logb for PPC64.
21698         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-power7.c: New file.
21699         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-ppc64.c: New file.
21700         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl.c: New file:
21701         multiarch logb for PPC64.
21703         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isinf and
21704         isinff multiarch implementation.
21705         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S: New
21706         file.
21707         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-ppc64.S: New file.
21708         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c: New file:
21709         multiarch isinf for PPC64.
21710         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff-ppc64.c: New
21711         file.
21712         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c: New file:
21713         multiarch isinff for PPC64.
21715         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add finite and
21716         finitef multiarch implementation.
21717         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power7.S: New
21718         file.
21719         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-ppc64.S: New file.
21720         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c: New file:
21721         multiarch finite for PPC64.
21722         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef-ppc64.c: New
21723         file.
21724         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c: New file:
21725         multiarch finitef for PPC64.
21727         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llrint and
21728         lrint multiarch implementation.
21729         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power6x.S: New
21730         file.
21731         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-ppc64.S: New file.
21732         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c: New file:
21733         multiarch llrint for PPC64.
21734         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_lrint.c: New file:
21735         multiarch lrint for PPC64.
21737         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add copysign/
21738         copysignf multiarch implementation.
21739         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-power6.S: New
21740         file.
21741         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-ppc64.S: New
21742         file.
21743         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: New file:
21744         multiarch copysign for PPC64.
21745         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c: New file:
21746         multiarch copysignf for PPC64.
21748         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add trunc/truncf
21749         multiarch implementation.
21750         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-power5+.S: New
21751         file.
21752         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-ppc64.S: New
21753         file.
21754         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-power5+.S: New
21755         file.
21756         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-ppc64.S: New
21757         file.
21758         multiarch llround for PPC64.
21759         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c: New file:
21760         multiarch trunc for PPC64.
21761         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c: New file:
21762         multiarch truncf for PPC64.
21764         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add round/roundf
21765         multiarch implementation.
21766         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-power5+.S: New
21767         file.
21768         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-ppc64.S: New
21769         file.
21770         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-power5+.S: New
21771         file.
21772         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-ppc64.S: New
21773         file.
21774         multiarch llround for PPC64.
21775         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c: New file:
21776         multiarch round for PPC64.
21777         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c: New file:
21778         multiarch roundf for PPC64.
21780         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add floor/floorf
21781         multiarch implementation.
21782         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-power5+.S: New
21783         file.
21784         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-ppc64.S: New
21785         file.
21786         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-power5+.S: New
21787         file.
21788         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-ppc64.S: New
21789         file.
21790         multiarch llround for PPC64.
21791         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c: New file:
21792         multiarch floor for PPC64.
21793         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c: New file:
21794         multiarch floorf for PPC64.
21796         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add ceil/ceilf
21797         multiarch implementation.
21798         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-power5+.S: New
21799         file.
21800         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-ppc64.S: New
21801         file.
21802         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-power5+.S: New
21803         file.
21804         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-ppc64.S: New
21805         file.
21806         multiarch llround for PPC64.
21807         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c: New file:
21808         multiarch ceil for PPC64.
21809         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c: New file:
21810         multiarch ceilf for PPC64.
21812         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llround
21813         multiarch implementation.
21814         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S: New
21815         file.
21816         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S: New
21817         file.
21818         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S: New
21819         file.
21820         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c: New file:
21821         multiarch llround for PPC64.
21822         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_lround.c: New file:
21823         multiarch lround for PPC64.
21825         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isnan
21826         multiarch implementation.
21827         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power5.S: New file.
21828         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6.S: New file.
21829         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6x.S: New
21830         file.
21831         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power7.S: New file.
21832         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S: New file.
21833         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c: New file:
21834         multiarch isnan for PPC64.
21835         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c: New file:
21836         multiarch isnanf for PPC64.
21838         * sysdeps/powerpc/powerpc64/power5+/fpu/multiarch/Implies: New file.
21839         * sysdeps/powerpc/powerpc64/power5/fpu/multiarch/Implies: New file.
21840         * sysdeps/powerpc/powerpc64/power6/fpu/multiarch/Implies: New file.
21841         * sysdeps/powerpc/powerpc64/power6x/fpu/multiarch/Implies: New file.
21842         * sysdeps/powerpc/powerpc64/power7/fpu/multiarch/Implies: New file
21843         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/Implies: Remove.
21845         * sysdeps/powerpc/fpu/w_sqrt.c: Remove file
21846         * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
21847         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
21848         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
21850         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add stpcpy
21851         multiarch implementations.
21852         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
21853         (__libc_ifunc_impl_list): Likewise.
21854         * sysdeps/powerpc/powerpc64/multiarch/stpcpy-power7.c: New file.
21855         * sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.c: New file.
21856         * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c : New file:
21857         multiarch stpcpy for PPC64.
21859         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcpy
21860         multiarch implementations.
21861         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
21862         (__libc_ifunc_impl_list): Likewise.
21863         * sysdeps/powerpc/powerpc64/multiarch/strcpy-power7.c: New file.
21864         * sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.c: New file.
21865         * sysdeps/powerpc/powerpc64/multiarch/strcpy.c : New file:
21866         multiarch strcpy for PPC64.
21868         * string/wordcopy.c (_wordcopy_fwd_aligned): Add define to
21869         redefine function name.
21870         (_wordcopy_fwd_dest_aligned): Likewise.
21871         (_wordcopy_bwd_aligned): Likewise.
21872         (_wordcopy_bwd_dest_aligned): Likewise.
21873         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wordcopy
21874         multiarch implementations.
21875         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
21876         (__libc_ifunc_impl_list): Likewise.
21877         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power6.c: New file.
21878         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power7.c: New file.
21879         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-ppc64.c: New file.
21880         * sysdeps/powerpc/powerpc64/multiarch/wordcopy.c : New file:
21881         multiarch wcscpy for PPC64.
21883         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcscpy
21884         multiarch implementations.
21885         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
21886         (__libc_ifunc_impl_list): Likewise.
21887         * sysdeps/powerpc/powerpc64/multiarch/wcscpy-power6.c: New file.
21888         * sysdeps/powerpc/powerpc64/multiarch/wcscpy-power7.c: New file.
21889         * sysdeps/powerpc/powerpc64/multiarch/wcscpy-ppc64.c: New file.
21890         * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c : New file:
21891         multiarch wcscpy for PPC64.
21893         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcsrchr
21894         multiarch implementations.
21895         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
21896         (__libc_ifunc_impl_list): Likewise.
21897         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power6.c: New file.
21898         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power7.c: New file.
21899         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-ppc64.c: New file.
21900         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c : New file:
21901         multiarch wcsrchr for PPC64.
21903         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcschr
21904         multiarch implementations.
21905         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
21906         (__libc_ifunc_impl_list): Likewise.
21907         * sysdeps/powerpc/powerpc64/multiarch/wcschr-power6.c: New file.
21908         * sysdeps/powerpc/powerpc64/multiarch/wcschr-power7.c: New file.
21909         * sysdeps/powerpc/powerpc64/multiarch/wcschr-ppc64.c: New file.
21910         * sysdeps/powerpc/powerpc64/multiarch/wcschr.c : New file:
21911         multiarch wcschr for PPC64.
21913         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strchrnul
21914         multiarch implementations.
21915         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
21916         (__libc_ifunc_impl_list): Likewise.
21917         * sysdeps/powerpc/powerpc64/multiarch/strchrnul-power7.S: New file.
21918         * sysdeps/powerpc/powerpc64/multiarch/strchrnul-ppc64.c: New file.
21919         * sysdeps/powerpc/powerpc64/multiarch/strchrnul.c: New file:
21920         multiarch strchrnul for PPC64.
21922         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strchr multiarch
21923         implementations.
21924         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
21925         (__libc_ifunc_impl_list): Likewise.
21926         * sysdeps/powerpc/powerpc64/multiarch/rtld-strchr.S: New file.
21927         * sysdeps/powerpc/powerpc64/multiarch/strchr-power7.S: New file.
21928         * sysdeps/powerpc/powerpc64/multiarch/strchr-ppc64.S: New file.
21929         * sysdeps/powerpc/powerpc64/multiarch/strchr.c: New file: multiarch
21930         strchr for PPC64.
21932         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncmp multiarch
21933         implementations.
21934         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
21935         (__libc_ifunc_impl_list): Likewise.
21936         * sysdeps/powerpc/powerpc64/multiarch/strncmp-power4.S: New file.
21937         * sysdeps/powerpc/powerpc64/multiarch/strncmp-power7.S: New file.
21938         * sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S: New file.
21939         * sysdeps/powerpc/powerpc64/multiarch/strncmp.c: New file: multiarch
21940         strncmp for PPC64.
21942         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncasecmp
21943         multiarch implementations.
21944         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
21945         (__libc_ifunc_impl_list): Likewise.
21946         * sysdeps/powerpc/powerpc64/multiarch/strncase-power7.c: New file.
21947         * sysdeps/powerpc/powerpc64/multiarch/strncase.c: New file: multiarch
21948         strncasecmp for PPC64.
21949         * sysdeps/powerpc/powerpc64/multiarch/strncase_l-power7.c: New file.
21950         * sysdeps/powerpc/powerpc64/multiarch/strncase_l.c: New file:
21951         multiarch strncasecmp_l for PPC64.
21953         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcasecmp
21954         multiarch implementations.
21955         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
21956         (__libc_ifunc_impl_list): Likewise.
21957         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: New file.
21958         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c: New file:
21959         multiarch strcasecmp for PPC64.
21960         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: New
21961         file.
21962         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c: new file:
21963         multiarch strcasecmp_l for PPC64.
21965         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strnlen multiarch
21966         implementations.
21967         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
21968         (__libc_ifunc_impl_list): Likewise.
21969         * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: New file.
21970         * sysdeps/powerpc/powerpc64/multiarch/strnlen-ppc64.c: New file.
21971         * sysdeps/powerpc/powerpc64/multiarch/strnlen.c: New file: multiarch
21972         strnlen for PPC64.
21974         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strlen multiarch
21975         implementations.
21976         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
21977         (__libc_ifunc_impl_list): Likewise.
21978         * sysdeps/powerpc/powerpc64/multiarch/strlen-power7.S: New file.
21979         * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S: New file.
21980         * sysdeps/powerpc/powerpc64/multiarch/strlen.c: New file: multiarch
21981         strlen for PPC64.
21983         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add rawmemch multiarch
21984         implementations.
21985         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
21986         (__libc_ifunc_impl_list): Likewise.
21987         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S: New file.
21988         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr-ppc64.c: New file.
21989         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c: New file: multiarch
21990         rawmemrchr for PPC64.
21992         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memrchr multiarch
21993         implementation.
21994         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
21995         (__libc_ifunc_impl_list): Likewise.
21996         * sysdeps/powerpc/powerpc64/multiarch/memrchr-power7.S: New file.
21997         * sysdeps/powerpc/powerpc64/multiarch/memrchr-ppc64.c: New file.
21998         * sysdeps/powerpc/powerpc64/multiarch/memrchr.c: New file: multiarch
21999         memrchr for PPC64.
22001         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memchr multiarch
22002         implementation.
22003         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
22004         (__libc_ifunc_impl_list): Likewise.
22005         * sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S: New file.
22006         * sysdeps/powerpc/powerpc64/multiarch/memchr-ppc64.c: New file.
22007         * sysdeps/powerpc/powerpc64/multiarch/memchr.c: New file: multiarch
22008         memchr for PPC64.
22010         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add mempcpy multiarch
22011         implementation.
22012         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
22013         (__libc_ifunc_impl_list): Likewise.
22014         * sysdeps/powerpc/powerpc64/multiarch/mempcpy-power7.S: New file.
22015         * sysdeps/powerpc/powerpc64/multiarch/mempcpy-ppc64.c: New file.
22016         * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c: New file: multiarch
22017         mempcpy for PPC64.
22019         * sysdeps/powerpc/powerpc64/memset.S (NO_BZERO_IMPL): Add macro to
22020         avoid cretion of __bzero symbol.
22021         * sysdeps/powerpc/powerpc64/power4/memset.S (NO_BZERO_IMPL):
22022         Likewise.
22023         * sysdeps/powerpc/powerpc64/power6/memset.S (NO_BZERO_IMPL):
22024         Likewise.
22025         * sysdeps/powerpc/powerpc64/power7/memset.S (NO_BZERO_IMPL):
22026         Likewise.
22027         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memset/bzero
22028         multiarch implementations.
22029         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
22030         (__libc_ifunc_impl_list): Likewise.
22031         * sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S: New file.
22032         * sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S: New file.
22033         * sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S: New file.
22034         * sysdeps/powerpc/powerpc64/multiarch/bzero.c: New file: multiarch
22035         bzero for PPC32.
22036         * sysdeps/powerpc/powerpc64/multiarch/memset-power4.S: New file.
22037         * sysdeps/powerpc/powerpc64/multiarch/memset-power6.S: New file.
22038         * sysdeps/powerpc/powerpc64/multiarch/memset-power7.S: New file.
22039         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S: New file.
22040         * sysdeps/powerpc/powerpc64/multiarch/memset.c: New file: multiarch
22041         memset for PPC64.
22042         * sysdeps/powerpc/powerpc64/multiarch/rtld-memset.c: New file.
22044         * string/memcmp.c (memcmp): Using macro to redefine symbol name.
22045         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memcpy multiarch
22046         implementations.
22047         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
22048         (__libc_ifunc_impl_list): Likewise.
22049         * sysdeps/powerpc/powerpc64/multiarch/memcmp-power4.S: New file.
22050         * sysdeps/powerpc/powerpc64/multiarch/memcmp-power7.S: New file.
22051         * sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c: New file.
22052         * sysdeps/powerpc/powerpc64/multiarch/memcmp.c: New file: multiarch
22053         memcmp for PPC64.
22055         * sysdeps/powerpc/powerpc64/multiarch/Makefile: New file to support
22056         multiarch for POWER/PPC64.
22057         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c: Likewise.
22058         * sysdeps/powerpc/powerpc64/multiarch/init-arch.h: Likewise.
22059         * sysdeps/powerpc/powerpc64/multiarch/memcpy-a2.S: New file.
22060         * sysdeps/powerpc/powerpc64/multiarch/memcpy-cell.S: New file.
22061         * sysdeps/powerpc/powerpc64/multiarch/memcpy-power4.S: New file.
22062         * sysdeps/powerpc/powerpc64/multiarch/memcpy-power6.S: New file.
22063         * sysdeps/powerpc/powerpc64/multiarch/memcpy-power7.S: New file.
22064         * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S: New file.
22065         * sysdeps/powerpc/powerpc64/multiarch/memcpy.c: New file: multiarch
22066         memcpy for PPC64.
22068         * sysdeps/powerpc/powerpc64/power4/fpu/Implies: New file.
22069         * sysdeps/powerpc/powerpc64/power4/fpu/multiarch/Implies: New File.
22070         * sysdeps/powerpc/powerpc64/power4/multiarch/Implies: New File.
22071         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: New File.
22072         * sysdeps/powerpc/powerpc64/power5+/multiarch/Implies: New File.
22073         * sysdeps/powerpc/powerpc64/power5/Implies: New File.
22074         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: New File.
22075         * sysdeps/powerpc/powerpc64/power5/multiarch/Implies: New File.
22076         * sysdeps/powerpc/powerpc64/power6/fpu/Implies: New File.
22077         * sysdeps/powerpc/powerpc64/power6/multiarch/Implies: New File.
22078         * sysdeps/powerpc/powerpc64/power7/fpu/Implies: New File.
22079         * sysdeps/powerpc/powerpc64/power7/multiarch/Implies: New File.
22080         * sysdeps/powerpc/powerpc64/power8/fpu/Implies: New File.
22081         * sysdeps/powerpc/powerpc64/power8/fpu/multiarch/Implies: New File.
22082         * sysdeps/powerpc/powerpc64/power8/multiarch/Implies: New File.
22083         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/Implies: Remove.
22084         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/Implies: Remove.
22085         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/Implies: Remove.
22086         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/Implies: Remove.
22087         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/Implies: Remove.
22088         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/Implies: Remove.
22089         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power8/Implies: Remove.
22091 2013-12-12  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
22093         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Use $$ver.
22095 2013-12-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
22097         * benchtests/Makefile (bench): Add exp2 and log2.
22098         (LDLIBS-bench-exp2): Add -lm.
22099         (LDLIBS-bench-log2): Likewise.
22100         * benchtests/exp2-inputs: New inputs file.
22101         * benchtests/log2-inputs: New inputs file.
22102         * benchtests/log-inputs: Add new inputs.
22103         * benchtests/tan-inputs: Likewise.
22105 2013-12-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
22107         * sysdeps/ieee754/dbl-64/s_sin.c (t22): Consolidate const
22108         definition...
22109         (slow1, slow2, sloww1, sloww2, bsloww1, bsloww2, cslow2, csloww1)
22110         (csloww2): ... from here.
22112         * sysdeps/ieee754/dbl-64/usncs.h: Define constants as double
22113         instead of structures.
22114         * sysdeps/ieee754/dbl-64/s_sin.c (POLYNOMIAL2): Adjust.
22115         (POLYNOMIAL): Likewise.
22116         (TAYLOR_SLOW): Likewise.
22117         (__sin): Likewise.
22118         (__cos): Likewise.
22119         (slow1): Likewise.
22120         (slow2): Likewise.
22121         (sloww): Likewise.
22122         (sloww1); Likewise.
22123         (sloww2): Likewise.
22124         (bsloww1): Likewise.
22125         (bsloww2): Likewise.
22126         (cslow2): Likewise.
22127         (csloww): Likewise.
22128         (csloww1): Likewise.
22129         (csloww2): Likewise.
22131 2013-12-10  Ondřej Bílka  <neleai@seznam.cz>
22133         * malloc/malloc.c (MALLOC_COPY, MALLOC_ZERO): Delete.
22134         (__malloc_assert, __libc_realloc, __libc_calloc, _int_realloc):
22135         Expand MALLOC_COPY and MALLOC_ZERO to memcpy and memset.
22136         * malloc/hooks.c (realloc_check): Likewise.
22138         * malloc/Makefile (CPPFLAGS-malloc.c): Remove -DPER_THREAD flag.
22139         * malloc/arena.c: Remove PER_THREAD conditional.
22140         [!PER_THREAD]: Remove code.
22141         (ptmalloc_unlock_all2): Likewise.
22142         (ptmalloc_init): Likewise.
22143         (_int_new_arena): Likewise.
22144         (arena_get2): Likewise.
22145         * malloc/hooks.c (__malloc_get_state): Likewise.
22146         (__malloc_set_state): Likewise.
22147         * malloc/malloc.c: Likewise.
22148         (struct malloc_state): Likewise.
22149         (struct malloc_par): Likewise.
22150         (__libc_realloc): Likewise.
22151         (__libc_mallopt): Likewise.
22153 2013-12-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22155         * Versions.def (libm): Add GLIBC_2.3 and GLIBC_2.19.
22157 2013-12-09  Ondřej Bílka  <neleai@seznam.cz>
22159         * malloc/malloc.c (alloc_perturb, free_perturb): Convert from
22160         macro to a function.  Check for zero perturb_byte.
22161         (_int_malloc, _int_free): Remove zero perturb_byte checks.
22163         * malloc/malloc.c: (force_reg): Remove.
22164         (__malloc_assert, __libc_malloc, __libc_free, __libc_realloc)
22165         (_mid_memalign, __libc_calloc, sysmalloc, systrim): Replace
22166         force_reg by atomic_forced_read.
22167         * malloc/arena.c (ptmalloc_init): Likewise.
22168         * malloc/hooks.c (top_check): Likewise.
22170 2013-12-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22172         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
22174 2013-12-09  Markus Trippelsdorf  <markus@trippelsdorf.de>
22176         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
22178 2013-12-08  Joseph Myers  <joseph@codesourcery.com>
22180         * math/auto-libm-test-in: Add tests of lgamma.
22181         * math/auto-libm-test-out: Regenerated.
22182         * math/libm-test.inc (M_LOG_SQRT_PIl): Remove macro.
22183         (M_LOG_2_SQRT_PIl): Likewise.
22184         (lgamma_test_data): Use AUTO_TESTS_f_f1.
22185         * math/gen-auto-libm-tests.c (func_calc_method): Add value
22186         mpfr_f_f1.
22187         (func_calc_desc): Add mpfr_f_f1 union field.
22188         (ARGS1): New macro.
22189         (ARGS2): Likewise.
22190         (ARGS3): Likewise.
22191         (ARGS4): Likewise.
22192         (RET1): Likewise.
22193         (RET2): Likewise.
22194         (CALC): Likewise.
22195         (FUNC): Likewise.
22196         (FUNC_mpfr_f_f): Use new macros FUNC, ARGS1, RET1 and CALC.
22197         (test_functions): Add lgamma.
22198         (calc_generic_results): Handle mpfr_f_f1.
22199         * sysdeps/i386/fpu/libm-test-ulps: Update.
22200         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
22202 2013-12-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22204         * sysdeps/powerpc/powerpc64/power7/add_n.S: New file: optimized
22205         __mpn_add_n for PowerPC64/POWER7.
22206         * sysdeps/powerpc/powerpc64/power7/sub_n.S: New file: optimized
22207         __mpn_sub_n for PowerPC64/POWER7.
22209         * sysdeps/powerpc/powerpc64/addmul_1.S: New file: optimized
22210         __mpn_addmul_1 for PowerPC64.
22211         * sysdeps/powerpc/powerpc64/submul_1.S: New file: optimized
22212         __mpn_submul_1 for PowerPC64.
22213         * sysdeps/powerpc/powerpc64/lshift.S: New file: optimized __mpn_lshift
22214         for PowerPC64.
22215         * sysdeps/powerpc/powerpc64/mul_1.S: New file: optimized __mpn_mul_1
22216         for PowerPC64.
22218 2013-12-06  Fernando J. V. da Silva  <fernandojvdasilva@gmail.com>
22220         [BZ #15089]
22221         * malloc/malloc.c: Exit systrim() if pad is bigger than heap top size.
22223 2013-12-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22225         * NEWS: Mention ppc32/power4+ STT_GNU_IFUNC support.
22227         * sysdeps/powerpc/powerpc32/power5+/fpu/multiarch/Implies: New file:
22228         add multiarch folders.
22229         * sysdeps/powerpc/powerpc32/power5+/multiarch/Implies: Likewise.
22230         * sysdeps/powerpc/powerpc32/power5/fpu/multiarch/Implies: Likewise.
22231         * sysdeps/powerpc/powerpc32/power5/multiarch/Implies: Likewise.
22232         * sysdeps/powerpc/powerpc32/power6/fpu/multiarch/Implies: Likewise.
22233         * sysdeps/powerpc/powerpc32/power6/multiarch/Implies: Likewise.
22234         * sysdeps/powerpc/powerpc32/power6x/fpu/multiarch/Implies: Likewise.
22235         * sysdeps/powerpc/powerpc32/power6x/multiarch/Implies: Likewise.
22236         * sysdeps/powerpc/powerpc32/power7/fpu/multiarch/Implies: Likewise.
22237         * sysdeps/powerpc/powerpc32/power7/multiarch/Implies: Likewise.
22238         * sysdeps/powerpc/powerpc32/power8/fpu/multiarch/Implies: Likewise.
22239         * sysdeps/powerpc/powerpc32/power8/multiarch/Implies: Likewise.
22240         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/Implies: Remove.
22241         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/Implies: Remove.
22242         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/Implies: Remove.
22243         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/Implies: Remove.
22244         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/Implies: Remove.
22245         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power8/Implies: Remove.
22247         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add
22248         __ieee754_hypot and __ieee754_hypotf multiarch implementations.
22249         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-power7.c:
22250         New file.
22251         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-ppc32.c:
22252         New file.
22253         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot.c: New file:
22254         multiarch __ieee754_hypot for PowerPC32.
22255         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-power7.c:
22256         New file.
22257         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-ppc32.c:
22258         New file.
22259         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf.c: New file:
22260         multiarch __ieee754_hypotf for PowerPC32.
22262         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Define
22263         long_double_symbol only if __logbl is defined.
22264         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: Moved to ...
22265         * sysdeps/powerpc/power7/fpu/s_logb.c: ... here.
22266         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbf.c: Move to ...
22267         * sysdeps/powerpc/power7/fpu/s_logbf.c: ... here.
22268         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c: Move to ...
22269         * sysdeps/powerpc/power7/fpu/s_logbl.c: ... here.
22270         * sysdeps/powerpc/powerpc64/power7/fpu/s_logb.c: Adjust to use new
22271         path for implementation.
22272         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbf.c: Likewise.
22273         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbl.c: Likewise.
22274         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add logbf,
22275         logb, and logbl multiarch implementations for PowerPC32.
22276         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-power7.c: New
22277         file.
22278         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-ppc32.c: New
22279         file.
22280         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c: New file:
22281         multiarch logb for PowerPC32.
22282         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-power7.c: New
22283         file.
22284         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-ppc32.c: New
22285         file.
22286         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf.c: New file:
22287         multiarch logbf for PowerPC32.
22288         * sysdeps/powerpc/power4/fpu/multiarch/s_logbl-power7.c: New file.
22289         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl-ppc32.c: New
22290         file.
22291         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl.c: New file:
22292         multiarch logbl implementation for PowerPC32.
22294         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add modf
22295         and modff multiarch implementations.
22296         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-power5+.c:
22297         New file.
22298         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-ppc32.c:
22299         New file.
22300         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c: New file:
22301         multiarch modf for PowerPC32.
22302         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-power5+.c:
22303         New file.
22304         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-ppc32.c:
22305         New file.
22306         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff.c: New file:
22307         multiarch modff for PowerPC32.
22309         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add lrint
22310         and lrintf multiarch implementations.
22311         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-power6x.S:
22312         New file.
22313         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-ppc32.S:
22314         New file.
22315         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint.c: New file:
22316         multiarch lrint for PowerPC32.
22317         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrintf.c: New
22318         file: multiarch lrintf for PowerPC32.
22320         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add lround
22321         and lroundf multiarch implementations.
22322         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power5+.S:
22323         New file.
22324         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power6.S:
22325         New file.
22326         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-ppc32.S:
22327         New file.
22328         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround.c: New file:
22329         multiarch lround for PowerPC32.
22330         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lroundf.c: New
22331         file: multiarch lroundf for PowerPC32.
22333         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add
22334         copysign and copysignf multiarch implementations.
22335         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-power6.S:
22336         New file.
22337         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-ppc32.S:
22338         New file.
22339         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c: New
22340         file: multiarch copysign for PowerPC32.
22341         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c: New
22342         file: multiarch copysignf for PowerPC32.
22344         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add trunc
22345         and truncf multiarch implementations.
22346         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-power5+.S:
22347         New file.
22348         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-ppc32.S: New
22349         file.
22350         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c: New file:
22351         multiarch trunc for PowerPC32.
22352         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-power5+.S:
22353         New file.
22354         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-ppc32.S:
22355         New file.
22356         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c: New file:
22357         multiarch truncf for PowerPC32.
22359         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add round
22360         and roundf multiarch implementations.
22361         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-power5+.S:
22362         New file.
22363         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-ppc32.S: New
22364         file.
22365         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c: New file:
22366         multiarch round for PowerPC32.
22367         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-power5+.S:
22368         New file.
22369         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-ppc32.S:
22370         New file.
22371         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c: New file:
22372         multiarch roundf for PowerPC32.
22374         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add floor
22375         and floorf multiarch implementations.
22376         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-power5+.S:
22377         New file.
22378         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-ppc32.S: New
22379         file.
22380         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c: New file:
22381         multiarch floor for PowerPC32.
22382         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-power5+.S:
22383         New file.
22384         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-ppc32.S:
22385         New file.
22386         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c: New file:
22387         multiarch floorf for PowerPC32.
22389         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add ceil
22390         and ceilf multiarch implementations.
22391         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-power5+.S:
22392         New file.
22393         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-ppc32.S: New
22394         file.
22395         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c: New file:
22396         multiarch ceil for PowerPC32.
22397         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-power5+.S:
22398         New file.
22399         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-ppc32.S: New
22400         file.
22401         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c: New file:
22402         multiarch ceilf for PowerPC32.
22404         * sysdeps/ieee754/dbl-64/s_finite.c (__finite): Redefine it if FINITE
22405         is defined.
22406         * sysdeps/ieee754/flt-32/s_finitef.c (__finitef): Redefine it if
22407         FINITEF is defined.
22408         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add finite
22409         and finitef multiarch implementations.
22410         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-power7.S:
22411         New file.
22412         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-ppc32.c: New
22413         file.
22414         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c: New file:
22415         multiarch finite for PowerPC32.
22416         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef-ppc32.c:
22417         New file.
22418         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef.c: New
22419         file: multiarch finitef for PowerPC32.
22421         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add isinf
22422         and isinff multiarch implementations.
22423         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-power7.S: New
22424         file.
22425         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-ppc32.c: New
22426         file.
22427         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c: New file:
22428         multiarch isinf for PowerPC32.
22429         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff-ppc32.c:
22430         New file.
22431         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff.c: New file:
22432         multiarch isinff for PowerPC32.
22434         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S (__isnan): Only implement
22435         alias when __isnan is defined.
22436         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add isnan
22437         and isnanf multiarch implementations.
22438         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power5.S: New
22439         file.
22440         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power6.S: New
22441         file.
22442         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power7.S: New
22443         file.
22444         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-ppc32.S: New
22445         file.
22446         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c: New file:
22447         multiarch isnan for PowerPC32.
22448         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power6.S:
22449         New file.
22450         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power7.S:
22451         New file.
22452         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf.c: New file:
22453         multiarch isnanf for PowerPC32.
22455         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add sqrt
22456         and sqrtf multiarch implementations.
22457         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-power5.S: New
22458         file.
22459         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-ppc32.S: New
22460         file.
22461         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt.c: New file:
22462         multiarch sqrt for PowerPC32.
22463         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-power5.S: New
22464         file.
22465         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-ppc32.S: New
22466         file.
22467         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf.c: New file:
22468         multiarch sqrtf for PowerPC32.
22470         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add llround
22471         and llroundf multiarch implementations.
22472         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power5+.S:
22473         New file.
22474         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power6.S:
22475         New file.
22476         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-ppc32.S:
22477         New file.
22478         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround.c: New
22479         file: multiarch llround for PowerPC32.
22480         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llroundf.c: New
22481         file: multiarch llroundf for PowerPC32.
22483         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: New file:
22484         multiarch PowerPC32 fpu implementations.
22485         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-power6.S:
22486         New file.
22487         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-ppc32.S:
22488         New file.
22489         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint.c: New file:
22490         multiarch llrint for PowerPC32.
22491         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-power6.S:
22492         New file.
22493         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-ppc32.S:
22494         New file.
22495         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf.c: New
22496         file.
22498         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/Implies: Remove.
22500         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power6.c: New
22501         file.
22502         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power7.c: New
22503         file.
22504         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-ppc32.c: New
22505         file.
22506         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c: New file:
22507         multiarch wordcopy for PPC32.
22508         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcscpy
22509         wordcopy objects.
22510         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
22511         (__libc_ifunc_impl_list): Likewise.
22512         * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Move ...
22513         * sysdeps/powerpc/power4/wordcopy.c: ... to here.
22514         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Move ...
22515         * sysdeps/powerpc/power6/wordcopy.c: ... to here.
22516         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Remove uneeded file.
22517         * sysdeps/powerpc/powerpc64/power4/wordcopy.c: Likewise.
22519         * wcsmbs/wcscpy.c (wcscpy): Using macro to redefine symbol name
22520         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power6.c: New
22521         file.
22522         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power7.c: New
22523         file.
22524         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c: New
22525         file.
22526         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c: New file:
22527         multiarch wcscpy for PPC32.
22528         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcscpy
22529         multiarch objects.
22530         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
22531         (__libc_ifunc_impl_list): Likewise.
22532         * sysdeps/powerpc/powerpc32/power6/wcsrchr.c: Move ...
22533         * sysdeps/powerpc/power6/wcsrchr.c: ... to here.
22534         * sysdeps/powerpc/powerpc64/power6/wcscpy.c: Adjust to use
22535         sysdeps/powerpc/power6/wcscpy.c.
22537         * wcsmbs/wcsrchr.c (wcsrchr): Using macro to redefine symbol name
22538         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power6.c: New
22539         file.
22540         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power7.c: New
22541         file.
22542         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c: New
22543         file.
22544         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c: New file:
22545         multiarch wcsrchr for PPC32.
22546         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcschr
22547         multiarch objects.
22548         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
22549         (__libc_ifunc_impl_list): Likewise.
22550         * sysdeps/powerpc/powerpc32/power6/wcsrchr.c: Move ...
22551         * sysdeps/powerpc/power6/wcsrchr.c: ... to here.
22552         * sysdeps/powerpc/powerpc64/power6/wcsrchr.c: Adjust to use
22553         sysdeps/powerpc/power6/wcsrchr.c.
22555         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power6.c: New
22556         file.
22557         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power7.c: New
22558         file.
22559         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c: New file.
22560         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c: New file:
22561         multiarch wcschr for PPc32.
22562         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcschr
22563         multiarch objects.
22564         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
22565         (__libc_ifunc_impl_list): Likewise.
22566         * sysdeps/powerpc/powerpc32/power6/wcschr.c: Move ...
22567         * sysdeps/powerpc/power6/wcschr.c: ... to here.
22568         * sysdeps/powerpc/powerpc64/power6/wcschr.c: Adjust to use
22569         sysdeps/powerpc/power6/wcschr.c.
22571         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strchr.S: New file.
22572         * sysdeps/powerpc/powerpc32/power4/multiarch/strchr-power7.S: New
22573         file.
22574         * sysdeps/powerpc/powerpc32/power4/multiarch/strchr-ppc32.S: New file.
22575         * sysdeps/powerpc/powerpc/powerpc32/power4/multiarch/strchr.c: New
22576         file: multiarch strchr for PPC32.
22577         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strchr
22578         multiarch objects.
22579         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
22580         (__libc_ifunc_impl_list): Likewise.
22582         * string/strchrnul.c (__strchrnul): Using macro to redefine symbol
22583         name.
22584         * sysdeps/powerpc/powerpc32/power4//multiarch/strchrnul-power7.S: New
22585         file.
22586         * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul-ppc32.c: New
22587         file.
22588         * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c: New file:
22589         multiarch strchrnul for PPC32.
22590         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strchrnul
22591         multiarch objects.
22592         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
22593         (__libc_ifunc_impl_list): Likewise.
22595         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c: New
22596         file.
22597         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c: New file:
22598         multiarch strncasecmp for PPC32.
22599         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l-power7.c: New
22600         file.
22601         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c: New file:
22602         multiarch strncasecmp_l for PPC32.
22603         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added
22604         strncasecmp multiarch objects.
22605         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
22606         (__libc_ifunc_impl_list): Likewise.
22608         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S: New
22609         file.
22610         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c: New file:
22611         multiarch strncasecmp for PPC32.
22612         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S:
22613         New file.
22614         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c: New file:
22615         multiarch strcasecmp_l for PPC32.
22616         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strcasecmp
22617         multiarch objects.
22618         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
22619         (__libc_ifunc_impl_list): Likewise.
22621         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-power7.S: New
22622         file.
22623         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S: New
22624         file.
22625         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c: New file:
22626         multiarch strncmp for PPC32.
22627         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strncmp
22628         multiarch objects.
22629         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
22630         (__libc_ifunc_impl_list): Likewise.
22632         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strnlen.c: New file.
22633         * sysdeps/powerpc/powerpc32//power4/multiarch/strnlen-power7.S: New
22634         file.
22635         * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen-ppc32.c: New file.
22636         * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c: New file.
22637         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strnlen
22638         multiarch objects.
22639         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
22640         (__libc_ifunc_impl_list): Likewise.
22642         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-power7.S: New
22643         file.
22644         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S: New
22645         file.
22646         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c: New file.
22647         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strlen
22648         multiarch objects.
22649         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
22650         (__libc_ifunc_impl_list): Likewise.
22652         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-power7.S: New
22653         file.
22654         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c: New
22655         file.
22656         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c: New file:
22657         multiarch rawmemchr for PPC32.
22658         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added rawmemchr
22659         multiarch objects.
22660         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
22661         (__libc_ifunc_impl_list): Likewise.
22663         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-power7.S: New
22664         file.
22665         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c: New
22666         file.
22667         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c: New
22668         file: memrchr multiarch for PPC32.
22669         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added memrchr
22670         multiarch objects.
22671         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
22672         (__libc_ifunc_impl_list): Likewise.
22674         * string/memchr.c (__memchr): Using macro to redefine symbol name.
22675         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-power7.S: New
22676         file.
22677         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c: New File.
22678         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c: New file:
22679         multiarch memchr for PPC32.
22680         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memchr
22681         multiarch objects.
22682         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
22683         (__libc_ifunc_impl_list): Likewise.
22685         * string/mempcpy.c (__mempcpy): Using macro to redefine symbol name.
22686         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-power7.S: New
22687         file.
22688         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-ppc32.c: New
22689         file.
22690         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c: New
22691         file: multiarch mempcpy for PPC32.
22692         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add mempcpy
22693         multiarch objects.
22694         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
22695         (__libc_ifunc_impl_list): Likewise.
22697         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power6.S: New file.
22698         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power7.S: New file.
22699         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S: New file.
22700         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: New file:
22701         multiarch bzero for PPC32.
22702         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-power6.S: New
22703         file.
22704         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-power7.S: New
22705         file.
22706         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S: New file.
22707         * sysdeps/powerpc/powerpc/powerpc32/power4/multiarch/memset.c: New
22708         file: multiarch memset for PPC32.
22709         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memset.S: New file.
22710         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add bzero and
22711         memset multiarch objects.
22712         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
22713         (__libc_ifunc_impl_list): Likewise.
22715         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-power7.S: New
22716         file.
22717         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S: New file.
22718         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c: multiarch
22719         memcmp for PPC32.
22720         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memcmp.S: New file.
22721         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memcmp
22722         multiarch objects.
22723         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
22724         (__libc_ifunc_impl_list): Likewise.
22726         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-a2.S: New file.
22727         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-cell.S: New file.
22728         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power6.S: New
22729         file.
22730         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power7.S: New
22731         file.
22732         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S: New
22733         file.
22734         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c: New file:
22735         multiarch memcpy for PPC32.
22736         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memcpy
22737         multiarch objects.
22738         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
22739         (__libc_ifunc_impl_list): Likewise.
22741         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: New file to
22742         support multiarch for POWER/PPC32.
22743         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c:
22744         Likewise.
22745         * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h: Likewise.
22746         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/Implies: Remove
22747         Implies file to make multiarch folder appers before the fpu and
22748         default folder for power4 configuration.
22750 2013-12-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
22752         * scripts/bench.pl: Append volatile keyword to type.
22754 2013-12-05  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
22756         * sysdeps/sh/sotruss-lib.c: New file.
22757         * sysdeps/unix/sysv/linux/sh/nptl/c++-types.data: New file.
22759 2013-12-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22761         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
22763 2013-12-05  Joseph Myers  <joseph@codesourcery.com>
22765         [BZ #6810]
22766         * math/w_tgamma.c: Include <errno.h>.
22767         (__tgamma): Use __glibc_unlikely.  Set errno on underflow to 0.
22768         * math/w_tgammaf.c: Include <errno.h>.
22769         (__tgammaf): Use __glibc_unlikely.  Set errno on underflow to 0.
22770         * math/w_tgammal.c: Include <errno.h>.
22771         (__tgammal): Use __glibc_unlikely.  Set errno on underflow to 0.
22772         * math/auto-libm-test-in: Do not allow missing errno on tgamma
22773         underflow.  Add more tgamma tests.
22774         * math/auto-libm-test-out: Regenerated.
22775         * sysdeps/i386/fpu/libm-test-ulps: Update.
22776         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
22778         * math/auto-libm-test-in: Add tests of log, log10, log1p, log2,
22779         sin, sinh, tan, tanh, tgamma, y0 and y1.
22780         * math/auto-libm-test-out: Regenerated.
22781         * math/libm-test.inc (TEST_COND_x86_64): New macro.
22782         (TEST_COND_x86): Likewise.
22783         (M_E2l): Remove macro.
22784         (M_E3l): Likewise.
22785         (M_2_SQRT_PIl): Likewise.
22786         (M_SQRT_PIl): Likewise.
22787         (M_1_DIV_El): Likewise.
22788         (log_test_data): Use AUTO_TESTS_f_f.
22789         (log10_test_data): Likewise.
22790         (log1p_test_data): Likewise.
22791         (log2_test_data): Likewise.
22792         (sin_test_data): Likewise.
22793         (sin_tonearest_test_data): Likewise.
22794         (sin_towardzero_test_data): Likewise.
22795         (sin_downward_test_data): Likewise.
22796         (sin_upward_test_data): Likewise.
22797         (sinh_test_data): Likewise.
22798         (sinh_tonearest_test_data): Likewise.
22799         (sinh_towardzero_test_data): Likewise.
22800         (sinh_downward_test_data): Likewise.
22801         (sinh_upward_test_data): Likewise.
22802         (tan_test_data): Likewise.
22803         (tan_tonearest_test_data): Likewise.
22804         (tan_towardzero_test_data): Likewise.
22805         (tan_downward_test_data): Likewise.
22806         (tan_upward_test_data): Likewise.
22807         (tanh_test_data): Likewise.
22808         (tgamma_test_data): Likewise.
22809         (y0_test_data): Likewise.
22810         (y1_test_data): Likewise.
22811         * math/gen-auto-libm-tests.c (special_fill_pi_4): New function.
22812         (special_real_inputs): Add pi/4.
22813         * sysdeps/i386/fpu/libm-test-ulps: Update.
22814         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
22816 2013-12-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22818         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Add "longjmp" and
22819         "longjmp_target" static probes.
22820         (__longjmp): Rename to __longjmp_symbol.
22821         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
22822         * sysdeps/powerpc/powerpc32/__longjmp.S: Define __longjmp_symbol based
22823         on which longjmp to generate.
22824         * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
22825         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Add "setjmp" static
22826         probe.
22827         (__sigsetjmp): Rename to __sigsetjmp_symbol.
22828         (__sigjmp_save): Rename to __sigjmp_save_symbol.
22829         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
22830         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Define __sigsetjmp_symbol
22831         and __sigjmp_save_symbol based on which sigsetjmp to generated.
22832         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise
22833         * sysdeps/unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S: Define
22834         __longjmp_symbol based on which __longjmp to generate.
22835         * sysdeps/powerpc/powerpc64/setjmp-common.S: Add "setjmp" static
22836         probe.
22837         (setjmp): Rename to setjmp_symbol.
22838         (__sigsetjmp): Rename to __sigsetjmp_symbol.
22839         (_setjmp): Rename to _setjmp_symbol.
22840         (__sigsetjmp): Rename to __sigsetjmp_symbol.
22841         * sysdeps/powerpc/powerpc64/setjmp.S: Define setjmp_symbol,
22842         _setjmp_symbol, __sigsetjmp_symbol, and __sigjmp_save_symbol based on
22843         which setjmp to generate.
22844         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Add "longjmp" and
22845         "longjmp_target" static probes.
22847 2013-12-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
22849         * benchtests/README: Add note about output arguments.
22850         * benchtests/bench-sincos.c: Remove file.
22851         * benchtests/sincos-inputs: New file.
22852         * scripts/bench.pl: Identify output arguments and define
22853         static variables for them.
22855         * debug/stpncpy_chk.c (__stpncpy_chk): Remove unused variables.
22857         [BZ #15941]
22858         * Makefile (INSTALL): Add install-plain.texi as the primary
22859         dependency.
22860         * manual/install-plain.texi: New file.
22861         * manual/install.texi: Include node directive only for
22862         non-plaintext output.
22864 2013-12-04  Joseph Myers  <joseph@codesourcery.com>
22866         * stdlib/longlong.h: Update from GCC.
22868         [BZ #6807]
22869         [BZ #15901]
22870         * math/w_j0.c (y0): Raise FE_DIVBYZERO on zero argument.
22871         * math/w_j0f.c (y0f): Likewise.
22872         * math/w_j0l.c (__y0l): Likewise.
22873         * math/w_j1.c (y1): Likewise.
22874         * math/w_j1f.c (y1f): Likewise.
22875         * math/w_j1l.c (__y1l): Likewise
22876         * math/w_jn.c (yn): Likewise.
22877         * math/w_jnf.c (ynf): Likewise.
22878         * sysdeps/ieee754/k_standard.c (__kernel_standard): Use ERANGE for
22879         Bessel function pole errors in _POSIX_ mode.  Use NAN as return
22880         value for Bessel function domain errors outside _SVID_ mode.
22881         Adjust sign of return value for yn (negative integer, 0).
22882         * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_ynl): Use division
22883         by zero in return for negative x and set sign appropriately for
22884         negative n.
22885         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_ynl): Likewise.
22886         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Likewise.
22887         * math/libm-test.inc (y0_test_data): Add more tests and adjust
22888         expectations in error cases.
22889         (y1_test_data): Likewise.
22890         (yn_test_data): Likewise.
22891         * sysdeps/i386/fpu/libm-test-ulps: Update.
22892         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
22894 2013-11-12  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
22896         * sysdeps/unix/sysv/linux/powerpc/Makefile (abi-variants): Rename
22897         "64" to "64-v1".  Add "64-v2".
22898         (abi-64-options): Rename to ...
22899         (abi-64-v1-options): ... this.   Redefine _CALL_ELF.
22900         (abi-64-condition): Rename to ...
22901         (abi-64-v1-condition): ... this.  Add _CALL_ELF check.,
22902         (abi-64-ld-soname): Rename to ...
22903         (abi-64-v1-ld-soname): ... this.
22904         (abi-64-v2-options): Define.
22905         (abi-64-v2-condition): Likewise.
22906         (abi-64-v2-ld-soname): Likewise.
22907         * sysdeps/unix/sysv/linux/powerpc/ldconfig.h
22908         (SYSDEP_KNOWN_INTERPRETER_NAMES): Add "/lib64/ld64.so.2".
22909         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Makefile: Delete file.
22910         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac: New file.
22911         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Generate.
22913 2013-11-12  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
22914             Alan Modra  <amodra@gmail.com>
22916         * sysdeps/powerpc/bits/link.h (La_ppc64v2_regs, La_ppc64v2_retval):
22917         New versions for use with the ELFv2 ABI.
22918         (la_ppc64v2_gnu_pltenter, la_ppc64v2_gnu_pltexit): Add prototypes.
22919         * sysdeps/powerpc/lsdodefs.h (struct La_ppc64v2_regs): Add forward
22920         declaration.
22921         (struct La_ppc64v2_retval): Likewise.
22922         (ARCH_PLTENTER_MEMBERS): Add ppc64v2_gnu_pltenter.
22923         (ARCH_PLTEXIT_MEMBERS): Add ppc64v2_gnu_pltexit.
22924         * sysdeps/powerpc/powerpc64/dl-machine.h (ARCH_LA_PLTENTER): Define
22925         to ppc64v2_gnu_pltenter if _CALL_ELF == 2.
22926         (ARCH_LA_PLTEXIT): Define to ppc64v2_gnu_pltexit if _CALL_ELF == 2.
22927         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve):
22928         Do not save or restore CR.
22929         (FRAME_SIZE, VR_RTN): Provide updated values for _CALL_ELF == 2.
22930         (_dl_profile_resolve): Do no save or restore CR.  Support extended
22931         return values for ELFv2 ABI.  Fix location of FPR return registers.
22932         * sysdeps/powerpc/powerpc64/tst-audit.h (pltenter, pltexit): Provide
22933         updated values for _CALL_ELF == 2.
22934         (La_regs, La_retval, int_retval): Likewise.
22936 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
22938         * sysdeps/powerpc/powerpc64/sysdep.h (FRAME_MIN_SIZE): Define.
22939         (FRAME_MIN_SIZE_PARM): Likewise.
22940         (FRAME_BACKCHAIN): Likewise.
22941         (FRAME_CR_SAVE): Likewise.
22942         (FRAME_LR_SAVE): Likewise.
22943         (FRAME_TOC_SAVE): Likewise.
22944         (FRAME_PARM_SAVE): Likewise.
22945         (FRAME_PARM1_SAVE, FRAME_PARM2_SAVE, FRAME_PARM3_SAVE,
22946         FRAME_PARM4_SAVE, FRAME_PARM5_SAVE, FRAME_PARM6_SAVE,
22947         FRAME_PARM7_SAVE, FRAME_PARM8_SAVE, FRAME_PARM9_SAVE): Likewise.
22948         (call_mcount_parm_offset): New macro.
22949         (SAVE_ARG, REST_ARG, CFI_SAVE_ARG): Use it.
22950         (PROF): Use symbolic stack frame offsets.
22951         (TAIL_CALL_SYSCALL_ERROR): Likewise.
22952         * sysdeps/powerpc/powerpc64/dl-trampoline.S (FRAME_SIZE, INT_PARMS):
22953         Redefine in terms of FRAME_MIN_SIZE.
22954         (_dl_runtime_resolve): Use symbolic stack frame offsets.
22955         (_dl_profile_resolve): Likewise.  Update comment.
22956         * sysdeps/powerpc/powerpc64/setjmp-common.S (__GI__setjmp): Use
22957         symbols stack frame offsets.
22958         (__sigsetjmp): Likewise.
22959         * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp): Likewise.
22960         * sysdeps/powerpc/powerpc64/ppc-mcount.S (_mcount): Likewise.
22961         * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Likewise.
22962         * sysdeps/powerpc/powerpc64/crtn.S (_init, _fini): Likewise.
22964         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.sym
22965         (FRAME_BACKCHAIN): Remove.
22966         (FRAME_CR_SAVE): Likewise.
22967         (FRAME_LR_SAVE): Likewise.
22968         (FRAME_COMPILER_DW): Likewise.
22969         (FRAME_LINKER_DW): Likewise.
22970         (FRAME_TOC_SAVE): Likewise.
22971         (FRAME_PARM_SAVE): Likewise.
22972         (FRAME_PARM1_SAVE, FRAME_PARM2_SAVE, FRAME_PARM3_SAVE)
22973         (FRAME_PARM4_SAVE, FRAME_PARM5_SAVE, FRAME_PARM6_SAVE)
22974         (FRAME_PARM7_SAVE, FRAME_PARM8_SAVE, FRAME_PARM9_SAVE): Likewise.
22975         * sysdeps/unix/sysv/linux/powerpc/powerpc64/____longjmp_chk.S
22976         (CHECK_SP): Use symbolic stack frame offsets.
22977         * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S (__brk): Use "red
22978         zone" instead of caller's parameter save area for temp storage.
22979         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone):
22980         Likewise.  Also, use symbolic stack frame offsets.
22981         * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S (FRAMESIZE,
22982         stackblock): Redefine for _CALL_ELF == 2 to save parameters into
22983         our own stack frame instead of the caller's.
22984         (__socket): Use symbolic stack frame offsets.
22986 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
22987             Alan Modra  <amodra@gmail.com>
22989         * elf/elf.h (DT_PPC64_OPT, PPC64_OPT_TLS, PPC64_OPT_MULTI_TOC):
22990         Define.
22991         (STO_PPC64_LOCAL_BIT, STO_PPC64_LOCAL_MASK)
22992         (PPC64_LOCAL_ENTRY_OFFSET): Define.
22993         * sysdeps/powerpc/powerpc64/dl-machine.h (ppc64_local_entry_offset):
22994         New function.
22995         (elf_machine_fixup_plt): Call it.
22996         (elf_machine_plt_conflict): Likewise.  Add map, sym_map, and
22997         reloc arguments.
22998         (elf_machine_rela): Update call to elf_machine_plt_conflict.
22999         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve)
23000         (_dl_profile_resolve) [_CALL_ELF == 2]: Restore caller's TOC into
23001         r2 before calling target.
23003 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
23004             Alan Modra  <amodra@gmail.com>
23006         * sysdeps/powerpc/powerpc64/sysdep.h [_CALL_ELF == 2]
23007         (PPC64_LOAD_FUNCPTR, DOT_LABEL, BODY_LABEL, ENTRY_2, END_2): New
23008         versions of macros to support ELFv2 ABI.
23009         (LOCALENTRY): New macro.
23010         (ENTRY, EALIGN): Use it.
23011         * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Use LOCALENTRY.
23012         * sysdeps/powerpc/powerpc64/setjmp-common.S (__GI__setjmp): Do not
23013         fall through into ENTRY entry point.
23014         * libc/sysdeps/powerpc/powerpc64/dl-machine.h (Elf64_FuncDesc):
23015         Only define if _CALL_ELF != 2.
23017         (elf_machine_matches_host): Verify ABI version matches.
23018         (RTLD_START): Use LOCALENTRY.
23019         (elf_machine_type_class): Use SHN_UNDEF PLT handling for ELFv2 ABI.
23020         (PLT_INITIAL_ENTRY_WORDS): New version for _CALL_ELF != 2.
23021         (PLT_ENTRY_WORDS): New macro.
23022         (GLINK_INITIAL_ENTRY_WORDS, GLINK_ENTRY_WORDS): Likewise.
23023         (elf_machine_runtime_setup): Support ELFv2 ABI.
23024         (elf_machine_fixup_plt): Likewise.
23025         (elf_machine_plt_conflict): Likewise.
23026         (resolve_ifunc): Likewise.
23027         * sysdeps/powerpc/powerpc64/dl-irel.h (elf_irela): Likewise.
23028         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET):
23029         Likewise.
23030         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h
23031         (DL_ADDR_SYM_MATCH): Only define if _CALL_ELF != 2.
23032         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
23033         (makecontext): Support ELFv2 ABI.
23034         * elf/elf.h (EF_PPC64_ABI): Define.
23036 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
23038         * sysdeps/powerpc/powerpc64/sysdep.h
23039         (PPC64_LOAD_FUNCPTR) [ASSEMBLER]: New assembler macro.
23040         (ENTRY_1) [ASSEMBLER]: Do not switch to .text section here ...
23041         (ENTRY) [ASSEMBLER]: ... but instead here ...
23042         (EALIGN) [ASSEMBLER]: ... and here.
23043         (PPC64_LOAD_FUNCPTR) [!ASSEMBLER]: New macro.
23044         (ENTRY_1) [!ASSEMBLER]: New macro; set up .opd entry.
23045         (ENTRY_2) [!ASSEMBLER]: Use it.
23046         * sysdeps/powerpc/powerpc64/dl-machine.h (RTLD_START): Update for
23047         ENTRY_2 changes.  Use PPC64_LOAD_FUNCPTR.
23048         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve)
23049         (_dl_profile_resolve): Use PPC64_LOAD_FUNCPTR.
23050         * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Use ENTRY_2.
23051         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (clone):
23052         Use PPC64_LOAD_FUNCPTR.
23054         * sysdeps/powerpc/tls.h (tcbhead_t): Add __private_ss field.
23056 2013-12-04  Alan Modra  <amodra@gmail.com>
23058         * elf/elf.h (R_PPC64_TLSGD, R_PPC64_TLSLD, R_PPC64_TOCSAVE): Define.
23059         (R_PPC64_ADDR16_HIGH, R_PPC64_ADDR16_HIGHA): Likewise.
23060         (R_PPC64_TPREL16_HIGH, R_PPC64_TPREL16_HIGHA): Likewise.
23061         (R_PPC64_DTPREL16_HIGH, R_PPC64_DTPREL16_HIGHA): Likewise.
23063         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Add
23064         overflow checking for R_PPC64_ADDR16_HI, R_PPC64_ADDR16_HA,
23065         R_PPC64_TPREL16_HI, and R_PPC64_TPREL16_HA.
23066         Support new R_PPC64_ADDR16_HIGH, R_PPC64_ADDR16_HIGHA,
23067         R_PPC64_TPREL16_HIGH, and R_PPC64_TPREL16_HIGHA relocations.
23068         Fix overflow checking for R_PPC64_ADDR30 and R_PPC64_ADDR32.
23070 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
23072         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
23073         (__makecontext): Fix incorrect CFI when backtracing out of
23074         context created via makecontext.
23075         * sysdeps/unix/sysv/linux/powerpc/powerpc64/secontext.S
23076         (__setcontext): Fix incorrect CFI during switch to new context.
23077         (__novec_setcontext): Likewise.
23079 2013-12-04  Ondřej Bílka  <neleai@seznam.cz>
23081         [BZ #4772]
23082         * time/strptime_l.c (__strptime_internal): Allow modifiers
23083         in strptime.
23084         * time/tst-strptime.c (day_tests): Add testcase.
23086 2013-12-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
23088         * scripts/bench.pl: Skip over blank lines.
23090 2013-12-04  Paul Eggert  <eggert@cs.ucla.edu>
23092         [BZ #926]
23093         * manual/time.texi (Calendar Time): Clarify what timezone functions
23094         use.
23096 2013-12-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
23098         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
23100 2013-12-04  Ondřej Bílka  <neleai@seznam.cz>
23102         * debug/memcpy_chk.c (__memcpy_chk): Use call instead of custom
23103         implementation.
23104         * debug/memmove_chk.c (MEMMOVE_CHK): Likewise.
23105         * debug/mempcpy_chk.c (__mempcpy_chk): Likewise.
23106         * debug/memset_chk.c (__memset_chk): Likewise.
23107         * debug/stpncpy_chk.c (__stpncpy_chk): Likewise.
23108         * debug/strncpy_chk.c: Likewise.
23110 2013-12-03  Joseph Myers  <joseph@codesourcery.com>
23112         [BZ #15268]
23113         [BZ #15425]
23114         * sysdeps/ieee754/dbl-64/e_exp.c: Include <float.h>.
23115         (__ieee754_exp): For possibly underflowing results, check size of
23116         result and force underflow exception if required.
23117         * math/auto-libm-test-in: Add more tests of exp.
23118         * math/auto-libm-test-out: Regenerated.
23119         * sysdeps/i386/fpu/libm-test-ulps: Update.
23120         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
23122         [BZ #16283]
23123         * math/w_exp2.c (__exp2): Handle a zero result as underflow.
23124         * math/w_exp2f.c (__exp2f): Likewise.
23125         * math/w_exp2l.c (__exp2l): Likewise.
23126         * math/auto-libm-test-in: Do not allow missing errno on exp2
23127         underflow.
23128         * math/auto-libm-test-out: Regenerated.
23130 2013-12-03  Ondřej Bílka  <neleai@seznam.cz>
23132         [BZ #16274]
23133         * sysdeps/unix/sysv/linux/shm_open.c (shm_open): Correctly
23134         handle filename validation.
23135         * rt/tst-shm.c (do_test): Do not skip a test when shm_open fails.
23136         (do_open): Delete.
23138 2013-12-03  Joseph Myers  <joseph@codesourcery.com>
23140         [BZ #6786]
23141         * sysdeps/ieee754/dbl-64/s_erf.c: Include <errno.h> and <float.h>.
23142         (__erfc): Set errno to ERANGE when returning 0 or tiny * tiny.
23143         * sysdeps/ieee754/flt-32/s_erff.c: Include <errno.h> and
23144         <float.h>.
23145         (__erfcf): Set errno to ERANGE when returning 0 or tiny * tiny.
23146         * sysdeps/ieee754/ldbl-128/s_erfl.c: Include <errno.h>.
23147         (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
23148         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Include <errno.h>.
23149         (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
23150         * sysdeps/ieee754/ldbl-96/s_erfl.c: Include <errno.h>.
23151         (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
23152         * math/auto-libm-test-in: Don't allow missing errno from erfc.
23153         Add more erfc tests.
23154         * math/auto-libm-test-out: Regenerated.
23155         * sysdeps/i386/fpu/libm-test-ulps: Update.
23156         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
23158         * math/auto-libm-test-in: Add tests of erf, erfc, exp, exp10,
23159         exp2, expm1, j0 and j1.
23160         * math/auto-libm-test-out: Regenerated.
23161         * math/libm-test.inc (erf_test_data): Use AUTO_TESTS_f_f.
23162         (erfc_test_data): Likewise.
23163         (exp_test_data): Likewise.
23164         (exp_tonearest_test_data): Likewise.
23165         (exp_towardzero_test_data): Likewise.
23166         (exp_downward_test_data): Likewise.
23167         (exp_upward_test_data): Likewise.
23168         (exp10_test_data): Likewise.
23169         (exp2_test_data): Likewise.
23170         (expm1_test_data): Likewise.
23171         (j0_test_data): Likewise.
23172         (j1_test_data): Likewise.
23173         * math/gen-auto-libm-tests.c: Mention "xfail-rounding" in comment.
23174         (input_flag_type): Add flag_xfail_rounding.
23175         (input_flags): Add xfail-rounding.
23176         (adjust_real): Assert mpfr_number_p not mpfr_regular_p.
23177         (output_for_one_input_case): Handle flag_xfail_rounding.
23178         * sysdeps/i386/fpu/libm-test-ulps: Update.
23179         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
23181 2013-12-03  Aurelien Jarno  <aurelien@aurel32.net>
23183         [BZ #16289]
23184         * locale/loadarchive.c (_nl_load_locale_from_archive): Avoid
23185         division by 0.
23187 2013-12-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
23189         [BZ #16195]
23190         * include/stap-probe.h [!USE_STAP_PROBE && !__ASSEMBLER__]
23191         (LIBC_PROBE): Change definition to call STAP_PROBE* macros.
23192         (STAP_PROBE0): New macro.
23193         (STAP_PROBE1): Likewise.
23194         (STAP_PROBE2): Likewise.
23195         (STAP_PROBE3): Likewise.
23196         (STAP_PROBE4): Likewise.
23198 2013-12-02  Ondřej Bílka  <neleai@seznam.cz>
23200         * manual/llio.texi (Memory-mapped I/O): Add shm_open and shm_close.
23202 2013-12-02  Steve Ellcey  <sellcey@mips.com>
23204         * benchtests/Makefile (bench): Add sqrt.
23205         (LDLIBS-bench-sqrt): New.
23206         * benchtests/sqrt-input: New.
23208 2013-12-02  Pavel Simerda  <psimerda@redhat.com>
23210         * sysdeps/posix/getaddrinfo.c (GAIH_OKIFUNSPEC): Remove macro.
23211         (GAIH_EAI): Likewise.
23212         (gaih_inet_serv): Don't use GAIH_OKIFUNSPEC.
23213         (gaih_inet): Likewise.
23214         (getaddrinfo): Don't use GAIH_EAI.
23216         * sysdeps/posix/getaddrinfo.c (UNIX_PATH_MAX): Remove macro.
23217         (struct gaih): Remove definition.
23219 2013-12-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
23221         * nss/nss_files/files-hosts.c (_nss_files_gethostbyname4_r):
23222         Use HERRNOP directly.
23224 2013-12-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
23226         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
23228 2013-11-30  Joseph Myers  <joseph@codesourcery.com>
23230         * math/gen-auto-libm-tests.c (test_functions): Add more
23231         single-argument functions.
23232         (special_fill_pi_2): New function.
23233         (special_fill_minus_pi_2): Likewise.
23234         (special_fill_pi_6): Likewise.
23235         (special_fill_minus_pi_6): Likewise.
23236         (special_fill_pi_3): Likewise.
23237         (special_fill_2pi_3): Likewise.
23238         (special_fill_e): Likewise.
23239         (special_fill_1_e): Likewise.
23240         (special_fill_e_minus_1): Likewise.
23241         (special_real_inputs): Add more special inputs.
23242         (output_for_one_input_case): Do not require ERANGE on underflow to
23243         zero if round-to-nearest result does not underflow to zero, unless
23244         exact results required.
23245         * math/auto-libm-test-in: Add tests of acos, acosh, asin, asinh,
23246         atan, atanh, cbrt, cos and cosh.
23247         * math/auto-libm-test-out: Regenerated.
23248         * math/libm-test.inc (acos_test_data): Use AUTO_TESTS_f_f.
23249         (acos_tonearest_test_data): Likewise.
23250         (acos_towardzero_test_data): Likewise.
23251         (acos_downward_test_data): Likewise.
23252         (acos_upward_test_data): Likewise.
23253         (acosh_test_data): Likewise.
23254         (asin_test_data): Likewise.
23255         (asin_tonearest_test_data): Likewise.
23256         (asin_towardzero_test_data): Likewise.
23257         (asin_upward_test_data): Likewise.
23258         (asinh_test_data): Likewise.
23259         (atan_test_data): Likewise.
23260         (atanh_test_data): Likewise.
23261         (cbrt_test_data): Likewise.
23262         (cos_test_data): Likewise.
23263         (cos_tonearest_test_data): Likewise.
23264         (cos_towardzero_test_data): Likewise.
23265         (cos_downward_test_data): Likewise.
23266         (cos_upward_test_data): Likewise.
23267         (cosh_test_data): Likewise.
23268         (cosh_tonearest_test_data): Likewise.
23269         (cosh_towardzero_test_data): Likewise.
23270         (cosh_downward_test_data): Likewise.
23271         (cosh_upward_test_data): Likewise.
23272         * sysdeps/i386/fpu/libm-test-ulps: Update.
23273         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
23275 2013-11-29  Joseph Myers  <joseph@codesourcery.com>
23277         [BZ #6787]
23278         * math/w_exp10.c (__exp10): Handle a zero result as underflow.
23279         * math/w_exp10f.c (__exp10f): Likewise.
23280         * math/w_exp10l.c (__exp10l): Likewise.
23281         * math/libm-test.inc (exp10_test_data): Add more tests and expect
23282         errno settings in existing tests.
23284         [BZ #14032]
23285         * sysdeps/i386/fpu/e_sqrt.S (__ieee754_sqrt): Do fsqrt with
23286         precision control set to double precision.
23287         * sysdeps/i386/fpu/w_sqrt.c: New file.
23288         * math/auto-libm-test-in: Add more tests.
23289         * math/auto-libm-test-out: Update.
23291         * math/libm-test.inc (sqrt_tonearest_test_data): New variable.
23292         (sqrt_test_tonearest): New function.
23293         (sqrt_towardzero_test_data): New variable.
23294         (sqrt_test_towardzero): New function.
23295         (sqrt_downward_test_data): New variable.
23296         (sqrt_test_downward): New function.
23297         (sqrt_upward_test_data): New variable.
23298         (sqrt_test_upward): New function.
23299         (main): Call the new functions.
23301         * math/gen-auto-libm-tests.c: New file.
23302         * math/auto-libm-test-in: Likewise.
23303         * math/auto-libm-test-out: New generated file.
23304         * math/gen-libm-test.pl ($auto_input, %auto_tests): New global
23305         variables.
23306         (%beautify): Add generated representations of zero.
23307         (top level): Set $auto_input and call parse_auto_input.
23308         (beautify): Remove trailing "f" from hex float constants.
23309         (parse_args): Handle XFAIL_TEST.
23310         (convert_condition): New function.
23311         (or_value): Likewise.
23312         (or_cond_value): Likewise.
23313         (generate_testfile): Handle AUTO_TESTS_* lines.
23314         (parse_auto_input): New function.
23315         * math/libm-test.inc (XFAIL_TEST): New macro.
23316         (ERRNO_UNCHANGED): Update value.
23317         (ERRNO_EDOM): Likewise.
23318         (ERRNO_ERANGE): Likewise.
23319         (IGNORE_RESULT): Likewise.
23320         (TEST_COND_flt_32): New macro.
23321         (TEST_COND_dbl_64): Likewise.
23322         (TEST_COND_ldbl_96_intel): Likewise.
23323         (TEST_COND_ldbl_96_m68k): Likewise.
23324         (TEST_COND_ldbl_128): Likewise.
23325         (TEST_COND_ldbl_128ibm): Likewise.
23326         (TEST_COND_long32): Likewise.
23327         (TEST_COND_long64): Likewise.
23328         (TEST_COND_before_rounding): Likewise.
23329         (TEST_COND_after_rounding): Likewise.
23330         (enable_test): Handle XFAIL_TEST flag.
23331         (sqrt_test_data): Use AUTO_TESTS_f_f for tests of finite inputs
23332         with finite results.
23333         * math/Makefile ($(objpfx)libm-test.stmp): Depend on
23334         auto-libm-test-out.
23336 2013-11-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
23337             Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
23339         [BZ #16214]
23340         * sysdeps/s390/dl-tls.h (__TLS_GET_ADDR): Invoke
23341         __tls_get_addr_internal instead of __tls_get_offset in order to
23342         avoid GOT pointer dependency.  Make rtld export
23343         __tls_get_addr_internal@@GLIBC_PRIVATE while still hiding
23344         __tls_get_addr since we are a __tls_get_offset platform.
23345         * sysdeps/s390/s390-64/tls-macros.h (TLS_IE PIC): Don't rely on
23346         GOT pointer being set up before.
23347         * sysdeps/s390/s390-32/tls-macros.h (TLS_IE PIC): Likewise.
23349 2013-11-28  Joseph Myers  <joseph@codesourcery.com>
23351         * manual/math.texi (Errors in Math Functions): Document accuracy
23352         goals.
23354         [BZ #15004]
23355         * sysdeps/ieee754/ldbl-96/e_atan2l.c: Remove file.
23356         * sysdeps/ieee754/ldbl-96/e_ilogbl.c: Likewise.
23357         * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
23358         * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
23359         * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
23360         * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
23361         * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
23362         * sysdeps/ieee754/ldbl-96/s_fpclassifyl.c: Likewise.
23363         * sysdeps/ieee754/ldbl-96/s_isinfl.c: Likewise.
23364         * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
23365         * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
23366         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
23367         * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
23368         * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
23369         * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
23370         * sysdeps/ieee754/ldbl-96/s_truncl.c: Likewise.
23372         * sysdeps/powerpc/nofpu/atomic-feclearexcept.c: New file.
23373         * sysdeps/powerpc/nofpu/atomic-feholdexcept.c: Likewise.
23374         * sysdeps/powerpc/nofpu/atomic-feupdateenv.c: Likewise.
23375         * sysdeps/powerpc/nofpu/flt-rounds.c: Likewise.
23376         * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feclearexcept.c:
23377         Likewise.
23378         * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feholdexcept.c:
23379         Likewise.
23380         * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feupdateenv.c:
23381         Likewise.
23382         * sysdeps/powerpc/powerpc32/e500/nofpu/flt-rounds.c: Likewise.
23383         * sysdeps/powerpc/nofpu/Makefile [$(subdir) = soft-fp]
23384         (sysdep_routines): Add atomic-feholdexcept, atomic-feclearexcept,
23385         atomic-feupdateenv and flt-rounds.
23386         * sysdeps/powerpc/nofpu/Versions (libc): Add
23387         __atomic_feholdexcept, __atomic_feclearexcept,
23388         __atomic_feupdateenv and __flt_rounds to GLIBC_2.19.
23389         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h
23390         (__feraiseexcept_soft): Declare and use libc_hidden_proto here.
23391         * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c
23392         (__feraiseexcept_soft): Don't declare and use libc_hidden_proto
23393         here.
23394         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libc.abilist:
23395         Update.
23397         * manual/arith.texi (FP Exceptions): Document that exceptions may
23398         not be raised when matherr is used.
23399         (Math Error Reporting): Document overflow in directed rounding
23400         modes.  Document that errno may not be set when finite values are
23401         returned on overflow.  Document intent to set errno on underflow
23402         only for underflow to zero.
23404         [BZ #16271]
23405         * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Set
23406         round-to-nearest then adjust result for other rounding modes.
23407         * include/fenv.h (fegetround): Use libm_hidden_proto.
23408         * math/fegetround.c (fegetround): Use libm_hidden_def.
23409         * sysdeps/i386/fpu/fegetround.c (fegetround): Likewise.
23410         * sysdeps/powerpc/fpu/fegetround.c (fegetround): Likewise.
23411         * sysdeps/powerpc/nofpu/fegetround.c (fegetround): Likewise.
23412         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c (fegetround):
23413         Likewise.
23414         * sysdeps/s390/fpu/fegetround.c (fegetround): Likewise.
23415         * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Likewise.
23416         * sysdeps/sparc/fpu/fegetround.c (fegetround): Likewise.
23417         * sysdeps/x86_64/fpu/fegetround.c (fegetround): Likewise.
23419 2013-11-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
23421         [BZ #16077]
23422         * nss/Versions (libnss_files): Add
23423         _nss_files_gethostbyname3_r.
23424         * nss/nss_files/files-hosts.c (_nss_files_gethostbyname3_r):
23425         New function.
23426         (HOST_DB_LOOKUP): Remove macro.
23427         (_nss_files_gethostbyname_r): Implement function without the
23428         HOST_DB_LOOKUP macro.
23429         (_nss_files_gethostbyname2_r): Likewise.
23431 2013-11-28  Ondřej Bílka  <neleai@seznam.cz>
23433         * malloc/malloc.c (__libc_calloc): Make memset a tail call.
23435 2013-11-26  Uros Bizjak  <ubizjak@gmail.com>
23437         * soft-fp/op-4.h (_FP_FRAC_ASSEMBLE_4): Check rsize against
23438         _FP_W_TYPE_SIZE to avoid "left shift count >= width of type"
23439         warning.
23441 2013-11-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
23443         * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Use
23444         __fe_nomask_env_priv instead of __fe_nomask_env to avoid a PLT call.
23445         * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Likewise.
23446         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Likewise.
23447         * sysdeps/powerpc/fpu/fenv_libc.h (__fe_nomask_env): Rename to
23448         __fe_nomask_env_priv and attribute_hidden.
23449         * sysdeps/powerpc/fpu/fenv_private.h (libc_fesetenv_ppc): Likewise.
23450         (libc_feupdateenv_test_ppc): Likewise.
23451         (libc_feresetround_ppc): Likewise.
23452         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
23453         (__fe_nomask_env): Rename to __fe_nomask_env_priv and adjust
23454         compat_symbol macro.
23455         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
23456         (__fe_nomask_env): Likewise.
23457         * sysdeps/powerpc/fpu/fe_nomask.c (__fe_nomask_env): Likewise.
23459 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
23461         * string/Makefile: Remove ifunc tests.
23462         * string/test-string.h: Define TEST_IFUNC.
23463         * string/test-bcopy-ifunc.c: Remove.
23464         * string/test-bzero-ifunc.c: Likewise.
23465         * string/test-memccpy-ifunc.c: Likewise.
23466         * string/test-memchr-ifunc.c: Likewise.
23467         * string/test-memcmp-ifunc.c: Likewise.
23468         * string/test-memcpy-ifunc.c: Likewise.
23469         * string/test-memmem-ifunc.c: Likewise.
23470         * string/test-memmove-ifunc.c: Likewise.
23471         * string/test-mempcpy-ifunc.c: Likewise.
23472         * string/test-memrchr-ifunc.c: Likewise.
23473         * string/test-memset-ifunc.c: Likewise.
23474         * string/test-rawmemchr-ifunc.c: Likewise.
23475         * string/test-stpcpy-ifunc.c: Likewise.
23476         * string/test-stpncpy-ifunc.c: Likewise.
23477         * string/test-strcasecmp-ifunc.c: Likewise.
23478         * string/test-strcasestr-ifunc.c: Likewise.
23479         * string/test-strcat-ifunc.c: Likewise.
23480         * string/test-strchr-ifunc.c: Likewise.
23481         * string/test-strchrnul-ifunc.c: Likewise.
23482         * string/test-strcmp-ifunc.c: Likewise.
23483         * string/test-strcpy-ifunc.c: Likewise.
23484         * string/test-strcspn-ifunc.c: Likewise.
23485         * string/test-strlen-ifunc.c: Likewise.
23486         * string/test-strncasecmp-ifunc.c: Likewise.
23487         * string/test-strncat-ifunc.c: Likewise.
23488         * string/test-strncmp-ifunc.c: Likewise.
23489         * string/test-strncpy-ifunc.c: Likewise.
23490         * string/test-strnlen-ifunc.c: Likewise.
23491         * string/test-strpbrk-ifunc.c: Likewise.
23492         * string/test-strrchr-ifunc.c: Likewise.
23493         * string/test-strspn-ifunc.c: Likewise.
23494         * string/test-strstr-ifunc.c: Likewise.
23496 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
23498         * benchtests/Makefile: Remove ifunc tests.
23499         * benchtests/bench-string.h: Define TEST_IFUNC.
23500         * benchtests/bench-bcopy-ifunc.c: Remove.
23501         * benchtests/bench-bzero-ifunc.c: Likewise.
23502         * benchtests/bench-memccpy-ifunc.c: Likewise.
23503         * benchtests/bench-memchr-ifunc.c: Likewise.
23504         * benchtests/bench-memcmp-ifunc.c: Likewise.
23505         * benchtests/bench-memcpy-ifunc.c: Likewise.
23506         * benchtests/bench-memmem-ifunc.c: Likewise.
23507         * benchtests/bench-memmove-ifunc.c: Likewise.
23508         * benchtests/bench-mempcpy-ifunc.c: Likewise.
23509         * benchtests/bench-memrchr-ifunc.c: Likewise.
23510         * benchtests/bench-memset-ifunc.c: Likewise.
23511         * benchtests/bench-rawmemchr-ifunc.c: Likewise.
23512         * benchtests/bench-stpcpy_chk-ifunc.c: Likewise.
23513         * benchtests/bench-stpcpy-ifunc.c: Likewise.
23514         * benchtests/bench-stpncpy-ifunc.c: Likewise.
23515         * benchtests/bench-strcasecmp-ifunc.c: Likewise.
23516         * benchtests/bench-strcasestr-ifunc.c: Likewise.
23517         * benchtests/bench-strcat-ifunc.c: Likewise.
23518         * benchtests/bench-strchr-ifunc.c: Likewise.
23519         * benchtests/bench-strchrnul-ifunc.c: Likewise.
23520         * benchtests/bench-strcmp-ifunc.c: Likewise.
23521         * benchtests/bench-strcpy_chk-ifunc.c: Likewise.
23522         * benchtests/bench-strcpy-ifunc.c: Likewise.
23523         * benchtests/bench-strcspn-ifunc.c: Likewise.
23524         * benchtests/bench-strlen-ifunc.c: Likewise.
23525         * benchtests/bench-strncasecmp-ifunc.c: Likewise.
23526         * benchtests/bench-strncat-ifunc.c: Likewise.
23527         * benchtests/bench-strncmp-ifunc.c: Likewise.
23528         * benchtests/bench-strncpy-ifunc.c: Likewise.
23529         * benchtests/bench-strnlen-ifunc.c: Likewise.
23530         * benchtests/bench-strpbrk-ifunc.c: Likewise.
23531         * benchtests/bench-strrchr-ifunc.c: Likewise.
23532         * benchtests/bench-strsep-ifunc.c: Likewise.
23533         * benchtests/bench-strspn-ifunc.c: Likewise.
23534         * benchtests/bench-strstr-ifunc.c: Likewise.
23536 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
23538         * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_resolve_hold): Fix typo.
23540 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
23542         * resolv/netdb.h: Use __glibc_reserved instead __unused.
23543         * rt/aio.h: Likewise.
23544         * sysdeps/gnu/bits/utmp.h: Likewise.
23545         * sysdeps/gnu/bits/utmpx.h: Likewise.
23546         * sysdeps/gnu/netinet/ip_icmp.h: Likewise.
23547         * sysdeps/unix/sysv/linux/bits/ipc.h: Likewise.
23548         * sysdeps/unix/sysv/linux/bits/msq.h: Likewise.
23549         * sysdeps/unix/sysv/linux/bits/sem.h: Likewise.
23550         * sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
23551         * sysdeps/unix/sysv/linux/bits/stat.h: Likewise.
23552         * sysdeps/unix/sysv/linux/kernel_stat.h: Likewise.
23553         * sysdeps/unix/sysv/linux/ntp_gettimex.c: Likewise.
23554         * sysdeps/unix/sysv/linux/powerpc/bits/ipc.h: Likewise.
23555         * sysdeps/unix/sysv/linux/powerpc/bits/msq.h: Likewise.
23556         * sysdeps/unix/sysv/linux/powerpc/bits/sem.h: Likewise.
23557         * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
23558         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Likewise.
23559         * sysdeps/unix/sysv/linux/powerpc/powerpc32/kernel_stat.h: Likewise.
23560         * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Likewise.
23561         * sysdeps/unix/sysv/linux/s390/bits/ipc.h: Likewise.
23562         * sysdeps/unix/sysv/linux/s390/bits/msq.h: Likewise.
23563         * sysdeps/unix/sysv/linux/s390/bits/sem.h: Likewise.
23564         * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
23565         * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
23566         * sysdeps/unix/sysv/linux/s390/bits/utmp.h: Likewise.
23567         * sysdeps/unix/sysv/linux/s390/bits/utmpx.h: Likewise.
23568         * sysdeps/unix/sysv/linux/s390/s390-32/utmp32.h: Likewise.
23569         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: Likewise.
23570         * sysdeps/unix/sysv/linux/sh/bits/shm.h: Likewise.
23571         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
23572         * sysdeps/unix/sysv/linux/sparc/bits/ipc.h: Likewise.
23573         * sysdeps/unix/sysv/linux/sparc/bits/msq.h: Likewise.
23574         * sysdeps/unix/sysv/linux/sparc/bits/sem.h: Likewise.
23575         * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
23576         * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
23577         * sysdeps/unix/sysv/linux/sparc/sparc32/kernel_stat.h: Likewise.
23578         * sysdeps/unix/sysv/linux/sparc/sparc64/kernel_stat.h: Likewise.
23579         * sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c: Likewise.
23580         * sysdeps/unix/sysv/linux/sparc/sys/procfs.h: Likewise.
23581         * sysdeps/unix/sysv/linux/sys/timex.h: Likewise.
23582         * sysdeps/unix/sysv/linux/x86/bits/msq.h: Likewise.
23583         * sysdeps/unix/sysv/linux/x86/bits/sem.h: Likewise.
23584         * sysdeps/unix/sysv/linux/x86/bits/shm.h: Likewise.
23585         * sysdeps/unix/sysv/linux/x86/bits/stat.h: Likewise.
23586         * sysdeps/unix/sysv/linux/xstatconv.c: Likewise.
23587         * sysdeps/x86/fpu/bits/fenv.h: Likewise.
23589 2013-11-25  Carlos O'Donell  <carlos@redhat.com>
23591         [BZ #16245]
23592         * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_eventcodes):
23593         Rename PTRAVE_EVENT_SECCOMP to PTRACE_EVENT_SECCOMP.
23595 2013-11-25  Joseph Myers  <joseph@codesourcery.com>
23597         * sysdeps/powerpc/nofpu/fenv_libc.h (__fegetround): New macro.
23598         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h (__fegetround):
23599         Likewise.
23601 2013-11-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
23603         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Use
23604         SET_RESTORE_ROUND instead of feholdexcept/fesetround/fesetenv.
23605         * sysdeps/powerpc/fpu/fenv_libc.h (__fegetround): Remove define.
23606         (__fesetround): Remove define.
23607         * sysdeps/powerpc/fpu/fenv_private.h: New file: Inline floating point
23608         rounding and exceptions handling.
23609         * sysdeps/powerpc/fpu/math_private.h: Include fenv_private.h.
23610         * sysdeps/powerpc/fpu/fenv_libc.h (__fe_mask_env): Define as hidden.
23611         (__fe_nomask_env): Likewise.
23612         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c (__llrintl): Use
23613         __fegetround instead of fegetround.
23614         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c (__lrintl): Likewise.
23615         * sysdeps/ieee754/ldbl-128ibm/s_rintl.c (__rintl): Likewise.
23617 2013-11-21  Roland McGrath  <roland@hack.frob.com>
23619         * malloc/malloc.c: Move #include <sys/param.h> to the top; comment why
23620         it's there.
23622         * sysdeps/generic/sys/swap.h (swapon): Add FLAGS argument to prototype.
23624 2013-11-21  Meador Inge  <meadori@codesourcery.com>
23626         [BZ #11157]
23627         * crypt/crypt.h (encrypt): Use __glibc_block instead of __block.
23628         (encrypt_r): Likewise.
23629         * malloc/obstack.h (obstack_free): Likewise.
23630         * posix/unistd.h (encrypt): Likewise.
23632 2013-11-21  Guy Martin  <gmsoft@tuxicoman.be>
23634         * sysdeps/generic/ldsodefs.h: Replace DL_DT_INIT_ADDRESS() and
23635         DL_DT_FINI_ADDRESS() macro with DL_CALL_DT_INIT() and
23636         DL_CALL_DT_FINI() that call the functions directly.
23637         * elf/dl-init.c: Use the new DL_CALL_DT_INIT() macro.
23638         * elf/dl-close.c: Use the new DL_CALL_DT_FINI() macro.
23639         * elf/dl-fini.c: Likewise.
23641 2013-11-20  Ondřej Bílka  <neleai@seznam.cz>
23643         * malloc/hooks.c (memalign_check): Add alignment rounding.
23644         * malloc/malloc.c (_mid_memalign): New function.
23645         (__libc_valloc, __libc_pvalloc, __libc_memalign, __posix_memalign):
23646         Implement by calling _mid_memalign.
23647         * manual/probes.texi (Memory Allocation Probes): Remove
23648         memory_valloc_retry and memory_pvalloc_retry.
23650 2013-11-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
23652         * locale/programs/locarchive.c (open_archive): Add const
23653         qualifier to ARCHIVEFNAME and copy default fname to
23654         DEFAULT_FNAME.
23656         [BZ #15601]
23657         * libio/tst-widetext.input: Rename Oriya to Odia.
23658         * locale/iso-639.def: Likewise.
23660         * manual/probes.texi (Mathematical Function Probes): Add
23661         documentation for sin, cos, asin and acos probes.
23662         * sysdeps/ieee754/dbl-64/sincos32.c: Include stap-probe.h.
23663         (__sin32): Add slowasin probe.
23664         (__cos32): Add slowacos probe.
23665         (__mpsin): Add slowsin probe.
23666         (__mpcos): Add slowcos probe.
23668 2013-11-19  Joseph Myers  <joseph@codesourcery.com>
23670         [BZ #15483]
23671         * sysdeps/powerpc/nofpu/sim-full.c (__sim_exceptions): Change to
23672         thread-local __sim_exceptions_thread and global
23673         __sim_exceptions_global.
23674         (__sim_disabled_exceptions): Change to thread-local
23675         __sim_disabled_exceptions_thread and global
23676         __sim_disabled_exceptions_global.
23677         (__sim_round_mode): Change to thread-local __sim_round_mode_thread
23678         and global __sim_round_mode_global.
23679         (__simulate_exceptions): Use thread-local floating-point state and
23680         set global state from it as needed.
23681         * sysdeps/powerpc/nofpu/Versions (GLIBC_PRIVATE): Add
23682         __sim_exceptions_thread, __sim_disabled_exceptions_thread and
23683         __sim_round_mode_thread.
23684         * sysdeps/powerpc/nofpu/soft-supp.h: Include <shlib-compat.h>.
23685         (__sim_exceptions): Change to thread-local __sim_exceptions_thread
23686         and global __sim_exceptions_global.
23687         (__sim_disabled_exceptions): Change to thread-local
23688         __sim_disabled_exceptions_thread and global
23689         __sim_disabled_exceptions_global.
23690         (__sim_round_mode): Change to thread-local __sim_round_mode_thread
23691         and global __sim_round_mode_global.
23692         [SIM_GLOBAL_COMPAT] (SIM_COMPAT_SYMBOL): New macro.
23693         (SIM_SET_GLOBAL): Likewise.
23694         * sysdeps/powerpc/soft-fp/sfp-machine.h
23695         [!(__NO_FPRS__ && !_SOFT_FLOAT)] (FP_ROUNDMODE): Use
23696         __sim_round_mode_thread.
23697         [!(__NO_FPRS__ && !_SOFT_FLOAT)] (FP_TRAPPING_EXCEPTIONS): Use
23698         __sim_disabled_exceptions_thread.
23699         (__sim_exceptions): Change to __sim_exceptions_thread.
23700         (__sim_disabled_exceptions): Change to
23701         __sim_disabled_exceptions_thread.
23702         (__sim_round_mode): Change to __sim_round_mode_thread.
23703         * sysdeps/powerpc/nofpu/fclrexcpt.c (__feclearexcept): Use
23704         thread-local floating-point state and set global state from it as
23705         needed.
23706         * sysdeps/powerpc/nofpu/fedisblxcpt.c (fedisableexcept): Likewise.
23707         * sysdeps/powerpc/nofpu/feenablxcpt.c: Include "soft-supp.h".
23708         (__sim_disabled_exceptions): Remove extern declaration.
23709         (feenableexcept): Use thread-local floating-point state and set
23710         global state from it as needed.
23711         * sysdeps/powerpc/nofpu/fegetenv.c (__sim_exceptions): Remove
23712         extern declaration.
23713         (__sim_disabled_exceptions): Likewise.
23714         (__sim_round_mode): Likewise.
23715         (__fegetenv): Use thread-local floating-point state.
23716         * sysdeps/powerpc/nofpu/fegetexcept.c (fegetexcept): Likewise.
23717         * sysdeps/powerpc/nofpu/fegetround.c (fegetround): Likewise.
23718         * sysdeps/powerpc/nofpu/fesetenv.c (__fesetenv): Use thread-local
23719         floating-point state and set global state from it as needed.
23720         * sysdeps/powerpc/nofpu/fesetround.c (fesetround): Likewise.
23721         * sysdeps/powerpc/nofpu/feupdateenv.c (__feupdateenv): Likewise.
23722         * sysdeps/powerpc/nofpu/fgetexcptflg.c (__fegetexceptflag):
23723         Likewise.
23724         * sysdeps/powerpc/nofpu/fraiseexcpt.c (__feraiseexcept): Likewise.
23725         * sysdeps/powerpc/nofpu/fsetexcptflg.c (__fesetexceptflag):
23726         Likewise.
23727         sysdeps/powerpc/nofpu/ftestexcept.c (fetestexcept): Likewise.
23728         * sysdeps/powerpc/nofpu/get-rounding-mode.h (get_rounding_mode):
23729         Use __sim_round_mode_thread.
23730         * math/test-fenv-tls.c: New file.
23731         * math/Makefile (tests): Add test-fenv-tls.
23732         ($(objpfx)test-fenv-tls): Depend on
23733         $(common-objpfx)nptl/libpthread.so.
23735 2013-11-19  Andreas Schwab  <schwab@suse.de>
23737         * locale/programs/locale.c (show_info): Decode wordarray elements.
23738         * locale/categories.def (LC_MONETARY): Add element for
23739         _NL_MONETARY_CRNCYSTR.
23740         * locale/C-monetary.c (conversion_rate): New variable.
23741         (_nl_C_LC_MONETARY): Use it for _NL_MONETARY_CONVERSION_RATE
23742         element.
23744 2013-11-18  Chris Metcalf  <cmetcalf@tilera.com>
23746         * math/test-fpucw-ieee.c [!defined _FPU_IEEE] (FPU_CONTROL):
23747         Omit definition of FPU_CONTROL and use default if no _FPU_IEEE.
23749 2013-11-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
23751         * elf/Makefile (tst-auxv): New test.
23752         * elf/tst-auxv.c: New
23753         * elf/rtld.c (dl_main): Adjust AT_EXECFN
23755 2013-11-18  Joseph Myers  <joseph@codesourcery.com>
23757         * include/libc-symbols.h (__hidden_proto): Add argument "thread".
23758         (hidden_proto): Caller changed.
23759         (hidden_tls_proto): New macro.
23760         (libc_hidden_tls_proto): Likewise.
23761         (rtld_hidden_tls_proto): Likewise.
23762         (libm_hidden_tls_proto): Likewise.
23763         (libresolv_hidden_tls_proto): Likewise.
23764         (librt_hidden_tls_proto): Likewise.
23765         (libdl_hidden_tls_proto): Likewise.
23766         (libnss_files_hidden_tls_proto): Likewise.
23767         (libnsl_hidden_tls_proto): Likewise.
23768         (libnss_nisplus_hidden_tls_proto): Likewise.
23769         (libutil_hidden_tls_proto): Likewise.
23771 2013-11-18  Ondřej Bílka  <neleai@seznam.cz>
23773         [BZ #10253]
23774         * elf/dl-load.c (fillin_rpath): Add linkmap parameter and expand path.
23775         (decompose_rpath): Defer expansion to fillin_rpath.
23776         (_dl_init_paths): Pass linkmap to fillin_rpath.
23778 2013-11-18  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
23780         * benchtests/Makefile: Add strsep.
23781         * benchtests/bench-strsep.c: New file: strsep benchtest.
23782         * benchtests/bench-strsep-ifunc.c: New file: strsep benchtest.
23784 2013-11-18  Andreas Schwab  <schwab@suse.de>
23786         * locale/programs/locale.c (show_info) [case byte]: Check for
23787         '\377' instead of '\177'.
23788         * locale/C-monetary.c (not_available): Always use "\377".
23789         * stdlib/strfmon_l.c (__vstrfmon_l): Use -2 as marker for
23790         unspecified p_sign_posn and n_sign_posn.  Check for '\377' to
23791         detect unavailable sign_posn locale elements.
23792         * locale/localeconv.c (__localeconv): For grouping and
23793         mon_grouping handle "\177" and "\377" like no grouping.
23794         (INT_ELEM): New macro.  Use it to set all numeric members.
23795         * locale/programs/ld-monetary.c (monetary_read)
23796         <tok_mon_grouping>: Normalize single -1 to the empty string.
23797         * locale/programs/ld-numeric.c (numeric_read) <tok_grouping>:
23798         Likewise.
23800 2013-11-07  Ondřej Bílka  <neleai@seznam.cz>
23802         [BZ #16055]
23803         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Limit width
23804         when we match (nil).
23805         * stdio-common/tst-sscanf.c (struct test): Add testcase.
23807 2013-11-16  Joseph Myers  <joseph@codesourcery.com>
23809         * math/libm-test.inc (TEST_NAN_SIGN): New macro.
23810         (NO_TEST_INLINE): Update value.
23811         (ERRNO_UNCHANGED): Likewise.
23812         (ERRNO_EDOM): Likewise.
23813         (ERRNO_ERANGE): Likewise.
23814         (IGNORE_RESULT): Likewise.
23815         (check_float_internal): Check signs of NaN results if
23816         TEST_NAN_SIGN used.
23817         (check_complex): Pass TEST_NAN_SIGN flag through to second
23818         check_float_internal call.
23819         (copysign_test_data): Add tests with quiet NaNs as second
23820         argument.  Use TEST_NAN_SIGN.
23821         (fabs_test_data): Add test of negative quiet NaN argument.  Use
23822         TEST_NAN_SIGN.
23823         (signbit_test_data): Add tests of quiet NaN argument.
23824         * math/gen-libm-test.pl (parse_args): Handle TEST_NAN_SIGN.
23826         * math/gen-libm-test.pl (show_exceptions): Take extra argument
23827         $ignore_result.
23828         (parse_args): Handle function results specified as IGNORE.
23829         * math/libm-test.inc (IGNORE_RESULT): New macro.
23830         (check_float_internal): Do not check numerical result if flag
23831         IGNORE_RESULT set.
23832         (check_complex): Pass through IGNORE_RESULT to second
23833         check_float_internal call.
23834         (check_int): Do not check numerical result if flag IGNORE_RESULT
23835         set.
23836         (check_long): Likewise.
23837         (check_bool): Likewise.
23838         (check_longlong): Likewise.
23839         (lrint_test_data): Add tests of infinite and NaN arguments.
23840         (lrint_tonearest_test_data): Likewise.
23841         (lrint_towardzero_test_data): Likewise.
23842         (lrint_downward_test_data): Likewise.
23843         (lrint_upward_test_data): Likewise.
23844         (llrint_test_data): Likewise.
23845         (llrint_tonearest_test_data): Likewise.
23846         (llrint_towardzero_test_data): Likewise.
23847         (llrint_downward_test_data): Likewise.
23848         (llrint_upward_test_data): Likewise.
23849         (lround_test_data): Likewise.
23850         (llround_test_data): Likewise.
23852         * math/libm-test.inc (NO_TEST_INLINE): New macro.
23853         (ERRNO_UNCHANGED): Update value.
23854         (ERRNO_EDOM): Likewise.
23855         (ERRNO_ERANGE): Likewise.
23856         (NO_TEST_INLINE_FLOAT): New macro.
23857         (NO_TEST_INLINE_DOUBLE): Likewise.
23858         (enable_test): New function.
23859         (RUN_TEST_f_f): Check enable_test before running test.
23860         (RUN_TEST_2_f): Likewise.
23861         (RUN_TEST_fff_f): Likewise.
23862         (RUN_TEST_c_f): Likewise.
23863         (RUN_TEST_f_f1): Likewise.
23864         (RUN_TEST_fF_f1): Likewise.
23865         (RUN_TEST_fI_f1): Likewise.
23866         (RUN_TEST_ffI_f1): Likewise.
23867         (RUN_TEST_c_c): Likewise.
23868         (RUN_TEST_cc_c): Likewise.
23869         (RUN_TEST_f_i): Likewise.
23870         (RUN_TEST_f_i_tg): Likewise.
23871         (RUN_TEST_ff_i_tg): Likewise.
23872         (RUN_TEST_f_b): Likewise.
23873         (RUN_TEST_f_b_tg): Likewise.
23874         (RUN_TEST_f_l): Likewise.
23875         (RUN_TEST_f_L): Likewise.
23876         (RUN_TEST_fFF_11): Likewise.
23877         (asinh_test_data): Use NO_TEST_INLINE instead of [!TEST_INLINE]
23878         conditionals.
23879         (cosh_test_data): Likewise.
23880         (exp_test_data): Likewise.
23881         (expm1_test_data): Likewise.
23882         (hypot_test_data): Likewise.
23883         (pow_test_data): Likewise.
23884         (sinh_test_data): Likewise.
23885         (tanh_test_data): Likewise.
23886         * math/gen-libm-test.pl (parse_args): Allow NO_TEST_INLINE as
23887         flags argument.
23889         * libm-test.inc (acos_test_data): Disallow inexact exceptions for
23890         tests with quiet NaN input and output.
23891         (acosh_test_data): Likewise.
23892         (asin_test_data): Likewise.
23893         (asinh_test_data): Likewise.
23894         (atan_test_data): Likewise.
23895         (atanh_test_data): Likewise.
23896         (atan2_test_data): Likewise.
23897         (cbrt_test_data): Likewise.
23898         (cos_test_data): Likewise.
23899         (cosh_test_data): Likewise.
23900         (erf_test_data): Likewise.
23901         (erfc_test_data): Likewise.
23902         (exp_test_data): Likewise.
23903         (exp10_test_data): Likewise.
23904         (exp2_test_data): Likewise.
23905         (expm1_test_data): Likewise.
23906         (hypot_test_data): Likewise.
23907         (j0_test_data): Likewise.
23908         (j1_test_data): Likewise.
23909         (jn_test_data): Likewise.
23910         (lgamma_test_data): Likewise.
23911         (log_test_data): Likewise.
23912         (log10_test_data): Likewise.
23913         (log1p_test_data): Likewise.
23914         (log2_test_data): Likewise.
23915         (pow_test_data): Likewise.
23916         (scalb_test_data): Likewise.
23917         (sin_test_data): Likewise.
23918         (sincos_test_data): Likewise.
23919         (sinh_test_data): Likewise.
23920         (tan_test_data): Likewise.
23921         (tanh_test_data): Likewise.
23922         (tgamma_test_data): Likewise.
23923         (y0_test_data): Likewise.
23924         (y1_test_data): Likewise.
23925         (yn_test_data): Likewise.
23927         [BZ #16167]
23928         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Check for first
23929         argument being NaN and avoid computations with second argument in
23930         that case.
23931         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
23932         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
23933         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
23935 2013-11-15  Arun Kumar Pyasi <arun@chitwanix.com>
23937         * locale/iso-639.def: Add Chitwani Tharu (the).
23939 2013-11-14  Andreas Schwab  <schwab@suse.de>
23941         * locale/C-address.c (_nl_C_LC_ADDRESS): Set country_num to zero
23942         word instead of empty string.
23944 2013-11-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
23946         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
23947         (__fe_nomask_env): Fir compat symbol to be remove for GLIBC_2.19.
23948         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
23949         (__fe_nomask_env): Likewise.
23951 2013-11-13  Steve Ellcey  <sellcey@mips.com>
23953         * benchtests/bench-timing.h: Include time.h.
23955 2013-11-13  H.J. Lu  <hongjiu.lu@intel.com>
23957         [BZ #15997]
23958         * sysdeps/unix/sysv/linux/configure.ac (arch_minimum_kernel): Set
23959         to 3.4.0 for x32.
23960         * sysdeps/unix/sysv/linux/configure: Regenerated.
23962 2013-11-13  Joseph Myers  <joseph@codesourcery.com>
23964         [BZ #16151]
23965         * stdlib/strtod_l.c (round_and_return): Do not consider
23966         retval[RETURN_LIBM_SIZE - 1] when determining more_bits for an
23967         exponent one less than half the least subnormal exponent.
23968         * stdlib/test-strtod-round-data: Add more tests.
23969         * stdlib/tst-strtod-round.c (tests): Regenerated.
23971 2013-11-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
23973         [BZ #14143]
23974         * sysdeps/powerpc/bits/fenv.h (__fe_nomask_env): Remove declaration.
23975         (__fe_mask_env): Likewise.
23976         * sysdeps/powerpc/fpu/fenv_libc.h (__fe_nomask_env): Remove
23977         libm_hidden_proto and add function prototype.
23978         (__fe_mask_env): Add function prototype.
23979         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
23980         (__fe_nomask_env): Add compat symbol for GLIBC_2.1.
23981         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c
23982         (__fe_mask_env): Remove compiler warnings regarding ununsed variables.
23983         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
23984         (__fe_nomask_env): Add compat symbol for GLIBC_2.3.
23986 2013-11-13  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
23988         * elf/dl-lookup.c (_dl_lookup_symbol_x): If UNDEF_MAP is false
23989         set reference_name to "" to avoid passing NULL to DSO_FILENAME.
23991 2013-11-13  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
23993         * elf/tlsdeschtab.h (_dl_make_tlsdesc_dynamic): Handle failure
23994         of htab_find_slot().
23996 2013-11-11  David S. Miller  <davem@davemloft.net>
23998         [BZ #16150]
23999         * sysdeps/sparc/sparc64/multiarch/add_n.S: Resolve to the correct generic
24000         symbol in the non-vis3 case in static builds.
24001         * sysdeps/sparc/sparc64/multiarch/addmul_1.S: Likewise.
24002         * sysdeps/sparc/sparc64/multiarch/mul_1.S: Likewise.
24003         * sysdeps/sparc/sparc64/multiarch/sub_n.S: Likewise.
24004         * sysdeps/sparc/sparc64/multiarch/submul_1.S: Likewise.
24006 2013-11-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
24008         [BZ #387]
24009         * elf/dl-object.c (_dl_new_object): Initialize L_NAME from NEWNAME if
24010         it is empty.
24012 2013-11-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
24014         * benchtests/Makefile: Add bench-strtod.
24015         * benchtests/bench-strtod.c: New file: strtod benchtest
24017 2013-11-11  Andreas Schwab  <schwab@suse.de>
24019         [BZ #16153]
24020         * nscd/nscd_getserv_r.c (__nscd_getservbyport_r): Don't include
24021         terminating NUL in key length.
24023 2013-11-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
24025         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET):
24026         Add artificial ODP entry for vDSO symbol for PPC64.
24027         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Adjust includes.
24028         * sysdeps/unix/sysv/linux/powerpc/time.c: Likewise.
24030 2013-11-07  Ondřej Bílka  <neleai@seznam.cz>
24032         [BZ #15374]
24033         * nss/getent.c (services_keys): Recognize services starting with digit.
24035 2013-11-06  David S. Miller  <davem@davemloft.net>
24037         [BZ #15985]
24038         * sysdeps/sparc/sparc32/fpu/s_fdim.S (__fdim): Do not use fnegd
24039         on pre-v9 cpus, use a fnegs+fmovs sequence instead.
24041 2013-11-06  Will Newton  <will.newton@linaro.org>
24043         * manual/memory.texi (Malloc Examples): Remove register
24044         keyword from examples.
24046 2013-11-04  Chris Leonard  <cjl@sugarlabs.org>
24048         * locale/iso-639.def: Correct Walaita (wal) and add Unami Delaware (unm).
24050 2013-11-04  Joseph Myers  <joseph@codesourcery.com>
24052         [BZ #6981]
24053         * include/stdc-predef.h [__GCC_IEC_559] (__STDC_IEC_559__): Define
24054         depending on [__GCC_IEC_559 > 0].
24055         [__GCC_IEC_559_COMPLEX] (__STDC_IEC_559_COMPLEX__): Define
24056         depending on [__GCC_IEC_559_COMPLEX > 0].
24058 2013-11-03  Chris Leonard  <cjl@sugarlabs.org>
24060         * locale/iso-639.def: Add Quechua, Southern (quz) and Silesian (szl)
24061         to iso-639.def.
24063 2013-11-03  Ondřej Bílka  <neleai@seznam.cz>
24065         * elf/rtld.c: Remove unused NONTLS_INIT_TP.
24067 2013-11-01  Ondřej Bílka  <neleai@seznam.cz>
24069         [BZ #16112]
24070         * malloc/malloc (malloc_info): Do not handle first bin as
24071         special case.
24073 2013-11-01  Chris Leonard  <cjl@sugarlabs.org>
24075         * locale/iso-639.def: Add Central Nahuatl (nhn).
24077 2013-11-01  Bruno Haible  <bruno@clisp.org>
24079         [BZ #7003]
24080         * manual/math.texi (BSD Random): Specify range upper bound as
24081         in POSIX.
24083 2013-10-31  Chris Leonard  <cjl@sugarlabs.org>
24085         * locale/iso-639.def: Add Meadow Mari (mhr).
24087 2013-10-31  Ondřej Bílka  <neleai@seznam.cz>
24089         [BZ #14752], [BZ #15763]
24090         * sysdeps/unix/sysv/linux/shm_open.c (shm_open, shm_unlink):
24091         Validate name.
24092         * rt/tst_shm.c: Add test for escaping directory.
24094 2013-10-31  Andreas Schwab  <schwab@suse.de>
24096         [BZ #15917]
24097         * stdio-common/vfscanf.c (_IO_vfwscanf): Handle leading '0' not
24098         followed by 'x' as part of digit sequence.
24099         * stdio-common/tst-sscanf.c (double_tests2): New tests.
24101 2013-10-31  Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
24103         [BZ #16037]
24104         * configure.ac: allow GNU Make 4.0 and greater.
24105         * configure: Regenerated.
24107 2013-10-30  Will Newton  <will.newton@linaro.org>
24109         [BZ #16038]
24110         * malloc/hooks.c (memalign_check): Limit alignment to the
24111         maximum representable power of two.
24112         * malloc/malloc.c (__libc_memalign): Likewise.
24113         * malloc/tst-memalign.c (do_test): Add test for very
24114         large alignment values.
24115         * malloc/tst-posix_memalign.c (do_test): Likewise.
24117 2013-10-30  Ondřej Bílka  <neleai@seznam.cz>
24119         [BZ #11087]
24120         * malloc/malloc.c (sysmalloc): Compute statistics atomically.
24121         (munmap_chunk): Likewise.
24122         (mremap_chunk): Likewise.
24124 2013-10-30  Ondřej Bílka  <neleai@seznam.cz>
24126         [BZ #15799]
24127         * stdlib/div.c (div): Remove obsolete code.
24128         * stdlib/ldiv.c (ldiv): Likewise.
24129         * stdlib/lldiv.c (lldiv): Likewise.
24131 2013-10-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
24133         [BZ #16071]
24134         * nss/nss_files/files-XXX.c (get_contents_ret): New
24135         enumerator.
24136         (get_contents): New function.
24137         (internal_getent): Use it.  Expand size of LINEBUFLEN.
24139 2013-10-30  Mike Frysinger  <vapier@gentoo.org>
24141         * configure.in: Moved to ...
24142         * configure.ac: ... here. Change reference to configure.in
24143         to configure.ac.
24144         * sysdeps/arm/preconfigure.ac: ... here.
24145         configure.in to configure.ac.
24146         * sysdeps/gnu/configure.in: Moved to ...
24147         * sysdeps/gnu/configure.ac: ... here.
24148         * sysdeps/i386/configure.in: Moved to ...
24149         * sysdeps/i386/configure.ac: ... here.
24150         * sysdeps/ieee754/ldbl-opt/configure.in: Moved to ...
24151         * sysdeps/ieee754/ldbl-opt/configure.ac: ... here.
24152         * sysdeps/mach/configure.in: Moved to ...
24153         * sysdeps/mach/configure.ac: ... here.
24154         * sysdeps/mach/hurd/configure.in: Moved to ...
24155         * sysdeps/mach/hurd/configure.ac: ... here.
24156         * sysdeps/powerpc/configure.in: Moved to ...
24157         * sysdeps/powerpc/configure.ac: ... here.
24158         * sysdeps/powerpc/powerpc32/configure.in: Moved to ...
24159         * sysdeps/powerpc/powerpc32/configure.ac: ... here.
24160         * sysdeps/powerpc/powerpc64/configure.in: Moved to ...
24161         * sysdeps/powerpc/powerpc64/configure.ac: ... here.
24162         * sysdeps/s390/s390-32/configure.in: Moved to ...
24163         * sysdeps/s390/s390-32/configure.ac: ... here.
24164         * sysdeps/s390/s390-64/configure.in: Moved to ...
24165         * sysdeps/s390/s390-64/configure.ac: ... here.
24166         * sysdeps/sh/configure.in: Moved to ...
24167         * sysdeps/sh/configure.ac: ... here.
24168         * sysdeps/sparc/configure.in: Moved to ...
24169         * sysdeps/sparc/configure.ac: ... here.
24170         * sysdeps/unix/sysv/linux/configure.in: Moved to ...
24171         * sysdeps/unix/sysv/linux/configure.ac: ... here.
24172         * sysdeps/unix/sysv/linux/powerpc/configure.in: Moved to ...
24173         * sysdeps/unix/sysv/linux/powerpc/configure.ac: ... here.
24174         * sysdeps/x86_64/configure.in: Moved to ...
24175         * sysdeps/x86_64/configure.ac: ... here.
24176         * sysdeps/x86_64/preconfigure.in: Moved to ...
24177         * sysdeps/x86_64/preconfigure.ac: ... here.
24178         * aclocal.m4: Change reference to configure.in to configure.ac.
24179         * config.h.in: Likewise.
24180         * manual/install.texi: Likewise.
24181         * manual/maint.texi: Likewise.
24182         * Makefile: Likewise.
24183         * malloc/Makefile: Likewise.
24184         * nscd/Makefile: Likewise.
24185         * Makeconfig: Change reference to configure.in and
24186         preconfigure.in to configure.ac and preconfigure.ac
24187         respectively.
24188         * INSTALL: Regenerated.
24189         * configure: Likewise.
24190         * sysdeps/gnu/configure: Likewise.
24191         * sysdeps/i386/configure: Likewise.
24192         * sysdeps/ieee754/ldbl-opt/configure: Likewise.
24193         * sysdeps/mach/configure: Likewise.
24194         * sysdeps/mach/hurd/configure: Likewise.
24195         * sysdeps/powerpc/configure: Likewise.
24196         * sysdeps/powerpc/powerpc32/configure: Likewise.
24197         * sysdeps/powerpc/powerpc64/configure: Likewise.
24198         * sysdeps/s390/s390-32/configure: Likewise.
24199         * sysdeps/s390/s390-64/configure: Likewise.
24200         * sysdeps/sh/configure: Likewise.
24201         * sysdeps/sparc/configure: Likewise.
24202         * sysdeps/unix/sysv/linux/configure: Likewise.
24203         * sysdeps/unix/sysv/linux/powerpc/configure: Likewise.
24204         * sysdeps/x86_64/configure: Likewise.
24205         * sysdeps/x86_64/preconfigure: Likewise.
24207 2013-10-29  Andreas Schwab  <schwab@suse.de>
24209         * stdio-common/Makefile (tst-swscanf-ENV): Define.
24211 2013-10-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
24213         * benchtests/pow-inputs: Add new inputs.
24215         * benchtests/exp-inputs: Add new inputs.
24217         * sysdeps/ieee754/dbl-64/sincos32.c (__sin32): Consolidate
24218         conditional check for return value.
24219         (__cos32): Likewise.
24221 2013-10-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
24223         * sysdeps/powerpc/powerpc64/strcpy.S (strcpy): Add word load/store
24224         to provide a boost for large inputs with word alignment.
24225         * sysdeps/powerpc/powerpc64/stpcpy.S (__stpcpy): Rewrite
24226         implementation based on optimized PPC64 strcpy.
24227         * sysdeps/powerpc/powerpc64/power7/strcpy.S: New file: optimized
24228         strcpy for PPC64/POWER7 based on both doubleword and word load/store.
24229         * sysdeps/powerpc/powerpc64/power7/stpcpy.S: New file: optimized
24230         stpcpy for PPC64/POWER7 based on PPC64/POWER7 strcpy.
24232 2013-10-25   Ondřej Bílka  <neleai@seznam.cz>
24234         [BZ #2801]
24235         * manual/socket.texi (Host Names): Fix gethostbyname_r example.
24237 2013-10-25   Ondřej Bílka  <neleai@seznam.cz>
24239         [BZ #14876]
24240         * time/strptime_l.c (__strptime_internal): 14876 Read timezone entry.
24241         * time/tst-strptime.c (day_tests): Add testcase.
24243 2013-10-25   Ondřej Bílka  <neleai@seznam.cz>
24245         [BZ #14029]
24246         * manual/pattern.texi: Acknowledge that fnmatch can fail.
24248 2013-10-25  Fabrice Bauzac  <fbauzac@debian71.nce.amadeus.net>
24250         [BZ #16074]
24251         * manual/llio.texi (Memory-mapped I/O): Indicate that mmap returns
24252         MAP_FAILED on error.
24254 2013-10-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
24256         [BZ #16072]
24257         * sysdeps/posix/getaddrinfo.c (gethosts): Allocate tmpbuf on
24258         heap for large requests.
24260 2013-10-25  Aurelien Jarno  <aurelien@aurel32.net>
24262         [BZ #9954]
24263         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): do not assign native
24264         result if the result has no associated interface.
24265         * sysdeps/posix/getaddrinfo.c (getaddrinfo): correctly detect
24266         interface for all 127.X.Y.Z addresses.
24268 2013-10-24  Chris Leonard  <cjl@sugarlabs.org>
24270         * locale/iso-639.def: Add Ligurian (lij)
24272 2013-10-21  Ondřej Bílka  <neleai@seznam.cz>
24274         [BZ #15825]
24275         * sunrpc/rpc_main.c: Document rpcgen -5.
24277 2013-10-19  Michael Stahl  <mstahl@redhat.com>
24279         * elf/rtld.c (do_preload): Print the reason why preloading failed.
24281 2013-10-19  Ondřej Bílka  <neleai@seznam.cz>
24283         [BZ #10278]
24284         * posix/glob.c: Match only directories when trailing slash is present.
24285         * posix/tst-gnuglob.c (my_opendir): Do not open files.
24286         (main): Add testcase.
24288 2013-10-19  Ondřej Bílka  <neleai@seznam.cz>
24290         [BZ #15670]
24291         * time/tzfile.c (__tzfile_read): Replace alloca with malloc.
24293 2013-10-18  Carlos O'Donell  <carlos@redhat.com>
24295         * manual/crypt.texi (Cryptographic Functions): Using SunRPC and
24296         AUTH_DES will prevent FIPS 140-2 compliance. Add vindex for
24297         AUTH_DES and cindex for FIPS 140-2.
24298         (DES Encryption): Add cindex FIPS 46-3.
24300         * locale/locarchive.h (struct locarhandle): Add fname.
24301         * locale/programs/localedef.c (main): Pass ARGV[remaining]
24302         if an optional argument was specified to --list-archive,
24303         otherwise NULL.
24304         * locale/programs/locarchive.c (show_archive_content): Take new
24305         argument fname and pass it via ah.fname to open_archive.
24306         * locale/programs/localedef.h: Update decl.
24307         (open_archive): If AH->fname is non-null, open that file
24308         rather than the default file name, and don't ignore ENOENT.
24309         (create_archive): Set AH.fname to NULL.
24310         (delete_locales_from_archive): Likewise.
24311         (add_locales_to_archive): Likewise.
24312         * locale/programs/locfile.c (write_all_categories): Likewise.
24314 2013-10-18  Joseph Myers  <joseph@codesourcery.com>
24315             Aldy Hernandez  <aldyh@redhat.com>
24317         * sysdeps/powerpc/powerpc32/e500/nofpu/Makefile: New file.
24318         * sysdeps/powerpc/powerpc32/e500/nofpu/fclrexcpt.c: Likewise.
24319         * sysdeps/powerpc/powerpc32/e500/nofpu/fe_note_change.c: Likewise.
24320         * sysdeps/powerpc/powerpc32/e500/nofpu/fedisblxcpt.c: Likewise.
24321         * sysdeps/powerpc/powerpc32/e500/nofpu/feenablxcpt.c: Likewise.
24322         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c: Likewise.
24323         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetexcept.c: Likewise.
24324         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c: Likewise.
24325         * sysdeps/powerpc/powerpc32/e500/nofpu/feholdexcpt.c: Likewise.
24326         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_const.c: Likewise.
24327         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h: Likewise.
24328         * sysdeps/powerpc/powerpc32/e500/nofpu/fesetenv.c: Likewise.
24329         * sysdeps/powerpc/powerpc32/e500/nofpu/fesetround.c: Likewise.
24330         * sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c: Likewise.
24331         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_prctl.c:
24332         Likewise.
24333         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_spe.c:
24334         Likewise.
24335         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_prctl.c:
24336         Likewise.
24337         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_spe.c:
24338         Likewise.
24339         * sysdeps/powerpc/powerpc32/e500/nofpu/fgetexcptflg.c: Likewise.
24340         * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c:
24341         Likewise.
24342         * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcpt.c: Likewise.
24343         * sysdeps/powerpc/powerpc32/e500/nofpu/fsetexcptflg.c: Likewise.
24344         * sysdeps/powerpc/powerpc32/e500/nofpu/ftestexcept.c: Likewise.
24345         * sysdeps/powerpc/powerpc32/e500/nofpu/get-rounding-mode.h:
24346         Likewise.
24347         * sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S: Likewise.
24348         * sysdeps/powerpc/powerpc32/e500/nofpu/spe-raise.c: Likewise.
24349         * sysdeps/powerpc/preconfigure: Likewise.
24350         * sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nofpu/Implies:
24351         Likewise.
24352         * sysdeps/powerpc/nofpu/soft-supp.h [__NO_FPRS__ && !_SOFT_FLOAT]:
24353         Replace contents of file by #include of <fenv_libc.h>.
24354         * sysdeps/powerpc/soft-fp/sfp-machine.h
24355         [__NO_FPRS__ && !_SOFT_FLOAT]: Include <fenv_libc.h>, <sysdep.h>
24356         and <sys/prctl.h>.
24357         [__NO_FPRS__ && !_SOFT_FLOAT] (__feraiseexcept_soft): Declare.
24358         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_INEXACT): Define macro.
24359         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_INVALID): Likewise.
24360         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_DIVZERO): Likewise.
24361         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_UNDERFLOW): Likewise.
24362         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_OVERFLOW): Likewise.
24363         [__NO_FPRS__ && !_SOFT_FLOAT] (_FP_DECL_EX): Likewise.
24364         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_INIT_ROUNDMODE): Likewise.
24365         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_INIT_EXCEPTIONS): Likewise.
24366         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_HANDLE_EXCEPTIONS): Likewise.
24367         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_ROUNDMODE): Likewise.
24368         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_TRAPPING_EXCEPTIONS): Likewise.
24369         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
24370         Allow copysignl PLT reference to be missing.
24372 2013-10-18  Richard Sandiford  <richard@codesourcery.com>
24373             Joseph Myers  <joseph@codesourcery.com
24375         [BZ #15948]
24376         * locale/programs/ld-collate.c (new_element): Handle <U0000> as a
24377         single character.
24378         (add_to_tablewc): Assert sequence of wide characters is nonempty.
24380 2013-10-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
24382         * elf/tst-tls-dlinfo.c: Don't include tls.h.
24383         * elf/tst-tls1.c: Likewise.
24384         * elf/tst-tls10.h: Likewise.
24385         * elf/tst-tls14.c: Likewise.
24386         * elf/tst-tls2.c: Likewise.
24387         * elf/tst-tls3.c: Likewise.
24388         * elf/tst-tls4.c: Likewise.
24389         * elf/tst-tls5.c: Likewise.
24390         * elf/tst-tls6.c: Likewise.
24391         * elf/tst-tls7.c: Likewise.
24392         * elf/tst-tls8.c: Likewise.
24393         * elf/tst-tls9.c: Likewise.
24394         * elf/tst-tlsmod1.c: Likewise.
24395         * elf/tst-tlsmod13.c: Likewise.
24396         * elf/tst-tlsmod13a.c: Likewise.
24397         * elf/tst-tlsmod14a.c: Likewise.
24398         * elf/tst-tlsmod16a.c: Likewise.
24399         * elf/tst-tlsmod16b.c: Likewise.
24400         * elf/tst-tlsmod2.c: Likewise.
24401         * elf/tst-tlsmod3.c: Likewise.
24402         * elf/tst-tlsmod4.c: Likewise.
24403         * elf/tst-tlsmod5.c: Likewise.
24404         * elf/tst-tlsmod6.c: Likewise.
24406 2013-10-18  Ondřej Bílka  <neleai@seznam.cz>
24408         [BZ #12486]
24409         * malloc/malloc.c: remove checks for statistics.
24411 2013-10-17  Ondřej Bílka  <neleai@seznam.cz>
24413         [BZ #15277]
24414         * inet/inet_net.c (inet_network): Detect additional invalid strings.
24415         * inet/tst-network.c: Add testcase.
24417 2013-10-17  Andreas Schwab  <schwab@suse.de>
24419         [BZ #15218]
24420         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't use gethostbyaddr
24421         to determine canonical name.
24423 2013-10-17  Ondřej Bílka  <neleai@seznam.cz>
24425         * sysdeps/ieee754/dbl-64/dbl2mpn.c: Fix formatting.
24426         * sysdeps/ieee754/dbl-64/dla.h: Likewise.
24427         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
24428         * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
24429         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
24430         * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
24431         * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
24432         * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
24433         * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
24434         * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
24435         * sysdeps/ieee754/dbl-64/e_ilogb.c: Likewise.
24436         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
24437         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
24438         * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
24439         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
24440         * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
24441         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
24442         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
24443         * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Likewise.
24444         * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
24445         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
24446         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
24447         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
24448         * sysdeps/ieee754/dbl-64/MathLib.h: Likewise.
24449         * sysdeps/ieee754/dbl-64/mpa-arch.h: Likewise.
24450         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
24451         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
24452         * sysdeps/ieee754/dbl-64/mpn2dbl.c: Likewise.
24453         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
24454         * sysdeps/ieee754/dbl-64/mydefs.h: Likewise.
24455         * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
24456         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
24457         * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise.
24458         * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
24459         * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
24460         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
24461         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
24462         * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
24463         * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
24464         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
24465         * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
24466         * sysdeps/ieee754/dbl-64/s_isinf.c: Likewise.
24467         * sysdeps/ieee754/dbl-64/s_isinf_ns.c: Likewise.
24468         * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
24469         * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
24470         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
24471         * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
24472         * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
24473         * sysdeps/ieee754/dbl-64/s_modf.c: Likewise.
24474         * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
24475         * sysdeps/ieee754/dbl-64/s_remquo.c: Likewise.
24476         * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
24477         * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
24478         * sysdeps/ieee754/dbl-64/s_scalbn.c: Likewise.
24479         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
24480         * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
24481         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
24482         * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
24484 2013-10-17  Joseph Myers  <joseph@codesourcery.com>
24486         [BZ #16041]
24487         * soft-fp/op-common.h (FP_EXTEND): When input is a signaling NaN,
24488         make result into a quiet NaN.
24490 2013-10-16  Joseph Myers  <joseph@codesourcery.com>
24492         * soft-fp/adddf3.c: Fix horizontal whitespace.
24493         * soft-fp/addsf3.c: Likewise.
24494         * soft-fp/addtf3.c: Likewise.
24495         * soft-fp/divdf3.c: Likewise.
24496         * soft-fp/divsf3.c: Likewise.
24497         * soft-fp/divtf3.c: Likewise.
24498         * soft-fp/double.h: Likewise.
24499         * soft-fp/eqdf2.c: Likewise.
24500         * soft-fp/eqsf2.c: Likewise.
24501         * soft-fp/eqtf2.c: Likewise.
24502         * soft-fp/extenddftf2.c: Likewise.
24503         * soft-fp/extended.h: Likewise.
24504         * soft-fp/extendsfdf2.c: Likewise.
24505         * soft-fp/extendsftf2.c: Likewise.
24506         * soft-fp/extendxftf2.c: Likewise.
24507         * soft-fp/fixdfdi.c: Likewise.
24508         * soft-fp/fixdfsi.c: Likewise.
24509         * soft-fp/fixdfti.c: Likewise.
24510         * soft-fp/fixsfdi.c: Likewise.
24511         * soft-fp/fixsfsi.c: Likewise.
24512         * soft-fp/fixsfti.c: Likewise.
24513         * soft-fp/fixtfdi.c: Likewise.
24514         * soft-fp/fixtfsi.c: Likewise.
24515         * soft-fp/fixtfti.c: Likewise.
24516         * soft-fp/fixunsdfdi.c: Likewise.
24517         * soft-fp/fixunsdfsi.c: Likewise.
24518         * soft-fp/fixunsdfti.c: Likewise.
24519         * soft-fp/fixunssfdi.c: Likewise.
24520         * soft-fp/fixunssfsi.c: Likewise.
24521         * soft-fp/fixunssfti.c: Likewise.
24522         * soft-fp/fixunstfdi.c: Likewise.
24523         * soft-fp/fixunstfsi.c: Likewise.
24524         * soft-fp/fixunstfti.c: Likewise.
24525         * soft-fp/floatdidf.c: Likewise.
24526         * soft-fp/floatdisf.c: Likewise.
24527         * soft-fp/floatditf.c: Likewise.
24528         * soft-fp/floatsidf.c: Likewise.
24529         * soft-fp/floatsisf.c: Likewise.
24530         * soft-fp/floatsitf.c: Likewise.
24531         * soft-fp/floattidf.c: Likewise.
24532         * soft-fp/floattisf.c: Likewise.
24533         * soft-fp/floattitf.c: Likewise.
24534         * soft-fp/floatundidf.c: Likewise.
24535         * soft-fp/floatundisf.c: Likewise.
24536         * soft-fp/floatunditf.c: Likewise.
24537         * soft-fp/floatunsidf.c: Likewise.
24538         * soft-fp/floatunsisf.c: Likewise.
24539         * soft-fp/floatunsitf.c: Likewise.
24540         * soft-fp/floatuntidf.c: Likewise.
24541         * soft-fp/floatuntisf.c: Likewise.
24542         * soft-fp/floatuntitf.c: Likewise.
24543         * soft-fp/fmadf4.c: Likewise.
24544         * soft-fp/fmasf4.c: Likewise.
24545         * soft-fp/fmatf4.c: Likewise.
24546         * soft-fp/gedf2.c: Likewise.
24547         * soft-fp/gesf2.c: Likewise.
24548         * soft-fp/getf2.c: Likewise.
24549         * soft-fp/ledf2.c: Likewise.
24550         * soft-fp/lesf2.c: Likewise.
24551         * soft-fp/letf2.c: Likewise.
24552         * soft-fp/muldf3.c: Likewise.
24553         * soft-fp/mulsf3.c: Likewise.
24554         * soft-fp/multf3.c: Likewise.
24555         * soft-fp/negdf2.c: Likewise.
24556         * soft-fp/negsf2.c: Likewise.
24557         * soft-fp/negtf2.c: Likewise.
24558         * soft-fp/op-1.h: Likewise.
24559         * soft-fp/op-2.h: Likewise.
24560         * soft-fp/op-4.h: Likewise.
24561         * soft-fp/op-8.h: Likewise.
24562         * soft-fp/op-common.h: Likewise.
24563         * soft-fp/quad.h: Likewise.
24564         * soft-fp/single.h: Likewise.
24565         * soft-fp/soft-fp.h: Likewise.
24566         * soft-fp/sqrtdf2.c: Likewise.
24567         * soft-fp/sqrtsf2.c: Likewise.
24568         * soft-fp/sqrttf2.c: Likewise.
24569         * soft-fp/subdf3.c: Likewise.
24570         * soft-fp/subsf3.c: Likewise.
24571         * soft-fp/subtf3.c: Likewise.
24572         * soft-fp/truncdfsf2.c: Likewise.
24573         * soft-fp/trunctfdf2.c: Likewise.
24574         * soft-fp/trunctfsf2.c: Likewise.
24575         * soft-fp/trunctfxf2.c: Likewise.
24576         * soft-fp/unorddf2.c: Likewise.
24577         * soft-fp/unordsf2.c: Likewise.
24578         * soft-fp/unordtf2.c: Likewise.
24580 2013-10-15  Joseph Myers  <joseph@codesourcery.com>
24582         * soft-fp/op-2.h (_FP_DIV_MEAT_2_gmp): Remove macro.
24583         * soft-fp/soft-fp.h (FP_UNSET_EXCEPTION): Likewise.
24585 2013-10-15   Ondřej Bílka  <neleai@seznam.cz>
24587         * elf/dl-libc.c: Clear initfini list after freeing.
24589 2013-10-14  Joseph Myers  <joseph@codesourcery.com>
24591         * soft-fp/adddf3.c: Fix vertical whitespace and indentation.
24592         * soft-fp/addsf3.c: Likewise.
24593         * soft-fp/addtf3.c: Likewise.
24594         * soft-fp/divdf3.c: Likewise.
24595         * soft-fp/divsf3.c: Likewise.
24596         * soft-fp/divtf3.c: Likewise.
24597         * soft-fp/double.h: Likewise.
24598         * soft-fp/eqdf2.c: Likewise.
24599         * soft-fp/eqsf2.c: Likewise.
24600         * soft-fp/eqtf2.c: Likewise.
24601         * soft-fp/extenddftf2.c: Likewise.
24602         * soft-fp/extended.h: Likewise.
24603         * soft-fp/extendsfdf2.c: Likewise.
24604         * soft-fp/extendsftf2.c: Likewise.
24605         * soft-fp/extendxftf2.c: Likewise.
24606         * soft-fp/fixdfdi.c: Likewise.
24607         * soft-fp/fixdfsi.c: Likewise.
24608         * soft-fp/fixdfti.c: Likewise.
24609         * soft-fp/fixsfdi.c: Likewise.
24610         * soft-fp/fixsfsi.c: Likewise.
24611         * soft-fp/fixsfti.c: Likewise.
24612         * soft-fp/fixtfdi.c: Likewise.
24613         * soft-fp/fixtfsi.c: Likewise.
24614         * soft-fp/fixtfti.c: Likewise.
24615         * soft-fp/fixunsdfdi.c: Likewise.
24616         * soft-fp/fixunsdfsi.c: Likewise.
24617         * soft-fp/fixunsdfti.c: Likewise.
24618         * soft-fp/fixunssfdi.c: Likewise.
24619         * soft-fp/fixunssfsi.c: Likewise.
24620         * soft-fp/fixunssfti.c: Likewise.
24621         * soft-fp/fixunstfdi.c: Likewise.
24622         * soft-fp/fixunstfsi.c: Likewise.
24623         * soft-fp/fixunstfti.c: Likewise.
24624         * soft-fp/floatdidf.c: Likewise.
24625         * soft-fp/floatdisf.c: Likewise.
24626         * soft-fp/floatditf.c: Likewise.
24627         * soft-fp/floatsidf.c: Likewise.
24628         * soft-fp/floatsisf.c: Likewise.
24629         * soft-fp/floatsitf.c: Likewise.
24630         * soft-fp/floattidf.c: Likewise.
24631         * soft-fp/floattisf.c: Likewise.
24632         * soft-fp/floattitf.c: Likewise.
24633         * soft-fp/floatundidf.c: Likewise.
24634         * soft-fp/floatundisf.c: Likewise.
24635         * soft-fp/floatunsidf.c: Likewise.
24636         * soft-fp/floatunsisf.c: Likewise.
24637         * soft-fp/floatuntidf.c: Likewise.
24638         * soft-fp/floatuntisf.c: Likewise.
24639         * soft-fp/floatuntitf.c: Likewise.
24640         * soft-fp/fmadf4.c: Likewise.
24641         * soft-fp/fmasf4.c: Likewise.
24642         * soft-fp/fmatf4.c: Likewise.
24643         * soft-fp/gedf2.c: Likewise.
24644         * soft-fp/gesf2.c: Likewise.
24645         * soft-fp/getf2.c: Likewise.
24646         * soft-fp/ledf2.c: Likewise.
24647         * soft-fp/lesf2.c: Likewise.
24648         * soft-fp/letf2.c: Likewise.
24649         * soft-fp/muldf3.c: Likewise.
24650         * soft-fp/mulsf3.c: Likewise.
24651         * soft-fp/multf3.c: Likewise.
24652         * soft-fp/negdf2.c: Likewise.
24653         * soft-fp/negsf2.c: Likewise.
24654         * soft-fp/negtf2.c: Likewise.
24655         * soft-fp/op-1.h: Likewise.
24656         * soft-fp/op-2.h: Likewise.
24657         * soft-fp/op-4.h: Likewise.
24658         * soft-fp/op-8.h: Likewise.
24659         * soft-fp/op-common.h: Likewise.
24660         * soft-fp/quad.h: Likewise.
24661         * soft-fp/single.h: Likewise.
24662         * soft-fp/soft-fp.h: Likewise.
24663         * soft-fp/sqrtdf2.c: Likewise.
24664         * soft-fp/sqrtsf2.c: Likewise.
24665         * soft-fp/sqrttf2.c: Likewise.
24666         * soft-fp/subdf3.c: Likewise.
24667         * soft-fp/subsf3.c: Likewise.
24668         * soft-fp/subtf3.c: Likewise.
24669         * soft-fp/truncdfsf2.c: Likewise.
24670         * soft-fp/trunctfdf2.c: Likewise.
24671         * soft-fp/trunctfsf2.c: Likewise.
24672         * soft-fp/trunctfxf2.c: Likewise.
24673         * soft-fp/unorddf2.c: Likewise.
24674         * soft-fp/unordsf2.c: Likewise.
24675         * soft-fp/unordtf2.c: Likewise.
24677 2013-10-14   Ondřej Bílka  <neleai@seznam.cz>
24679         [BZ #15672]
24680         * misc/error.c (error_tail): Fix possible buffer overflow.
24682 2013-10-14  Aurelien Jarno  <aurelien@aurel32.net>
24684         [BZ #13028]
24685         * res_send.c(__libc_res_nsend): Correctly copy the nameserver
24686         address.
24688 2013-10-14  P. J. McDermott  <pj@pehjota.net>
24690         [BZ #832]
24691         * elf/ldd.bash.in (try_trace): New function.  Delete previous code
24692         testing pipefail option.
24694 2013-10-12  Joseph Myers  <joseph@codesourcery.com>
24696         * soft-fp/double.h: Indent preprocessor directives inside #if.
24697         * soft-fp/extended.h: Likewise.
24698         * soft-fp/op-2.h: Likewise.
24699         * soft-fp/op-4.h: Likewise.
24700         * soft-fp/op-common.h: Likewise.
24701         * soft-fp/quad.h: Likewise.
24702         * soft-fp/single.h: Likewise.
24703         * soft-fp/soft-fp.h: Likewise.
24705 2013-10-12   Yuri Chornoivan <yurchor@ukr.net>
24707         * iconv/iconv_prog.c: Fix typos.
24708         * stdio-common/psiginfo-data.h: Likewise.
24710 2013-10-12   Reuben Thomas <rrt@sc3d.org>
24712         [BZ #15764]
24713         * locale/setlocale.c: Fix typo.
24715 2013-10-12  Joseph Myers  <joseph@codesourcery.com>
24717         [BZ #16036]
24718         * soft-fp/unorddf2.c (__unorddf2): Raise "invalid" exception for
24719         signaling NaN arguments.
24720         * soft-fp/unordsf2.c (__unordsf2): Likewise.
24721         * soft-fp/unordtf2.c (__unordtf2): Likewise.
24723         [BZ #14910]
24724         * soft-fp/gedf2.c (__gedf2): Raise "invalid" exception for all
24725         unordered operands.
24726         * soft-fp/gesf2.c (__gesf2): Likewise.
24727         * soft-fp/getf2.c (__getf2): Likewise.
24728         * soft-fp/ledf2.c (__ledf2): Likewise.
24729         * soft-fp/lesf2.c (__lesf2): Likewise.
24730         * soft-fp/letf2.c (__letf2): Likewise.
24732         * soft-fp/eqdf2.c (__eqdf2): Use FP_INIT_EXCEPTIONS.
24733         * soft-fp/eqsf2.c (__eqsf2): Likewise.
24734         * soft-fp/eqtf2.c (__eqtf2): Likewise.
24735         * soft-fp/fixdfdi.c (__fixdfdi): Likewise.
24736         * soft-fp/fixdfsi.c (__fixdfsi): Likewise.
24737         * soft-fp/fixdfti.c (__fixdfti): Likewise.
24738         * soft-fp/fixsfdi.c (__fixsfdi): Likewise.
24739         * soft-fp/fixsfsi.c (__fixsfsi): Likewise.
24740         * soft-fp/fixsfti.c (__fixsfti): Likewise.
24741         * soft-fp/fixtfdi.c (__fixtfdi): Likewise.
24742         * soft-fp/fixtfsi.c (__fixtfsi): Likewise.
24743         * soft-fp/fixtfti.c (__fixtfti): Likewise.
24744         * soft-fp/fixunsdfdi.c (__fixunsdfdi): Likewise.
24745         * soft-fp/fixunsdfsi.c (__fixunsdfsi): Likewise.
24746         * soft-fp/fixunsdfti.c (__fixunsdfti): Likewise.
24747         * soft-fp/fixunssfdi.c (__fixunssfdi): Likewise.
24748         * soft-fp/fixunssfsi.c (__fixunssfsi): Likewise.
24749         * soft-fp/fixunssfti.c (__fixunssfti): Likewise.
24750         * soft-fp/fixunstfdi.c (__fixunstfdi): Likewise.
24751         * soft-fp/fixunstfsi.c (__fixunstfsi): Likewise.
24752         * soft-fp/fixunstfti.c (__fixunstfti): Likewise.
24753         * soft-fp/floatdidf.c (__floatdidf): Use FP_INIT_ROUNDMODE.
24754         * soft-fp/floatdisf.c (__floatdisf): Likewise.
24755         * soft-fp/floatsisf.c (__floatsisf): Likewise.
24756         * soft-fp/floattidf.c (__floattidf): Likewise.
24757         * soft-fp/floattisf.c (__floattisf): Likewise.
24758         * soft-fp/floattitf.c (__floattitf): Likewise.
24759         * soft-fp/floatundidf.c (__floatundidf): Likewise.
24760         * soft-fp/floatundisf.c (__floatundisf): Likewise.
24761         * soft-fp/floatunsisf.c (__floatunsisf): Likewise.
24762         * soft-fp/floatuntidf.c (__floatuntidf): Likewise.
24763         * soft-fp/floatuntisf.c (__floatuntisf): Likewise.
24764         * soft-fp/floatuntitf.c (__floatuntitf): Likewise.
24765         * soft-fp/gedf2.c (__gedf2): Use FP_INIT_EXCEPTIONS.
24766         * soft-fp/gesf2.c (__gesf2): Likewise.
24767         * soft-fp/getf2.c (__getf2): Likewise.
24768         * soft-fp/ledf2.c (__ledf2): Likewise.
24769         * soft-fp/lesf2.c (__lesf2): Likewise.
24770         * soft-fp/letf2.c (__letf2): Likewise.
24772         * soft-fp/soft-fp.h [FP_NO_EXCEPTIONS] (FP_SET_EXCEPTION):
24773         Undefine and redefine.
24774         [FP_NO_EXCEPTIONS] (FP_CUR_EXCEPTIONS): Likewise.
24775         [FP_NO_EXCEPTIONS] (FP_TRAPPING_EXCEPTIONS): Likewise.
24776         [FP_NO_EXCEPTIONS] (FP_ROUNDMODE): Likewise.
24777         * soft-fp/floatditf.c (FP_NO_EXCEPTIONS): Define macro.
24778         (__floatditf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
24779         * soft-fp/floatsidf.c (FP_NO_EXCEPTIONS): Define macro.
24780         (__floatsidf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
24781         * soft-fp/floatsitf.c (FP_NO_EXCEPTIONS): Define macro.
24782         (__floatsitf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
24783         * soft-fp/floatunditf.c (FP_NO_EXCEPTIONS): Define macro.
24784         (__floatunditf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
24785         * soft-fp/floatunsidf.c (FP_NO_EXCEPTIONS): Define macro.
24786         (__floatunsidf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
24787         * soft-fp/floatunsitf.c (FP_NO_EXCEPTIONS): Define macro.
24788         (__floatunsitf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
24790         [BZ #16032]
24791         * soft-fp/op-2.h (_FP_DIV_MEAT_2_udiv): Shift numerator right
24792         without decrementing exponent if mantissa >= that for the
24793         denominator, not >.
24794         (_FP_DIV_MEAT_2_gmp): Test numerator mantissa >= that for the
24795         denominator, not >.  Decrement exponent in < case instead of
24796         incrementing in >= case.
24797         * soft-fp/op-4.h (_FP_DIV_MEAT_4_udiv): Shift numerator right
24798         without decrementing exponent if mantissa >= that for the
24799         denominator, not >.
24801         * soft-fp/op-common.h (_FP_TO_INT): Reverse test of sign for
24802         computing saturated result for unsigned overflow.
24804 2013-10-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
24805             Jeff Law  <law@redhat.com>
24807         * sysdeps/ieee754/dbl-64/e_atan2.c: Include stap-probe.h.
24808         (atan2Mp): Add systemtap probe marker.
24809         * sysdeps/ieee754/dbl-64/e_log.c: include stap-probe.h.
24810         (__ieee754_log): Add systemtap probe marker.
24811         * sysdeps/ieee754/dbl-64/s_atan.c: Include stap-probe.h.
24812         (atanMp): Add systemtap probe marker.
24813         * sysdeps/ieee754/dbl-64/s_tan.c: Include stap-probe.h.
24814         (tanMp): Add systemtap probe marker.
24815         * sysdeps/ieee754/dbl-64/slowexp.c: Include stap-probe.h.
24816         (__slowexp): Add systemtap probe marker.
24817         * sysdeps/ieee754/dbl-64/slowpow.c: Include stap-probe.h.
24818         (__slowpow): Add systemtap probe marker.
24819         * manual/probes.texi: Document probes.
24821 2013-10-11  Eric Biggers  <ebiggers3@gmail.com>
24823         [BZ #15362]
24824         * libio/fileops.c (_IO_new_file_write): Return count of bytes
24825         written.
24826         (_IO_new_file_xsputn): Don't return EOF if nothing has been
24827         written.
24828         * libio/iofwrite.c (_IO_fwrite): Return count if bytes were
24829         written to buffer but not flushed.
24830         * libio/iofwrite_u.c:  Likewise.
24831         * libio/iopadn.c:  Return bytes returned even if EOF was
24832         encountered.
24833         * libio/iowpadn.c:  Likewise.
24834         * stdio-common/vfprintf.c [COMPILE_WPRINTF] (PAD): Return error
24835         if _IO_padn does not write the whole buffer.
24836         [!COMPILE_WPRINTF] (PAD): Likewise.
24838 2013-10-10  David S. Miller  <davem@davemloft.net>
24840         * sysdeps/posix/dirstream.h (struct __dirstream): Fix alignment of
24841         directory block.
24843 2013-10-10  Joseph Myers  <joseph@codesourcery.com>
24845         * soft-fp/extendxftf2.c: Use copyright year range.  Use URL
24846         instead of FSF address.
24847         * soft-fp/fixdfti.c: Likewise.
24848         * soft-fp/fixsfti.c: Likewise.
24849         * soft-fp/fixtfti.c: Likewise.
24850         * soft-fp/fixunsdfti.c: Likewise.
24851         * soft-fp/fixunssfti.c: Likewise.
24852         * soft-fp/fixunstfti.c: Likewise.
24853         * soft-fp/floattidf.c: Likewise.
24854         * soft-fp/floattisf.c: Likewise.
24855         * soft-fp/floattitf.c: Likewise.
24856         * soft-fp/floatuntidf.c: Likewise.
24857         * soft-fp/floatuntisf.c: Likewise.
24858         * soft-fp/floatuntitf.c: Likewise.
24859         * soft-fp/trunctfxf2.c: Likewise.
24861         * soft-fp/extendxftf2.c: New file.  Copied from libgcc.
24862         * soft-fp/fixdfti.c: Likewise.
24863         * soft-fp/fixsfti.c: Likewise.
24864         * soft-fp/fixtfti.c: Likewise.
24865         * soft-fp/fixunsdfti.c: Likewise.
24866         * soft-fp/fixunssfti.c: Likewise.
24867         * soft-fp/fixunstfti.c: Likewise.
24868         * soft-fp/floattidf.c: Likewise.
24869         * soft-fp/floattisf.c: Likewise.
24870         * soft-fp/floattitf.c: Likewise.
24871         * soft-fp/floatuntidf.c: Likewise.
24872         * soft-fp/floatuntisf.c: Likewise.
24873         * soft-fp/floatuntitf.c: Likewise.
24874         * soft-fp/trunctfxf2.c: Likewise.
24876 2013-10-10  David S. Miller  <davem@davemloft.net>
24878         * sysdeps/sparc/fpu/libm-test-ulps: Update.
24880 2013-10-10  Joseph Myers  <joseph@codsourcery.com>
24882         * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
24883         (CFLAGS-e_hypotl.c): Add -fno-builtin-fabsl.
24884         [$(subdir) = math] (CFLAGS-w_acosl.c): Likewise.
24885         [$(subdir) = math] (CFLAGS-w_asinl.c): Likewise.
24886         [$(subdir) = math] (CFLAGS-w_atanhl.c): Likewise.
24887         [$(subdir) = math] (CFLAGS-w_j0l.c): Likewise.
24888         [$(subdir) = math] (CFLAGS-w_j1l.c): Likewise.
24890         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Check
24891         for NaNs before doing comparisons on argument.
24892         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl):
24893         Likewise.
24895 2013-10-10  Will Newton  <will.newton@linaro.org>
24897         * malloc/hooks.c (memalign_check): Ensure the value of bytes
24898         passed to _int_memalign does not overflow.
24900 2013-10-10  Torvald Riegel  <triegel@redhat.com>
24902         * scripts/bench.pl: Add include-sources directive.
24903         * benchtests/README: Update documentation.
24905 2013-10-10  Joseph Myers  <joseph@codesourcery.com>
24907         * soft-fp/soft-fp.h (FP_INIT_EXCEPTIONS): New macro.
24908         * soft-fp/extenddftf2.c (__extenddftf2): Use FP_INIT_EXCEPTIONS
24909         instead of FP_INIT_ROUNDMODE.
24910         * soft-fp/extendsfdf2.c (__extendsfdf2): Likewise.
24911         * soft-fp/extendsftf2.c (__extendsftf2): Likewise.
24913         [BZ #16034]
24914         * soft-fp/op-common.h (_FP_NEG): Document input as raw.  Do not
24915         copy class of input value.
24916         * soft-fp/negdf2.c (__negdf2): Use raw unpacking and packing.  Do
24917         not handle exceptions.
24918         * soft-fp/negsf2.c (__negsf2): Likewise.
24919         * soft-fp/negtf2.c (__negtf2): Likewise.
24920         * sysdeps/sparc/sparc32/soft-fp/q_neg.c (_Q_neg): Likewise.
24922 2013-10-09  Joseph Myers  <joseph@codesourcery.com>
24924         * soft-fp/op-4.h (_FP_FRAC_DISASSEMBLE_4): Remove trailing
24925         semicolon.  From Linux kernel.
24927 2013-10-09  Adam Buchbinder  <adam.buchbinder@gmail.com>
24929         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Fix typo in comment.
24931 2013-10-08  Yogesh Chaudhari  <mr.yogesh@gmail.com>
24933         [BZ #156]
24934         * manual/socket.texi: Added statement about buffer
24935         for gethostbyname2_r.
24937 2013-10-08  Ondřej Bílka  <neleai@seznam.cz>
24939         * sysdeps/x86_64/memset.S (ALIGN): Macro removed.
24940         Use .p2align directive instead, throughout.
24941         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
24942         * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Likewise.
24943         * sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S: Likewise.
24944         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
24945         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
24946         * sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S: Likewise.
24947         * sysdeps/x86_64/strchr.S: Likewise.
24948         * sysdeps/x86_64/strrchr.S: Likewise.
24950 2013-10-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
24952         * sysdeps/ieee754/dbl-64/e_pow.c: Fix code formatting.
24954         * sysdeps/ieee754/dbl-64/e_exp.c: Fix code formatting.
24956         * sysdeps/generic/math_private.h (__mpsin1): Remove
24957         declaration.
24958         (__mpcos1): Likewise.
24959         (__mpsin): New argument __range_reduce.
24960         (__mpcos): Likewise.
24961         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
24962         (slow): Use __mpsin and __mpcos.
24963         (slow1): Likewise.
24964         (slow2): Likewise.
24965         (sloww): Likewise.
24966         (sloww1): Likewise.
24967         (sloww2): Likewise.
24968         (bsloww): Likewise.
24969         (bsloww1): Likewise.
24970         (bsloww2): Likewise.
24971         (cslow2): Likewise.
24972         (csloww): Likewise.
24973         (csloww1): Likewise.
24974         (csloww2): Likewise.
24975         * sysdeps/ieee754/dbl-64/sincos32.c (__mpsin): Add argument
24976         range_reduce.  Merge in __mpsin1.
24977         (__mpcos): Likewise.
24978         (__mpsin1): Remove.
24979         (__mpcos1): Likewise.
24981 2013-10-07  Joseph Myers  <joseph@codesourcery.com>
24983         * locale/loadlocale.c (_nl_intern_locale_data): Use
24984         LOCFILE_ALIGNED_P.
24985         * locale/programs/3level.h (CONCAT(add_locale_,TABLE)): Use
24986         LOCFILE_ALIGN_UP and LOCFILE_ALIGN.
24987         * locale/programs/ld-collate.c (obstack_int32_grow): Assert that
24988         obstack data is appropriately aligned.
24989         (obstack_int32_grow_fast): Likewise.
24990         * locale/programs/ld-ctype.c (ctype_output): Use LOCFILE_ALIGN.
24991         * locale/programs/locfile.c (add_locale_uint32): Likewise.
24992         (add_locale_uint32_array): Likewise.
24994 2013-10-07  Siddhesh Poyarekar  <siddhesh@redhat.com>
24996         * benchtests/Makefile: Remove ARGLIST and RET variables.
24997         ($(objpfx)bench-%.c): Pass only function name to the script.
24998         * benchtests/README: Update documentation.
24999         * benchtests/acos-inputs: Add new directives.
25000         * benchtests/acosh-inputs: Likewise.
25001         * benchtests/asin-inputs: Likewise.
25002         * benchtests/asinh-inputs: Likewise.
25003         * benchtests/atan-inputs: Likewise.
25004         * benchtests/atanh-inputs: Likewise.
25005         * benchtests/cos-inputs: Likewise.
25006         * benchtests/cosh-inputs: Likewise.
25007         * benchtests/exp-inputs: Likewise.
25008         * benchtests/log-inputs: Likewise.
25009         * benchtests/pow-inputs: Likewise.
25010         * benchtests/rint-inputs: Likewise.
25011         * benchtests/sin-inputs: Likewise.
25012         * benchtests/sinh-inputs: Likewise.
25013         * benchtests/tan-inputs: Likewise.
25014         * benchtests/tanh-inputs: Likewise.
25015         * scripts/bench.pl: Add support for new directives.
25017 2013-10-07  Alan Modra  <amodra@gmail.com>
25019         * README: Fix careless merge.
25021 2013-10-05  Alan Modra  <amodra@gmail.com>
25023         * NEWS: Mention powerpc64le support and bugs fixed.
25024         * README: Both big-endian and little-endian powerpc64 supported.
25026 2013-10-04  Samuel Thibault  <samuel.thibault@ens-lyon.org>
25028         * sysdeps/mach/hurd/fork.c (_hurd_atfork_prepare_hook)
25029         (_hurd_atfork_child_hook, _hurd_atfork_parent_hook): New hooks.
25030         (__fork): Call _hurd_atfork_prepare_hook hooks before all locking, call
25031         _hurd_atfork_parent_hook or _hurd_atfork_child_hook after all unlocking.
25033 2013-10-04  Ryan S. Arnold  <ryan.arnold@linaro.org>
25035         * misc/swapon.c (swapon): Update definition, adding FLAGS parameter to
25036         match prototype.
25038 2013-10-04  Joseph Myers  <joseph@codesourcery.com>
25040         * sysdeps/powerpc/powerpc32/Makefile [$(with-fp) = yes] (+cflags):
25041         Move -mhard-float appending from
25042         ports/sysdeps/powerpc/powerpc32/Makefile.
25043         [$(with-fp) = yes] (ASFLAGS): Likewise.
25044         [$(with-fp) = yes] (sysdep-LDFLAGS): Likewise.
25045         * sysdeps/powerpc/nofpu: Move directory from
25046         ports/sysdeps/powerpc/nofpu.
25047         * sysdeps/powerpc/soft-fp: Move directory from
25048         ports/sysdeps/powerpc/soft-fp.
25049         * sysdeps/powerpc/powerpc32/405: Move directory from
25050         ports/sysdeps/powerpc/powerpc32/405.
25051         * sysdeps/powerpc/powerpc32/440: Move directory from
25052         ports/sysdeps/powerpc/powerpc32/440.
25053         * sysdeps/powerpc/powerpc32/464: Move directory from
25054         ports/sysdeps/powerpc/powerpc32/464.
25055         * sysdeps/powerpc/powerpc32/476: Move directory from
25056         ports/sysdeps/powerpc/powerpc32/476.
25057         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu: Move directory
25058         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu.
25059         * sysdeps/unix/sysv/linux/powerpc/powerpc32/405: Move directory
25060         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/405.
25061         * sysdeps/unix/sysv/linux/powerpc/powerpc32/440: Move directory
25062         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/440.
25063         * sysdeps/unix/sysv/linux/powerpc/powerpc32/464: Move directory
25064         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/464.
25065         * sysdeps/unix/sysv/linux/powerpc/powerpc32/476: Move directory
25066         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/476.
25067         * README: Update for powerpc-*-linux-gnu software floating point
25068         support in libc.
25070         * sysdeps/unix/sysv/linux/configure.in (powerpc/powerpc32): Change
25071         case to powerpc/powerpc32*.
25072         * sysdeps/unix/sysv/linux/configure: Regenerated.
25074         * sysdeps/powerpc/fpu_control.h [__NO_FPRS__ && !_SOFT_FLOAT]
25075         (_FPU_MASK_OM): Define as 0x04.
25076         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_UM): Define as 0x08.
25077         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RESERVED): Define as
25078         0x00c10080.
25079         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_DEFAULT): Define as
25080         0x0000003c.
25081         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_IEEE): Define as _FPU_DEFAULT.
25083         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S
25084         (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use
25085         getcontext_e500.
25086         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S
25087         (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use
25088         setcontext_e500.
25089         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S
25090         (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use getcontext_e500
25091         and setcontext_e500.
25093 2013-10-04  Chris Leonard  <cjl@sugarlabs,.org>
25095         * locale/iso-3166.def: Update iso-1366.def and related occurrences
25097 2013-10-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
25099         * manual/threads.texi (Default Thread Attributes): Fix typo.
25101 2013-10-04  Will Newton  <will.newton@linaro.org>
25103         * malloc/Makefile: Add tst-memalign.
25104         * malloc/tst-memalign.c: New file.
25106         * malloc/tst-posix_memalign.c: Add comments.
25107         (do_test): Add comments and call free on all potentially
25108         allocated pointers. Add space after cast.
25110         * malloc/tst-pvalloc.c: Add comments.
25111         (do_test): Add comments and call free on all potentially
25112         allocated pointers. Remove duplicate check for NULL pointer.
25113         Add space after cast.
25115         * malloc/tst-valloc.c: Add comments.
25116         (do_test): Add comments and call free on all potentially
25117         allocated pointers. Remove duplicate check for NULL pointer.
25118         Add space after cast.
25120 2013-10-04  Alan Modra  <amodra@gmail.com>
25122         * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
25123         Use stdint types in rather than __attribute__((mode())).
25124         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
25126 2013-10-04  Alan Modra  <amodra@gmail.com>
25128         * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
25129         Correct handling of unaligned relocs for little-endian.
25130         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
25132 2013-10-04  Alan Modra  <amodra@gmail.com>
25134         * configure.in: Map powerpc64le and powerpcle to base_machine/machine.
25135         * configure: Regenerate.
25136         * nptl/shlib-versions: Powerpc*le starts at 2.18.
25137         * shlib-versions: Likewise.
25139 2013-10-04  Alan Modra  <amodra@gmail.com>
25141         * string/tester.c (test_memrchr): Increment reported test cycle.
25143 2013-10-04  Alan Modra  <amodra@gmail.com>
25145         * string/test-memcpy.c (do_one_test): When reporting errors, print
25146         string address and don't overrun end of string.
25148 2013-10-04  Alan Modra  <amodra@gmail.com>
25150         * sysdeps/powerpc/powerpc64/power7/memchr.S: Replace rlwimi with
25151         insrdi.  Make better use of reg selection to speed exit slightly.
25152         Schedule entry path a little better.  Remove useless "are we done"
25153         checks on entry to main loop.  Handle wrapping around zero address.
25154         Correct main loop count.  Handle single left-over word from main
25155         loop inline rather than by using loop_small.  Remove extra word
25156         case in loop_small caused by wrong loop count.  Add little-endian
25157         support.
25158         * sysdeps/powerpc/powerpc32/power7/memchr.S: Likewise.
25159         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.  Use proper
25160         cache hint.
25161         * sysdeps/powerpc/powerpc32/power7/memrchr.S: Likewise.
25162         * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: Add little-endian
25163         support.  Avoid rlwimi.
25164         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: Likewise.
25166 2013-10-04  Alan Modra  <amodra@gmail.com>
25168         * sysdeps/powerpc/powerpc64/memset.S: Replace rlwimi with
25169         insrdi.  Formatting.
25170         * sysdeps/powerpc/powerpc64/power4/memset.S: Likewise.
25171         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
25172         * sysdeps/powerpc/powerpc64/power7/memset.S: Likewise.
25173         * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise.
25174         * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
25175         * sysdeps/powerpc/powerpc32/power7/memset.S: Likewise.
25177 2013-10-04  Alan Modra  <amodra@gmail.com>
25179         * sysdeps/powerpc/powerpc32/power4/memcpy.S: Add little endian support.
25180         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
25181         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Likewise.
25182         * sysdeps/powerpc/powerpc32/power7/mempcpy.S: Likewise.
25183         * sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
25184         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
25185         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
25186         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Likewise.
25187         * sysdeps/powerpc/powerpc64/power7/mempcpy.S: Likewise.  Make better
25188         use of regs.  Use power7 mtocrf.  Tidy function tails.
25190 2013-10-04  Alan Modra  <amodra@gmail.com>
25192         * sysdeps/powerpc/powerpc64/power7/memcmp.S: Add little-endian support.
25193         Formatting.  Consistently use rXXX register defines or rN defines.
25194         Use early exit labels that avoid restoring unused non-volatile regs.
25195         Make cr field use more consistent with rWORDn compares.  Rename
25196         regs used as shift registers for unaligned loop, using rN defines
25197         for short lifetime/multiple use regs.
25198         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
25199         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.  Exit with
25200         addi 1,1,64 to pop stack frame.  Simplify return value code.
25201         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
25203 2013-10-04  Alan Modra  <amodra@gmail.com>
25205         * sysdeps/powerpc/powerpc64/power7/strchr.S (strchr): Add little-endian
25206         support.  Correct typos, formatting.  Optimize tail.  Use insrdi
25207         rather than rlwimi.
25208         * sysdeps/powerpc/powerpc32/power7/strchr.S: Likewise.
25209         * sysdeps/powerpc/powerpc64/power7/strchrnul.S (__strchrnul): Add
25210         little-endian support.  Correct typos.
25211         * sysdeps/powerpc/powerpc32/power7/strchrnul.S: Likewise.  Use insrdi
25212         rather than rlwimi.
25213         * sysdeps/powerpc/powerpc64/strchr.S (rTMP4, rTMP5): Define.  Use
25214         in loop and entry code to keep "and." results.
25215         (strchr): Add little-endian support.  Comment.  Move cntlzd
25216         earlier in tail.
25217         * sysdeps/powerpc/powerpc32/strchr.S: Likewise.
25219 2013-10-04  Alan Modra  <amodra@gmail.com>
25221         * sysdeps/powerpc/powerpc64/strcpy.S: Add little-endian support:
25222         * sysdeps/powerpc/powerpc32/strcpy.S: Likewise.
25223         * sysdeps/powerpc/powerpc64/stpcpy.S: Likewise.
25224         * sysdeps/powerpc/powerpc32/stpcpy.S: Likewise.
25226 2013-10-04  Alan Modra  <amodra@gmail.com>
25228         * sysdeps/powerpc/powerpc64/strcmp.S (rTMP2): Define as r0.
25229         (rTMP): Define as r11.
25230         (strcmp): Add little-endian support.  Optimise tail.
25231         * sysdeps/powerpc/powerpc32/strcmp.S: Similarly.
25232         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
25233         * sysdeps/powerpc/powerpc32/strncmp.S: Likewise.
25234         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
25235         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Likewise.
25236         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
25237         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
25239 2013-10-04  Alan Modra  <amodra@gmail.com>
25241         * sysdeps/powerpc/powerpc64/power7/strnlen.S (strnlen): Add
25242         little-endian support.  Remove unnecessary "are we done" tests.
25243         Handle "s" wrapping around zero and extremely large "size".
25244         Correct main loop count.  Handle single left-over word from main
25245         loop inline rather than by using small_loop.  Correct comments.
25246         Delete "zero" tail, use "end_max" instead.
25247         * sysdeps/powerpc/powerpc32/power7/strnlen.S: Likewise.
25249 2013-10-04  Alan Modra  <amodra@gmail.com>
25251         * sysdeps/powerpc/powerpc64/power7/strlen.S (strlen): Add little-endian
25252         support.  Don't branch over align.
25253         * sysdeps/powerpc/powerpc32/power7/strlen.S: Likewise.
25254         * sysdeps/powerpc/powerpc64/strlen.S (strlen): Add little-endian
25255         support.  Rearrange tmp reg use to suit.  Comment.
25256         * sysdeps/powerpc/powerpc32/strlen.S: Likewise.
25258 2013-10-04  Alan Modra  <amodra@gmail.com>
25260         * sysdeps/unix/sysv/linux/powerpc/bits/sigstack.h: New file.
25262 2013-10-04  Alan Modra  <amodra@gmail.com>
25264         * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S: Use
25265         conditional form of branch and link when obtaining pc.
25266         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
25268 2013-10-04  Alan Modra  <amodra@gmail.com>
25270         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Use
25271         HIWORD/LOWORD.
25272         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Ditto.
25273         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Ditto.
25275 2013-10-04  Alan Modra  <amodra@gmail.com>
25277         * sysdeps/powerpc/longjmp.c: Use proper symbol versioning macros.
25278         * sysdeps/powerpc/novmx-longjmp.c: Likewise.
25279         * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Likewise.
25280         * sysdeps/powerpc/powerpc32/bsd-setjmp.S: Likewise.
25281         * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
25282         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
25283         * sysdeps/powerpc/powerpc32/mcount.c: Likewise.
25284         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
25285         * sysdeps/powerpc/powerpc64/setjmp.S: Likewise.
25286         * nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: Likewise.
25288 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
25289             Alistair Popple <alistair@ozlabs.au.ibm.com>
25290             Alan Modra <amodra@gmail.com>
25292         [BZ #15723]
25293         * sysdeps/powerpc/jmpbuf-offsets.h: Comment fix.
25294         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Correct
25295         _dl_hwcap access for little-endian.
25296         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.  Don't
25297         destroy vmx regs when saving unaligned.
25298         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Correct CR load.
25299         * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise CR save.  Don't
25300         destroy vmx regs when saving unaligned.
25302 2013-10-04  Alan Modra  <amodra@gmail.com>
25304         * sysdeps/powerpc/powerpc32/power4/hp-timing.h (HP_TIMING_NOW):
25305         Don't use a union to pack hi/low value.
25307 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
25309         * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Correct float constants
25310         for little-endian.
25311         * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
25312         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: Likewise.
25313         * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
25314         * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
25315         * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.
25317 2013-10-04  Alan Modra  <amodra@gmail.com>
25319         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Increase alignment of
25320         constants to usual value for .cst8 section, and remove redundant
25321         high address load.
25322         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Use float
25323         constant for 0x1p52.  Load little-endian words of double from
25324         correct stack offsets.
25326 2013-10-04  Alan Modra  <amodra@gmail.com>
25328         * sysdeps/powerpc/sysdep.h (LOWORD, HIWORD, HISHORT): Define.
25329         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Load little-endian
25330         words of double from correct stack offsets.
25331         * sysdeps/powerpc/powerpc32/fpu/s_copysignl.S: Likewise.
25332         * sysdeps/powerpc/powerpc32/fpu/s_lrint.S: Likewise.
25333         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Likewise.
25334         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: Likewise.
25335         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: Likewise.
25336         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Likewise.
25337         * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Likewise.
25338         * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: Likewise.
25339         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: Likewise.
25340         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: Likewise.
25341         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: Likewise.
25342         * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Likewise.
25343         * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
25344         * sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
25345         * sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
25346         * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Use HISHORT.
25347         * sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S: Likewise.
25349 2013-10-04  Alan Modra  <amodra@gmail.com>
25351         * sysdeps/powerpc/fpu_control.h (_FPU_GETCW): Rewrite using
25352         64-bit int/double union.
25353         (_FPU_SETCW): Likewise.
25354         * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (_GET_DI_FPSCR): Likewise.
25355         (_SET_DI_FPSCR, _GET_SI_FPSCR, _SET_SI_FPSCR): Likewise.
25357 2013-10-04  Alan Modra  <amodra@gmail.com>
25359         * sysdeps/powerpc/fpu/s_llround.c (__llround): Rewrite.
25360         * sysdeps/powerpc/fpu/s_llroundf.c (__llroundf): Rewrite.
25362 2013-10-04  Alan Modra  <amodra@gmail.com>
25364         * sysdeps/powerpc/fpu/s_float_bitwise.h (__float_and_test28): Don't
25365         use vector int constants.
25366         (__float_and_test24, __float_and8, __float_get_exp): Likewise.
25368 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
25370         * sysdeps/powerpc/fpu/fenv_libc.h (fenv_union_t): Replace int
25371         array with long long.
25372         * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrt): Adjust.
25373         * sysdeps/powerpc/fpu/e_sqrtf.c (__slow_ieee754_sqrtf): Adjust.
25374         * sysdeps/powerpc/fpu/fclrexcpt.c (__feclearexcept): Adjust.
25375         * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept): Adjust.
25376         * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Adjust.
25377         * sysdeps/powerpc/fpu/fegetexcept.c (__fegetexcept): Adjust.
25378         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Adjust.
25379         * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Adjust.
25380         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Adjust.
25381         * sysdeps/powerpc/fpu/fgetexcptflg.c (__fegetexceptflag): Adjust.
25382         * sysdeps/powerpc/fpu/fraiseexcpt.c (__feraiseexcept): Adjust.
25383         * sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Adjust.
25384         * sysdeps/powerpc/fpu/ftestexcept.c (fetestexcept): Adjust.
25386 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
25388         * sysdeps/powerpc/bits/mathinline.h (__signbitf): Use builtin.
25389         (__signbit): Likewise.  Correct for little-endian.
25390         (__signbitl): Call __signbit.
25391         (lrint): Correct for little-endian.
25392         (lrintf): Call lrint.
25394 2013-10-04  Alan Modra  <amodra@gmail.com>
25396         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c (mynumber): Replace
25397         union 32-bit int array member with 64-bit int array.
25398         (t515, tm256): Double rather than long double.
25399         (__ieee754_sqrtl): Rewrite using 64-bit arithmetic.
25401 2013-10-04  Alan Modra  <amodra@gmail.com>
25403         * sysdeps/ieee754/ldbl-128ibm/ieee754.h (union ieee854_long_double):
25404         Delete.
25405         (IEEE854_LONG_DOUBLE_BIAS): Delete.
25406         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Don't include ieee854
25407         version of math_ldbl.h.
25409 2013-10-04  Alan Modra  <amodra@gmail.com>
25411         [BZ #15734], [BZ #15735]
25412         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Rewrite
25413         all uses of ieee875 long double macros and unions.  Simplify test
25414         for 0.0L.  Correct |x|<|y| and |x|=|y| test.  Use
25415         ldbl_extract_mantissa value for ix,iy exponents.  Properly
25416         normalize after ldbl_extract_mantissa, and don't add hidden bit
25417         already handled.  Don't treat low word of ieee854 mantissa like
25418         low word of IBM long double and mask off bit when testing for
25419         zero.
25420         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Rewrite
25421         all uses of ieee875 long double macros and unions.  Simplify tests
25422         for 0.0L and inf.  Correct double adjustment of k.  Delete dead code
25423         adjusting ha,hb.  Simplify code setting kld.  Delete two600 and
25424         two1022, instead use their values.  Recognise that tests for large
25425         "a" and small "b" are mutually exclusive.  Rename vars.  Comment.
25426         * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c (__ieee754_remainderl):
25427         Rewrite all uses of ieee875 long double macros and unions.  Simplify
25428         test for 0.0L and nan.  Correct negation.
25429         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c (__erfl): Rewrite all uses of
25430         ieee875 long double macros and unions.  Correct output for large
25431         magnitude x.  Correct absolute value calculation.
25432         (__erfcl): Likewise.
25433         * math/libm-test.inc: Add tests for errors discovered in IBM long
25434         double versions of fmodl, remainderl, erfl and erfcl.
25436 2013-10-04  Alan Modra  <amodra@gmail.com>
25438         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c (__ieee754_atan2l): Rewrite
25439         all uses of ieee854 long double macros and unions.  Simplify tests
25440         for long doubles that are fully specified by the high double.
25441         * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
25442         Likewise.
25443         * sysdeps/ieee754/ldbl-128ibm/e_ilogbl.c (__ieee754_ilogbl): Likewise.
25444         Remove dead code too.
25445         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_jnl): Likewise.
25446         (__ieee754_ynl): Likewise.
25447         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c (__ieee754_log10l): Likewise.
25448         * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Likewise.
25449         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Likewise.
25450         Remove dead code too.
25451         * sysdeps/ieee754/ldbl-128ibm/k_tanl.c (__kernel_tanl): Likewise.
25452         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Likewise.
25453         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Likewise.
25454         * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c (__isinf_nsl): Likewise.
25455         Simplify.
25456         * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c (___isinfl): Likewise.
25457         Simplify.
25458         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Likewise.
25459         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c (__modfl): Likewise.
25460         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Likewise.
25461         Comment on variable precision.
25462         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c (__nexttoward): Likewise.
25463         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c (__nexttowardf):
25464         Likewise.
25465         * sysdeps/ieee754/ldbl-128ibm/s_remquol.c (__remquol): Likewise.
25466         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c (__scalblnl): Likewise.
25467         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c (__scalbnl): Likewise.
25468         * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c (__tanhl): Likewise.
25469         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust tan_towardzero ulps.
25471 2013-10-04  Alan Modra  <amodra@gmail.com>
25473         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_high): Define.
25474         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Rewrite
25475         all uses of ieee854 long double macros and unions.
25476         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Likewise.
25477         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
25478         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c (__ieee754_atanhl): Likewise.
25479         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl): Likewise.
25480         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c (__ieee754_log2l): Likewise.
25481         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
25482         Likewise.
25483         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c (__ieee754_sinhl): Likewise.
25484         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Likewise.
25485         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c (__kernel_sincosl): Likewise.
25486         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
25487         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Likewise.
25488         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c (__atanl): Likewise.
25489         Simplify sign and nan test too.
25490         * sysdeps/ieee754/ldbl-128ibm/s_cosl.c (__cosl): Likewise.
25491         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Likewise.
25492         * sysdeps/ieee754/ldbl-128ibm/s_finitel.c (___finitel): Likewise.
25493         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c (___fpclassifyl):
25494         Likewise.
25495         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c (___isnanl): Likewise.
25496         * sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c (__issignalingl):
25497         Likewise.
25498         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
25499         * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c (___signbitl): Likewise.
25500         * sysdeps/ieee754/ldbl-128ibm/s_sincosl.c (__sincosl): Likewise.
25501         * sysdeps/ieee754/ldbl-128ibm/s_sinl.c (__sinl): Likewise.
25502         * sysdeps/ieee754/ldbl-128ibm/s_tanl.c (__tanl): Likewise.
25503         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c (__logbl): Likewise.
25505 2013-10-04  Alan Modra  <amodra@gmail.com>
25507         * stdio-common/printf_size.c (__printf_size): Don't use
25508         union ieee854_long_double in fpnum union.
25509         * stdio-common/printf_fphex.c (__printf_fphex): Likewise.  Use
25510         signbit macro to retrieve sign from long double.
25511         * stdio-common/printf_fp.c (___printf_fp): Use signbit macro to
25512         retrieve sign from long double.
25513         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Adjust for fpnum change.
25514         * sysdeps/ieee754/ldbl-128/printf_fphex.c: Likewise.
25515         * sysdeps/ieee754/ldbl-96/printf_fphex.c: Likewise.
25516         * sysdeps/x86_64/fpu/printf_fphex.c: Likewise.
25517         * math/test-misc.c (main): Don't use union ieee854_long_double.
25519 2013-10-04  Alan Modra  <amodra@gmail.com>
25521         [BZ #15680]
25522         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c: Comment fix.
25523         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c
25524         (PRINT_FPHEX_LONG_DOUBLE): Tidy code by moving -53 into ediff
25525         calculation.  Remove unnecessary test for denormal exponent.
25526         * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c (__mpn_extract_long_double):
25527         Correct handling of denormals.  Avoid undefined shift behaviour.
25528         Correct normalisation of low mantissa when low double is denormal.
25529         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h
25530         (ldbl_extract_mantissa): Likewise.  Comment.  Use uint64_t* for hi64.
25531         (ldbl_insert_mantissa): Make both hi64 and lo64 parms uint64_t.
25532         Correct normalisation of low mantissa.  Test for overflow of high
25533         mantissa and normalise.
25534         (ldbl_nearbyint): Use more readable constant for two52.
25535         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c
25536         (__mpn_construct_long_double): Fix test for overflow of high
25537         mantissa and correct normalisation.  Avoid undefined shift.
25539 2013-10-04  Alan Modra  <amodra@gmail.com>
25541         * sysdeps/ieee754/ldbl-128ibm/ieee754.h
25542         (union ibm_extended_long_double): Define as an array of ieee754_double.
25543         (IBM_EXTENDED_LONG_DOUBLE_BIAS): Delete.
25544         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Update all references
25545         to ibm_extended_long_double and IBM_EXTENDED_LONG_DOUBLE_BIAS.
25546         * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c: Likewise.
25547         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
25548         * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c: Likewise.
25549         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
25550         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c: Likewise.
25551         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Likewise.
25552         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c: Likewise.
25553         * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
25555 2013-10-03  Joseph Myers  <joseph@codesourcery.com>
25557         * locale/programs/locarchive.c (add_locale): Use constant 4096 for
25558         page size instead of calling getpagesize.
25560         * locale/localeinfo.h (LOCFILE_ALIGN): New macro.
25561         (LOCFILE_ALIGN_MASK): Likewise.
25562         (LOCFILE_ALIGN_UP): Likewise.
25563         (LOCFILE_ALIGNED_P): Likewise.
25564         * locale/programs/ld-collate.c (collate_output): Use the new
25565         macros instead of __alignof__ (int32_t).
25566         * locale/weight.h (findidx): Likewise.
25568 2013-10-03  Ondřej Bílka  <neleai@seznam.cz>
25570         [BZ #431]
25571         * manual/string.texi: Fix strncat and wcsncat.
25573 2013-10-03  Brooks Moses  <bmoses@google.com>
25575         [BZ #15915]
25576         * Makefile (linkobj/libc_pic.a, linkobj/libc.so): Move rules to...
25577         * Makerules: ...here, and adjust associated comments.
25579 2013-10-02  Will Newton  <will.newton@linaro.org>
25581         * malloc/Makefile: Add tst-pvalloc.
25582         * malloc/tst-pvalloc.c: New file.
25584 2013-10-02  Will Newton  <will.newton@linaro.org>
25586         * malloc/tst-valloc.c: Rewrite to use test-skeleton.c and
25587         improve test coverage.
25589 2013-10-02  Will Newton  <will.newton@linaro.org>
25591         * malloc/Makefile: Add tst-posix_memalign.
25592         * malloc/tst-posix_memalign.c: New file.
25594 2013-10-01  Eric Blake  <eblake@redhat.com>
25596         * posix/glob.c (next_brace_sub, prefix_array, collated_compare):
25597         Use __THROWNL rather than __THROW on static functions.
25599 2013-09-30  Petr Machata  <pmachata@redhat.com>
25601         * elf/elf.h (R_AARCH64_ABS16): New macro.
25602         (R_AARCH64_PREL64, R_AARCH64_PREL32): Likewise.
25603         (R_AARCH64_PREL16, R_AARCH64_MOVW_UABS_G0): Likewise.
25604         (R_AARCH64_MOVW_UABS_G0_NC, R_AARCH64_MOVW_UABS_G1): Likewise.
25605         (R_AARCH64_MOVW_UABS_G1_NC, R_AARCH64_MOVW_UABS_G2): Likewise.
25606         (R_AARCH64_MOVW_UABS_G2_NC, R_AARCH64_MOVW_UABS_G3): Likewise.
25607         (R_AARCH64_MOVW_SABS_G0, R_AARCH64_MOVW_SABS_G1): Likewise.
25608         (R_AARCH64_MOVW_SABS_G2, R_AARCH64_LD_PREL_LO19): Likewise.
25609         (R_AARCH64_ADR_PREL_LO21, R_AARCH64_ADR_PREL_PG_HI21): Likewise.
25610         (R_AARCH64_ADR_PREL_PG_HI21_NC, R_AARCH64_ADD_ABS_LO12_NC): Likewise.
25611         (R_AARCH64_LDST8_ABS_LO12_NC, R_AARCH64_LDST16_ABS_LO12_NC): Likewise.
25612         (R_AARCH64_LDST32_ABS_LO12_NC, R_AARCH64_LDST64_ABS_LO12_NC): Likewise.
25613         (R_AARCH64_LDST128_ABS_LO12_NC, R_AARCH64_TSTBR14): Likewise.
25614         (R_AARCH64_CONDBR19, R_AARCH64_JUMP26, R_AARCH64_CALL26): Likewise.
25615         (R_AARCH64_MOVW_PREL_G0, R_AARCH64_MOVW_PREL_G0_NC): Likewise.
25616         (R_AARCH64_MOVW_PREL_G1, R_AARCH64_MOVW_PREL_G1_NC): Likewise.
25617         (R_AARCH64_MOVW_PREL_G2, R_AARCH64_MOVW_PREL_G2_NC): Likewise.
25618         (R_AARCH64_MOVW_PREL_G3, R_AARCH64_MOVW_GOTOFF_G0): Likewise.
25619         (R_AARCH64_MOVW_GOTOFF_G0_NC, R_AARCH64_MOVW_GOTOFF_G1): Likewise.
25620         (R_AARCH64_MOVW_GOTOFF_G1_NC, R_AARCH64_MOVW_GOTOFF_G2): Likewise.
25621         (R_AARCH64_MOVW_GOTOFF_G2_NC, R_AARCH64_MOVW_GOTOFF_G3): Likewise.
25622         (R_AARCH64_GOTREL64, R_AARCH64_GOTREL32): Likewise.
25623         (R_AARCH64_GOT_LD_PREL19, R_AARCH64_LD64_GOTOFF_LO15): Likewise.
25624         (R_AARCH64_ADR_GOT_PAGE, R_AARCH64_LD64_GOT_LO12_NC): Likewise.
25625         (R_AARCH64_LD64_GOTPAGE_LO15, R_AARCH64_TLSGD_ADR_PREL21): Likewise.
25626         (R_AARCH64_TLSGD_ADR_PAGE21, R_AARCH64_TLSGD_ADD_LO12_NC): Likewise.
25627         (R_AARCH64_TLSGD_MOVW_G1, R_AARCH64_TLSGD_MOVW_G0_NC): Likewise.
25628         (R_AARCH64_TLSLD_ADR_PREL21, R_AARCH64_TLSLD_ADR_PAGE21): Likewise.
25629         (R_AARCH64_TLSLD_ADD_LO12_NC, R_AARCH64_TLSLD_MOVW_G1): Likewise.
25630         (R_AARCH64_TLSLD_MOVW_G0_NC, R_AARCH64_TLSLD_LD_PREL19): Likewise.
25631         (R_AARCH64_TLSLD_MOVW_DTPREL_G2): Likewise.
25632         (R_AARCH64_TLSLD_MOVW_DTPREL_G1): Likewise.
25633         (R_AARCH64_TLSLD_MOVW_DTPREL_G1_NC): Likewise.
25634         (R_AARCH64_TLSLD_MOVW_DTPREL_G0): Likewise.
25635         (R_AARCH64_TLSLD_MOVW_DTPREL_G0_NC): Likewise.
25636         (R_AARCH64_TLSLD_ADD_DTPREL_HI12): Likewise.
25637         (R_AARCH64_TLSLD_ADD_DTPREL_LO12): Likewise.
25638         (R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC): Likewise.
25639         (R_AARCH64_TLSLD_LDST8_DTPREL_LO12): Likewise.
25640         (R_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC): Likewise.
25641         (R_AARCH64_TLSLD_LDST16_DTPREL_LO12): Likewise.
25642         (R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC): Likewise.
25643         (R_AARCH64_TLSLD_LDST32_DTPREL_LO12): Likewise.
25644         (R_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC): Likewise.
25645         (R_AARCH64_TLSLD_LDST64_DTPREL_LO12): Likewise.
25646         (R_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC): Likewise.
25647         (R_AARCH64_TLSLD_LDST128_DTPREL_LO12): Likewise.
25648         (R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC): Likewise.
25649         (R_AARCH64_TLSIE_MOVW_GOTTPREL_G1): Likewise.
25650         (R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC): Likewise.
25651         (R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21): Likewise.
25652         (R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC): Likewise.
25653         (R_AARCH64_TLSIE_LD_GOTTPREL_PREL19): Likewise.
25654         (R_AARCH64_TLSLE_MOVW_TPREL_G2): Likewise.
25655         (R_AARCH64_TLSLE_MOVW_TPREL_G1): Likewise.
25656         (R_AARCH64_TLSLE_MOVW_TPREL_G1_NC): Likewise.
25657         (R_AARCH64_TLSLE_MOVW_TPREL_G0): Likewise.
25658         (R_AARCH64_TLSLE_MOVW_TPREL_G0_NC): Likewise.
25659         (R_AARCH64_TLSLE_ADD_TPREL_HI12): Likewise.
25660         (R_AARCH64_TLSLE_ADD_TPREL_LO12): Likewise.
25661         (R_AARCH64_TLSLE_ADD_TPREL_LO12_NC): Likewise.
25662         (R_AARCH64_TLSLE_LDST8_TPREL_LO12): Likewise.
25663         (R_AARCH64_TLSLE_LDST8_TPREL_LO12_NC): Likewise.
25664         (R_AARCH64_TLSLE_LDST16_TPREL_LO12): Likewise.
25665         (R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC): Likewise.
25666         (R_AARCH64_TLSLE_LDST32_TPREL_LO12): Likewise.
25667         (R_AARCH64_TLSLE_LDST32_TPREL_LO12_NC): Likewise.
25668         (R_AARCH64_TLSLE_LDST64_TPREL_LO12): Likewise.
25669         (R_AARCH64_TLSLE_LDST64_TPREL_LO12_NC): Likewise.
25670         (R_AARCH64_TLSLE_LDST128_TPREL_LO12): Likewise.
25671         (R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC): Likewise.
25672         (R_AARCH64_TLSDESC_LD_PREL19): Likewise.
25673         (R_AARCH64_TLSDESC_ADR_PREL21): Likewise.
25674         (R_AARCH64_TLSDESC_ADR_PAGE21): Likewise.
25675         (R_AARCH64_TLSDESC_LD64_LO12): Likewise.
25676         (R_AARCH64_TLSDESC_ADD_LO12): Likewise.
25677         (R_AARCH64_TLSDESC_OFF_G1): Likewise.
25678         (R_AARCH64_TLSDESC_OFF_G0_NC): Likewise.
25679         (R_AARCH64_TLSDESC_LDR): Likewise.
25680         (R_AARCH64_TLSDESC_ADD): Likewise.
25681         (R_AARCH64_TLSDESC_CALL): Likewise.
25683 2013-09-30  Andreas Schwab  <schwab@suse.de>
25685         [BZ #15048]
25686         * nscd/aicache.c (addhstaiX): Properly use the cache variable for
25687         the nss database lookup.
25688         * nscd/initgrcache.c (addinitgroupsX): Likewise.
25689         * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
25691 2013-09-28  Mike Frysinger  <vapier@gentoo.org>
25693         * sysdeps/unix/sysv/linux/tst-fanotify.c (do_test): Fix style.
25695 2013-09-28  P. J. McDermott  <pj@pehjota.net>
25697         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Don't use
25698         ${Bash-specific parameter/pattern/string} parameter expansion.
25699         * sysdeps/unix/make-syscalls.sh: Likewise.
25701 2013-09-27  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
25703         * sysdeps/sh/stackguard-macros.h: New file.
25705 2013-09-26  Ondřej Bílka  <neleai@seznam.cz>
25707         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Update.
25708         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Remove strrchr ifunc.
25709         * sysdeps/x86_64/multiarch/strend-sse4.S Remove.
25710         * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S Likewise.
25711         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
25712         * sysdeps/x86_64/strrchr.S (strrchr): Use optimized implementation.
25714 2013-09-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
25716         * sysdeps/powerpc/powerpc64/stackguard-macros.h (POINTER_CHK_GUARD:
25717         Fix thread ID register.
25719 2013-09-25  Joseph Myers  <joseph@codesourcery.com>
25721         * conform/data/sched.h-data [XPG3 || XPG4]: Disable whole file.
25722         [POSIX || UNIX98]: Require rather than permitting all symbols from
25723         <time.h>.
25724         [POSIX || UNIX98] (sched_ss_low_priority): Do not specify optional
25725         element of struct sched_param.
25726         [POSIX || UNIX98] (sched_ss_repl_period): Likewise.
25727         [POSIX || UNIX98] (sched_ss_init_budget): Likewise.
25728         [POSIX || UNIX98] (sched_ss_max_repl): Likewise.
25729         [POSIX || UNIX98] (SCHED_SPORADIC): Do not specify optional
25730         constant.
25732 2013-09-24  Olivier Langlois  <olivier@olivierlanglois.net>
25734         * stdio-common/tst-long-dbl-fphex.c (do_test): Fix swprintf length
25735         argument calculation.
25737 2013-09-24  Joseph Myers  <joseph@codesourcery.com>
25739         * conform/data/pthread.h-data [POSIX] (PTHREAD_MUTEX_INITIALIZER):
25740         Expect macro.
25741         [POSIX] (pthread_attr_t): Do not require type.
25742         [POSIX] (pthread_cond_t): Likewise.
25743         [POSIX] (pthread_condattr_t): Likewise.
25744         [POSIX] (pthread_key_t): Likewise.
25745         [POSIX] (pthread_mutex_t): Likewise.
25746         [POSIX] (pthread_mutexattr_t): Likewise.
25747         [POSIX] (pthread_once_t): Likewise.
25748         [POSIX] (pthread_t): Likewise.
25749         [POSIX-based standards] (pthread_atfork): Expect function.
25751 2013-09-24  Joseph Myers  <joseph@codesourcery.com>
25752             Richard Sandiford  <richard@codesourcery.com>
25754         * locale/programs/locfile.h: Include <byteswap.h> and <stdbool.h>.
25755         (swap_endianness_p): New extern variable.
25756         (set_big_endian): New inline function.
25757         (maybe_swap_uint32): Likewise.
25758         (maybe_swap_uint32_array): Likewise.
25759         (maybe_swap_uint32_obstack): Likewise.
25760         * locale/programs/locfile.c: Include <stdbool.h>.
25761         (swap_endianness_p): New variable.
25762         (add_locale_uint32): Call maybe_swap_uint32.
25763         (add_locale_uint32_array): Call maybe_swap_uint32_obstack.
25764         (write_locale_data): Call maybe_swap_uint32_array.
25765         * locale/programs/ld-collate.c (obstack_int32_grow): Call
25766         maybe_swap_uint32.
25767         (obstack_int32_grow_fast): Likewise.
25768         (output_weightwc): Call maybe_swap_uint32_obstack.
25769         (collate_output): Likewise.
25770         * locale/programs/localedef.c (OPT_LITTLE_ENDIAN): New macro.
25771         (OPT_LITTLE_ENDIAN): Likewise.
25772         (options): Add --little-endian and --big-endian options.
25773         (parse_opt): Handle OPT_LITTLE_ENDIAN and OPT_BIG_ENDIAN.
25774         * locale/programs/locarchive.c: Include "locfile.h".
25775         (GET): New macro.
25776         (SET): Likewise.
25777         (INC): Likewise.
25778         (create_archive): Use the new macros to access fields of
25779         structures directly mapped from or written to locale archives.
25780         (oldlocrecentcmp): Likewise.
25781         (enlarge_archive): Likewise.
25782         (insert_name): Likewise.
25783         (add_alias): Likewise.
25784         (add_locale): Likewise.
25785         (delete_locales_from_archive): Likewise.
25786         (show_archive_content): Likewise.
25787         (add_locale_to_archive): Likewise.  Use maybe_swap_uint32 on
25788         locale data.
25790 2013-09-24  Roland McGrath  <roland@hack.frob.com>
25792         * manual/freemanuals.texi: Updated from (newly) canonical copy at
25793         http://www.gnu.org/doc/freemanuals.texi.
25794         * manual/libc.texinfo (Free Manuals): Put the @appendix line here.
25796 2013-09-24  Will Newton  <will.newton@linaro.org>
25798         * sysdeps/mach/hurd/i386/tls.h (TLS_INIT_TP_EXPENSIVE): Remove
25799         macro.
25801 2013-09-23  Joseph Myers  <joseph@codesourcery.com>
25803         * locale/hashval.h (compute_hashval): Interpret bytes of key as
25804         unsigned char.
25806 2013-09-23  Maciej W. Rozycki  <macro@codesourcery.com>
25808         * manual/threads.texi (POSIX Threads): Fix a typo.
25810 2013-09-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
25812         [BZ #14547]
25813         * string/tst-strcoll-overflow.c: New test case.
25814         * string/Makefile (xtests): Add tst-strcoll-overflow.
25815         * string/strcoll_l.c (STRCOLL): Skip allocating memory for
25816         cache if string sizes may cause integer overflow.
25818         [BZ #14547]
25819         * string/strcoll_l.c (coll_seq): New members rule, idx,
25820         save_idx and back_us.
25821         (get_next_seq_nocache): New function.
25822         (do_compare_nocache): New function.
25823         (STRCOLL): Use get_next_seq_nocache and do_compare_nocache
25824         when malloc fails.
25826 2013-09-23  Carlos O'Donell  <carlos@redhat.com>
25828         [BZ #15754]
25829         * sysdeps/generic/stackguard-macros.h: If PTRGUARD_LOCAL use
25830         __pointer_chk_guard_local, otherwise __pointer_chk_guard.
25831         * elf/Makefile: Define CFLAGS-tst-ptrguard1-static.c.
25833         [BZ #15754]
25834         * elf/Makefile (tests): Add tst-ptrguard1.
25835         (tests-static): Add tst-ptrguard1-static.
25836         (tst-ptrguard1-ARGS): Define.
25837         (tst-ptrguard1-static-ARGS): Define.
25838         * elf/tst-ptrguard1.c: New file.
25839         * elf/tst-ptrguard1-static.c: New file.
25840         * sysdeps/x86_64/stackguard-macros.h: Define POINTER_CHK_GUARD.
25841         * sysdeps/i386/stackguard-macros.h: Likewise.
25842         * sysdeps/powerpc/powerpc32/stackguard-macros.h: Likewise.
25843         * sysdeps/powerpc/powerpc64/stackguard-macros.h: Likewise.
25844         * sysdeps/s390/s390-32/stackguard-macros.h: Likewise.
25845         * sysdeps/s390/s390-64/stackguard-macros.h: Likewise.
25846         * sysdeps/sparc/sparc32/stackguard-macros.h: Likewise.
25847         * sysdeps/sparc/sparc64/stackguard-macros.h: Likewise.
25849 2013-09-23  Hector Marco  <hecmargi@upv.es>
25850             Ismael Ripoll  <iripoll@disca.upv.es>
25851             Carlos O'Donell  <carlos@redhat.com>
25853         [BZ #15754]
25854         * sysdeps/generic/stackguard-macros.h: Define
25855         __pointer_chk_guard_local and POINTER_CHK_GUARD.
25856         * csu/libc-start.c [!SHARED && !THREAD_SET_POINTER_GUARD]:
25857         Define __pointer_chk_guard_local.
25858         (LIBC_START_MAIN) [!SHARED]: Call _dl_setup_pointer_guard.
25859         Use THREAD_SET_POINTER_GUARD or set __pointer_chk_guard_local.
25861 2013-09-15  Vinitha Vijayan <vinitha.vijayann@gmail.com>
25863         [BZ #15859]
25864         * elf/dl-deps.c (_dl_map_object_deps): Remove duplicate declaration.
25866 2013-09-20  Andreas Schwab  <schwab@linux-m68k.org>
25868         * include/string.h (__ffs): Declare as hidden.
25869         * string/ffs.c (__ffs): Define as hidden.
25870         * sysdeps/i386/ffs.c (__ffs): Likewise.
25871         * sysdeps/i386/i686/ffs.c (__ffs): Likewise.
25872         * sysdeps/powerpc/ffs.c (__ffs): Likewise.
25873         * sysdeps/s390/ffs.c (__ffs): Likewise.
25874         * sysdeps/x86_64/ffs.c (__ffs): Likewise.
25876 2013-09-20  Alexandre Oliva <aoliva@redhat.com>
25878         * NEWS: Mention malloc probes.
25880         * malloc/arena.c (new_heap): New memory_heap_new probe.
25881         (grow_heap): New memory_heap_more probe.
25882         (shrink_heap): New memory_heap_less probe.
25883         (heap_trim): New memory_heap_free probe.
25884         * malloc/malloc.c (sysmalloc): New memory_sbrk_more probe.
25885         (systrim): New memory_sbrk_less probe.
25886         * manual/probes.texi: Document them.
25888         * malloc/arena.c (arena_get_retry): Add memory_arena_retry probe.
25889         * manual/probes.texi: Document it.
25891         * malloc/malloc.c (__libc_malloc): Add memory_malloc_retry probe.
25892         (__libc_realloc): Add memory_realloc_retry probe.
25893         (__libc_memalign): Add memory_memalign_retry probe.
25894         (__libc_valloc): Add memory_valloc_retry probe.
25895         (__libc_pvalloc): Add memory_pvalloc_retry probe.
25896         (__libc_calloc): Add memory_calloc_retry probe.
25897         * manual/probes.texi: Document them.
25899         * malloc/arena.c (get_free_list): Add probe
25900         memory_arena_reuse_free_list.
25901         (reused_arena) [PER_THREAD]: Add probes memory_arena_reuse_wait
25902         and memory_arena_reuse.
25903         (arena_get2) [!PER_THREAD]: Likewise.
25904         * malloc/malloc.c (__libc_realloc) [!PER_THREAD]: Add probe
25905         memory_arena_reuse_realloc.
25906         * manual/probes.texi: Document them.
25908         * malloc/malloc.c (__libc_free): Add
25909         memory_mallopt_free_dyn_thresholds probe.
25910         (__libc_mallopt): Add multiple memory_mallopt probes.
25911         * manual/probes.texi: Document them.
25913         * malloc/malloc.c: Include stap-probe.h.
25914         (__libc_mallopt): Add memory_mallopt probe.
25915         * malloc/arena.c (_int_new_arena): Add memory_arena_new probe.
25916         * manual/probes.texi: New.
25917         * manual/Makefile (chapters): Add probes.
25918         * manual/threads.texi: Set next node.
25920 2013-09-19  Wei-Lun Chao  <bluebat@member.fsf.org>
25922         [BZ #15963, #13985]
25923         * locale/iso-639.def: Add Chiga (cgg) and Chinese (gan, hak,
25924         czh, cjy, lzh, cmn, mnp, cdo, czo, cpx, wuu, hsn, yue).
25925         Add `Chinese' to `nan' entry name.
25927 2013-09-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
25929         * sysdeps/ieee754/dbl-64/s_sin.c (POLYNOMIAL2): New macro.
25930         (POLYNOMIAL): Likewise.
25931         (TAYLOR_SINCOS): Likewise.
25932         (TAYLOR_SLOW): Likewise.
25933         (__sin): Use TAYLOR_SINCOS.
25934         (__cos): Likewise.
25935         (slow): Use TAYLOR_SLOW.
25936         (sloww): Likewise.
25937         (bsloww): Likewise.
25938         (csloww): Likewise.
25940 2013-09-19  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
25942         * stdlib/strtod_l.c: Fix buffer overrun.
25944 2013-09-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
25946         * benchtests/Makefile (bench): Add sincos.
25947         * benchtests/bench-sincos.c: New file.
25949         * math/libm-test.inc (cos_test_data): New test inputs.
25950         (sin_test_data): Likewise.
25952         * sysdeps/ieee754/dbl-64/s_sin.c (SINCOS_TABLE_LOOKUP): New
25953         macro.
25954         (__sin): Use it.
25955         (__cos): Likewise.
25956         (slow1): Likewise.
25957         (slow2): Likewise.
25958         (sloww1): Likewise.
25959         (sloww2): Likewise.
25960         (bsloww1): Likewise.
25961         (bsloww2): Likewise.
25962         (cslow2): Likewise.
25963         (csloww1): Likewise.
25964         (csloww2): Likewise.
25966         * sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute): New
25967         function.
25968         (__sin): Use it.
25969         (__cos): Likewise.
25971         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Remove redundant
25972         gotos.
25973         (__cos): Likewise.
25975 2013-09-18  Maciej W. Rozycki  <macro@codesourcery.com>
25977         * config.h.in (HAVE_MIPS_NAN2008): New macro.
25978         * elf/elf.h (EF_MIPS_NAN2008): Likewise.
25979         * sysdeps/generic/ldconfig.h (FLAG_MIPS_LIB32_NAN2008): Likewise.
25980         (FLAG_MIPS64_LIBN32_NAN2008): Likewise.
25981         (FLAG_MIPS64_LIBN64_NAN2008): Likewise.
25982         * elf/cache.c (print_entry): Handle the new cache flags.
25984 2013-09-18  Joseph Myers  <joseph@codesourcery.com>
25985             Aldy Hernandez  <aldyh@redhat.com>
25987         * sysdeps/powerpc/fpu_control.h [_SOFT_FLOAT || __NO_FPRS__]:
25988         Change condition to [_SOFT_FLOAT].
25989         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_NEAREST): New macro.
25990         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_DOWN): Likewise.
25991         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_UP): Likewise.
25992         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_ZERO): Likewise.
25993         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_ZM): Likewise.
25994         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_OM): Likewise.
25995         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_UM): Likewise.
25996         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_XM): Likewise.
25997         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_IM): Likewise.
25998         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RESERVED): Likewise.
25999         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_DEFAULT): Likewise.
26000         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_IEEE): Likewise.
26001         [__NO_FPRS__ && !_SOFT_FLOAT] (fpu_control_t): New typedef.
26002         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_GETCW): New macro.
26003         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_SETCW): Likewise.
26004         [__NO_FPRS__ && !_SOFT_FLOAT] (__fpu_control): New variable
26005         declaration.
26007 2013-09-18  Joseph Myers  <joseph@codesourcery.com>
26009         * sysdeps/powerpc/powerpc32/__longjmp-common.S (LOAD_GP): Define
26010         macro conditional on [__SPE__ || (__NO_FPRS__ && !_SOFT_FLOAT)].
26011         (__longjmp): Use LOAD_GP to load saved GPRs.
26012         * sysdeps/powerpc/powerpc32/setjmp-common.S (SAVE_GP): Define
26013         macro conditional on [__SPE__ || (__NO_FPRS__ && !_SOFT_FLOAT)].
26014         (__sigsetjmp): Use SAVE_GP to save GPRs.
26016         * sysdeps/powerpc/powerpc32/Makefile [$(with-fp) = no] (+cflags):
26017         Do not append -msoft-float.
26018         [$(with-fp) = no] (sysdep-LDFLAGS): Likewise.
26020 2013-09-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
26022         * sysdeps/ieee754/dbl-64/sincos32.c: Fix code formatting.
26024 2013-09-17  Joseph Myers  <joseph@codesourcery.com>
26026         [BZ #15966]
26027         * sysdeps/powerpc/fpu_control.h [!_SOFT_FLOAT && !__NO_FPRS__]
26028         (_FPU_GETCW): Use initial "__" on variable and field names but not
26029         on macro parameter name.
26030         [!_SOFT_FLOAT && !__NO_FPRS__] (_FPU_SETCW): Likewise.  Use
26031         parentheses around reference to macro parameter.
26033 2013-09-13  Richard Sandiford  <richard@codesourcery.com>
26035         * locale/programs/ld-ctype.c (find_idx): Use uint32_t in
26036         prototype.
26037         (ctype_startup): Use uint32_t in cast and sizeof for
26038         ctype->charnames.
26040 2013-09-11  Jia Liu  <proljc@gmail.com>
26042         * sunrpc/rpc/types.h [__APPLE_CC__]: Define __u_char_defined and
26043         __daddr_t_defined.
26044         [__FreeBSD__]: Likewise.
26046 2013-09-11  Ondřej Bílka  <neleai@seznam.cz>
26048         * sysdeps/x86_64/multiarch/ifunc-impl-list.c
26049         (__libc_ifunc_impl_list): Remove: __strchr_sse42.
26050         * sysdeps/x86_64/multiarch/strchr.S (__strchr_sse42): Remove.
26051         (strchr): Remove __strchr_sse42 ifunc selection.
26052         * sysdeps/x86_64/strchr.S (strchr): Use optimized implementation.
26053         * sysdeps/x86_64/strchrnul.S: Include sysdeps/x86_64/strchr.S.
26055 2013-09-11  Will Newton  <will.newton@linaro.org>
26057         * benchtests/bench-timing.h (TIMING_INIT): Rename ITERS
26058         parameter to RES. Remove hardcoded 1000 value.
26059         * benchtests/bench-skeleton.c (main): Pass RES parameter
26060         to TIMING_INIT and multiply result by 1000.
26062 2013-09-10  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26064         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
26066 2013-09-11  Andreas Schwab  <schwab@suse.de>
26068         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (__O_TMPFILE): Define
26069         if not defined.
26070         (O_TMPFILE) [__USE_GNU]: Define.
26071         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (__O_TMPFILE):
26072         Define.
26074 2013-09-11  Will Newton  <will.newton@linaro.org>
26076         [BZ #15857]
26077         * malloc/malloc.c (__libc_memalign): Check the value of bytes
26078         does not overflow.
26080 2013-09-11  Will Newton  <will.newton@linaro.org>
26082         [BZ #15856]
26083         * malloc/malloc.c (__libc_valloc): Check the value of bytes
26084         does not overflow.
26086 2013-09-11  Will Newton  <will.newton@linaro.org>
26088         [BZ #15855]
26089         * malloc/malloc.c (__libc_pvalloc): Check the value of bytes
26090         does not overflow.
26092 2013-09-10  Ondřej Bílka  <neleai@seznam.cz>
26094         * sysdeps/ieee754/dbl-64/e_j0.c: Remove DO_NOT_USE_THIS conditionals.
26095         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
26096         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
26097         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
26098         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
26100 2013-09-10  Allan McRae  <allan@archlinux.org>
26102         [BZ #15748]
26103         * manual/arith.texi (Parsing of Floats): Clarify
26104         cross-reference.
26106         [BZ #15849]
26107         * manual/install.texi (Running make install): Mention
26108         --enable-pt-chown.
26109         * INSTALL: Regenerated.
26111 2013-09-09  Maciej W. Rozycki  <macro@codesourcery.com>
26113         * csu/init-first.c (_init): Remove the !SHARED condition around
26114         FPU control word initialization.
26115         * elf/dl-support.c (_dl_fpu_control): New variable.
26116         (_dl_aux_init) <AT_FPUCW>: Initialize it.
26117         * math/test-fpucw.c [!FPU_CONTROL] (FPU_CONTROL): New macro.
26118         (main): Replace _FPU_DEFAULT with FPU_CONTROL throughout.
26119         * math/test-fpucw-static.c: New file.
26120         * math/test-fpucw-ieee.c: New file.
26121         * math/test-fpucw-ieee-static.c: New file.
26122         * math/Makefile (tests): Add `test-fpucw-ieee' and
26123         `$(tests-static)'.
26124         (tests-static): New variable.
26125         [($(build-shared),yes)] ($(addprefix $(objpfx),$(tests))): Move
26126         dependency to...
26127         [($(build-shared),yes)]
26128         ($(addprefix $(objpfx),$(filter-out $(tests-static),$(tests)))):
26129         ... this.
26130         [($(build-shared),yes)] ($(addprefix $(objpfx),$(tests-static))):
26131         New dependency.
26133 2013-09-09  Allan McRae  <allan@archlinux.org>
26135         [BZ #15939]
26136         * manual/string.texi (Collation Functions): Fix typo in
26137         strcoll example.
26138         Reported by Suren Karapetyan <me@suren.karapetyan.name>.
26140         [BZ #15893]
26141         * stdlib/isomac.c (get_null_defines): Fix memory leak.
26143         [BZ #15892]
26144         * libio/memstream.c (open_memstream): Fix memory leak.
26145         * libio/wmemstream.c (open_wmemstream): Likewise.
26147         [BZ #15895]
26148         * nscd/netgroupcache.c: Fix nesting of ifdefs.
26150 2013-09-09  Will Newton  <will.newton@linaro.org>
26152         * malloc/Makefile: Add tst-realloc to tests.
26153         * malloc/tst-realloc.c: New file.
26155 2013-09-09  Allan McRae  <allan@archlinux.org>
26157         [BZ #15844]
26158         * COPYING: Update from GNU website to fix FSF address.
26159         * COPYING.LIB: Likewise.
26161 2013-09-06  David S. Miller  <davem@davemloft.net>
26163         * po/zh_TW.po: Update Chinese (traditional) translation from
26164         translation project.
26166 2013-09-06  Richard Sandiford  <richard@codesourcery.com>
26167             Joseph Myers  <joseph@codesourcery.com>
26169         * locale/programs/locfile.c: Include <assert.h>, <wchar.h> and
26170         "localeinfo.h".
26171         (obstack_chunk_alloc): New macro.
26172         (obstack_chunk_free): Likewise.
26173         (record_offset): New function.
26174         (init_locale_data): Likewise.
26175         (align_locale_data): Likewise.
26176         (add_locale_empty): Likewise.
26177         (add_locale_raw_data): Likewise.
26178         (add_locale_raw_obstack): Likewise.
26179         (add_locale_string): Likewise.
26180         (add_locale_wstring): Likewise.
26181         (add_locale_uint32): Likewise.
26182         (add_locale_uint32_array): Likewise.
26183         (add_locale_char): Likewise.
26184         (start_locale_structure): Likewise.
26185         (end_locale_structure): Likewise.
26186         (start_locale_prelude): Likewise.
26187         (end_locale_prelude): Likewise.
26188         (write_locale_data): Take locale_file structure rather than an
26189         iovec.
26190         * locale/programs/locfile.h: Include "obstack.h".
26191         (struct locale_file): Change to store locale file contents instead
26192         of header.
26193         (init_locale_data): New prototype.
26194         (align_locale_data): Likewise.
26195         (add_locale_empty): Likewise.
26196         (add_locale_raw_data): Likewise.
26197         (add_locale_raw_obstack): Likewise.
26198         (add_locale_string): Likewise.
26199         (add_locale_wstring): Likewise.
26200         (add_locale_uint32): Likewise.
26201         (add_locale_uint32_array): Likewise.
26202         (add_locale_char): Likewise.
26203         (start_locale_structure): Likewise.
26204         (end_locale_structure): Likewise.
26205         (start_locale_prelude): Likewise.
26206         (end_locale_prelude): Likewise.
26207         (write_locale_data): Update prototype.
26208         * locale/programs/3level.h (struct TABLE): Remove result field.
26209         (CONCAT(TABLE,_finalize)): Change to CONCAT(add_locale_,TABLE).
26210         Use new locale_file interface.
26211         [!NO_FINALIZE]: Change condition to [!NO_ADD_LOCALE].
26212         (NO_FINALIZE): Change #undef to #undef of NO_ADD_LOCALE.
26213         * locale/programs/ld-address.c (address_output): Use new
26214         locale_file interface.
26215         * locale/programs/ld-collate.c (NO_FINALIZE): Change to
26216         NO_ADD_LOCALE.
26217         (collate_finish): Don't call collseq_table_finalize.
26218         (collate_output): Use new locale_file interface.
26219         * locale/programs/ld-ctype.c: Move includes of "3level.h" earlier
26220         in file.
26221         (NO_FINALIZE): Change to NO_ADD_LOCALE.
26222         (TABLE): Move defines earlier in file.
26223         (ELEMENT): Likewise.
26224         (DEFAULT): Likewise.
26225         (wctrans_table_add): Move macro and inline function earlier in
26226         file.
26227         (struct wctype_table): Move type earlier in file.
26228         (add_locale_wctype_table): New static prototype.
26229         (struct locale_ctype_t): Use logical types instead of struct iovec
26230         pointers for members.
26231         (ctype_output): Use new locale_file interface.
26232         (wctype_table_finalize): Change to add_locale_wctype_table.  Use
26233         new locale_file interface.
26234         (allocate_arrays): Update for use of new locale_file interface.
26235         * locale/programs/ld-identification.c (identification_output): Use
26236         new locale_file interface.
26237         * locale/programs/ld-measurement.c (measurement_output): Likewise.
26238         * locale/programs/ld-messages.c (messages_output): Likewise.
26239         * locale/programs/ld-monetary.c (monetary_output): Likewise.
26240         * locale/programs/ld-name.c (name_output): Likewise.
26241         * locale/programs/ld-numeric.c (numeric_output): Likewise.
26242         * locale/programs/ld-paper.c (paper_output): Likewise.
26243         * locale/programs/ld-telephone.c (telephone_output): Likewise.
26244         * locale/programs/ld-time.c (time_output): Likewise.
26246 2013-09-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26248         * benchtests/Makefile: Add memrchr benchmark.
26249         * benchtests/bench-memchr.c (USE_AS_MEMRCHR): Add define to use
26250         benchmark as memrchr.
26251         * benchtests/bench-memrchr-ifunc.c: New file.
26252         * benchtests/bench-memrchr.c: New file.
26254 2013-09-06   Will Newton  <will.newton@linaro.org>
26256         * benchtests/Makefile (string-bench): Add memcpy.
26258 2013-09-05  Carlos O'Donell  <carlos@redhat.com>
26259             Cong Wang  <amwang@redhat.com>
26261         [BZ #15850]
26262         * sysdeps/unix/sysv/linux/bits/in.h
26263         [_UAPI_LINUX_IN6_H]: Define __USE_KERNEL_IPV6_DEFS.
26264         * inet/netinet/in.h: Move in_addr definition and bits/in.h inclusion
26265         before __USE_KERNEL_IPV6_DEFS uses.
26266         * inet/netinet/in.h [!__USE_KERNEL_IPV6_DEFS]: Define IPPROTO_MH, and
26267         IPPROTO_BEETPH.
26268         [__USE_KERNEL_IPV6_DEFS]: Don't define any of IPPROTO_*, in6_addr,
26269         sockaddr_in6, or ipv6_mreq.
26271 2013-09-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26273         * sysdeps/powerpc/powerpc32/power7/memrchr.S (__memrchr): Fix invalid
26274         memory access for final bytes in some large inputs.
26275         * sysdeps/powerpc/powerpc64/power7/memrchr.S (__memrchr): Likewise.
26277 2013-09-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26279         * string/test-memrchr.c: New file.
26280         * string/test-memrchr-ifunc.c: New file.
26281         * string/Makefile: Add new memrchr testcase.
26283 2013-09-05  Mike Frysinger  <vapier@gentoo.org>
26285         * sysdeps/unix/sysv/linux/tst-fanotify.c (do_test): Skip test when
26286         fanotify_init returns EPERM.
26288 2013-09-04  Joseph Myers  <joseph@codesourcery.com>
26290         * conform/conformtest.pl (newtoken): Treat tokens not allowed as
26291         errors.
26292         (top level): Treat second token from macro or constant entries for
26293         allowed headers as allowed.
26294         * include/complex.h: Condition internal declarations on
26295         [!_ISOMAC].
26296         * include/fenv.h: Condition include of <stdbool.h> and internal
26297         declarations on [!_ISOMAC].
26299 2013-09-04  Chris Leonard  <cjl@sugarlabs,.org>
26301         [BZ #15923]
26302         * locale/iso-4217.def: Update iso-1427.def and related occurrences.
26304 2013-09-04  Joseph Myers  <joseph@codesourcery.com>
26306         * configure.in (--enable-versioning): Remove configure option.
26307         (libc_cv_asm_symver_directive): Remove configure test.
26308         (libc_cv_ld_version_script_option): Likewise.
26309         (VERSIONING): Remove variable and AC_SUBST.
26310         (DO_VERSIONING): Remove AC_DEFINE.
26311         * configure: Regenerated.
26312         * config.h.in (DO_VERSIONING): Remove macro.
26313         * Makerules [$(versioning) = yes]: Change conditionals to
26314         [$(build-shared) = yes].
26315         * config.make.in (versioning): Remove variable.
26316         * dlfcn/Makefile [$(versioning) = yes]: Change conditionals to
26317         [$(build-shared) = yes].
26318         * dlfcn/modstatic2.c (test) [DO_VERSIONING]: Remove conditional.
26319         * dlfcn/tststatic2.c (main) [DO_VERSIONING]: Likewise.
26320         * elf/Makefile [$(versioning) = yes]: Change conditionals to
26321         [$(build-shared) = yes].
26322         * extra-lib.mk [$(versioning) = yes]: Likewise.
26323         * hurd/Makefile [$(versioning) = yes]: Likewise.
26324         * hurd/geteuids.c [SHARED && DO_VERSIONING]: Change conditional to
26325         [SHARED].
26326         * include/libc-symbols.h [DO_VERSIONING]: Change conditional to
26327         [SHARED].
26328         [SHARED && DO_VERSIONING && !NO_HIDDEN]: Change conditional to
26329         [SHARED && !NO_HIDDEN].
26330         * include/shlib-compat.h [DO_VERSIONING]: Change conditional to
26331         [SHARED].
26332         [SHARED && DO_VERSIONING]: Likewise..
26333         * libio/Makefile [$(versioning) = yes]: Change conditionals to
26334         [$(build-shared) = yes].
26335         * manual/install.texi (--disable-versioning): Remove
26336         documentation.
26337         * INSTALL: Regenerated.
26338         * resolv/res_libc.c [SHARED && DO_VERSIONING]: Change conditional
26339         to [SHARED].
26340         * sunrpc/Makefile [$(versioning) = yes]: Change conditional to
26341         [$(build-shared) = yes].
26342         * sysdeps/gnu/Makefile [$(versioning) = yes]: Likewise.
26343         * sysdeps/i386/i686/multiarch/strstr-c.c
26344         [SHARED && DO_VERSIONING && !NO_HIDDEN]: Change conditional to
26345         [SHARED && !NO_HIDDEN].
26346         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h
26347         [SHARED && DO_VERSIONING]: Change conditional to [SHARED].
26348         * sysdeps/powerpc/powerpc32/dl-machine.c
26349         [SHARED && !(DO_VERSIONING - 0)]: Remove conditional error.
26350         * sysdeps/powerpc/powerpc32/sysdep.h
26351         [SHARED && DO_VERSIONING && PIC && !NO_HIDDEN]: Change conditional
26352         to [SHARED && PIC && !NO_HIDDEN].
26353         * sysdeps/wordsize-32/divdi3.c [SHARED && DO_VERSIONING]: Change
26354         conditional to [SHARED].
26356 2013-09-04   Will Newton  <will.newton@linaro.org>
26358         * benchtests/bench-timing.h (TIMING_PRINT_MEAN): New macro.
26359         * benchtests/bench-string.h: Include bench-timing.h instead
26360         of including hp-timing.h directly. (INNER_LOOP_ITERS): New
26361         define. (HP_TIMING_BEST): Delete macro. (test_init): Remove
26362         call to HP_TIMING_DIFF_INIT.
26363         * benchtests/bench-memccpy.c: Use bench-timing.h macros
26364         instead of hp-timing.h macros.
26365         * benchtests/bench-memchr.c: Likewise.
26366         * benchtests/bench-memcmp.c: Likewise.
26367         * benchtests/bench-memcpy.c: Likewise.
26368         * benchtests/bench-memmem.c: Likewise.
26369         * benchtests/bench-memmove.c: Likewise.
26370         * benchtests/bench-memset.c: Likewise.
26371         * benchtests/bench-rawmemchr.c: Likewise.
26372         * benchtests/bench-strcasecmp.c: Likewise.
26373         * benchtests/bench-strcasestr.c: Likewise.
26374         * benchtests/bench-strcat.c: Likewise.
26375         * benchtests/bench-strchr.c: Likewise.
26376         * benchtests/bench-strcmp.c: Likewise.
26377         * benchtests/bench-strcpy.c: Likewise.
26378         * benchtests/bench-strcpy_chk.c: Likewise.
26379         * benchtests/bench-strlen.c: Likewise.
26380         * benchtests/bench-strncasecmp.c: Likewise.
26381         * benchtests/bench-strncat.c: Likewise.
26382         * benchtests/bench-strncmp.c: Likewise.
26383         * benchtests/bench-strncpy.c: Likewise.
26384         * benchtests/bench-strnlen.c: Likewise.
26385         * benchtests/bench-strpbrk.c: Likewise.
26386         * benchtests/bench-strrchr.c: Likewise.
26387         * benchtests/bench-strspn.c: Likewise.
26388         * benchtests/bench-strstr.c: Likewise.
26390 2013-09-04  Will Newton  <will.newton@linaro.org>
26392         * benchtests/Makefile: Use LDLIBS instead of LDFLAGS.
26394 2013-09-03  Joseph Myers  <joseph@codesourcery.com>
26396         [BZ #15427]
26397         * sysdeps/ieee754/flt-32/e_lgammaf_r.c (__ieee754_lgammaf_r): Use
26398         2**-30 instead of 2**-70 as threshold for returning -log(|x|).
26399         * math/libm-test.inc (lgamma_test_data): Add more tests.
26400         * sysdeps/i386/fpu/libm-test-ulps: Update.
26401         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26403 2013-09-03   Ondřej Bílka  <neleai@seznam.cz>
26405         * sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S: New file.
26406         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
26407         Add ifunc.
26408         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
26409         Add strcmp-sse2-unaligned
26410         * sysdeps/x86_64/multiarch/strcmp.S (strcmp): Add ifunc.
26412 2013-09-02  Mike Frysinger  <vapier@gentoo.org>
26414         * Versions.def (libc): Add GLIBC_2.19.
26416 2013-09-02  Mike Frysinger  <vapier@gentoo.org>
26418         * sysdeps/unix/sysv/linux/tst-fanotify.c: New test.
26419         * sysdeps/unix/sysv/linux/Makefile (tests): Add tst-fanotify.
26421 2013-09-02  Joseph Myers  <joseph@codesourcery.com>
26423         [BZ #14155]
26424         * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_jnf): Use double for
26425         intermediate calculations in recurrence.
26426         (__ieee754_ynf): Likewise.
26427         * math/libm-test.inc (jn_test_data): Do not allow spurious
26428         underflow exception.  Add more tests.
26429         (yn_test_data): Add more tests.
26430         * sysdeps/i386/fpu/libm-test-ulps: Update.
26431         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26433 2013-09-02   Ondřej Bílka  <neleai@seznam.cz>
26435         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Fix typo.
26437 2013-08-30   Ondřej Bílka  <neleai@seznam.cz>
26439         * csu/init-first.c: Fix then/than typos.
26440         * locale/programs/ld-collate.c: Likewise.
26441         * locale/programs/linereader.h: Likewise.
26442         * manual/charset.texi: Likewise.
26443         * manual/filesys.texi: Likewise.
26444         * manual/stdio.texi: Likewise.
26445         * manual/string.texi: Likewise.
26446         * stdlib/fmtmsg.c: Likewise.
26447         * sysdeps/i386/stpncpy.S: Likewise.
26448         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
26449         * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
26450         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
26451         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
26453 2013-08-30   Ondřej Bílka  <neleai@seznam.cz>
26455         * elf/dl-open.c: Fix typos.
26456         * iconvdata/gbbig5.c: Likewise.
26457         * iconvdata/iso-2022-jp.c: Likewise.
26458         * iconv/gconv_int.h: Likewise.
26459         * iconv/loop.c: Likewise.
26460         * nis/rpcsvc/nis.h: Likewise.
26461         * resolv/ns_name.c: Likewise.
26462         * stdio-common/vfscanf.c: Likewise.
26463         * streams/stropts.h: Likewise.
26464         * sunrpc/rpc_thread.c: Likewise.
26465         * sysdeps/i386/strpbrk.S: Likewise.
26466         * sysdeps/ieee754/k_standard.c: Likewise.
26467         * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
26468         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
26469         * sysdeps/mach/hurd/dl-sysdep.c: Likewise.
26470         * sysdeps/mach/hurd/profil.c: Likewise.
26471         * sysdeps/s390/dl-procinfo.h: Likewise.
26472         * sysdeps/unix/sysv/linux/i386/chown.c: Likewise.
26473         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Likewise.
26474         * sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c: Likewise.
26475         * sysdeps/x86_64/dl-trampoline.S: Likewise.
26476         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
26478 2013-08-30  Ondřej Bílka  <neleai@seznam.cz>
26480         * sysdeps/x86_64/multiarch/rawmemchr.S: Delete.
26481         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Remove rawmemchr ifunc.
26483 2013-08-29  Ondřej Bílka  <neleai@seznam.cz>
26485         * sysdeps/unix/sysv/linux/powerpc/aix/aix-dirent.h: Remove
26486         aix specific files.
26487         * sysdeps/unix/sysv/linux/powerpc/aix/aix-errno.h: Likewise.
26488         * sysdeps/unix/sysv/linux/powerpc/aix/aix-stat.h: Likewise.
26489         * sysdeps/unix/sysv/linux/powerpc/aix/aix-termios.h: Likewise.
26490         * sysdeps/unix/sysv/linux/powerpc/aix/direntconv.c: Likewise.
26491         * sysdeps/unix/sysv/linux/powerpc/aix/errnoconv.c: Likewise.
26492         * sysdeps/unix/sysv/linux/powerpc/aix/statconv.c: Likewise.
26493         * sysdeps/unix/sysv/linux/powerpc/aix/tcgetattr.c: Likewise.
26494         * sysdeps/unix/sysv/linux/powerpc/aix/tcsetattr.c: Likewise.
26496 2013-08-29  Thomas Schwinge  <thomas@codesourcery.com>
26497             Roland McGrath  <roland@hack.frob.com>
26499         * sysdeps/mach/hurd/errnos.awk (BEGIN): Emit ESUCCESS.
26500         * sysdeps/mach/hurd/bits/errno.h: Regenerate.
26502 2013-08-29  Samuel Thibault  <samuel.thibault@ens-lyon.org>
26504         * sysdeps/mach/hurd/i386/init-first.c (init1): Use
26505         __executable_start symbol instead of _start.
26507 2013-08-29  Thomas Schwinge  <thomas@codesourcery.com>
26509         * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_HEADER)
26510         (VALID_ELF_OSABI, VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA):
26511         Move macros to...
26512         * sysdeps/gnu/ldsodefs.h: ... this new file.
26514         * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_OSABI)
26515         (VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA): Use ELFOSABI_GNU
26516         instead of ELFOSABI_LINUX.
26518         [BZ #15522] strtod ("nan(N)") returning a sNaN in some cases
26519         * stdlib/strtof_l.c (SET_MANTISSA): Rewrite.
26520         * stdlib/strtod_l.c (SET_MANTISSA): Likewise.
26521         * sysdeps/ieee754/ldbl-64-128/strtold_l.c (SET_MANTISSA):
26522         Likewise.
26523         * sysdeps/ieee754/ldbl-96/strtold_l.c (SET_MANTISSA): Likewise.
26524         * sysdeps/ieee754/ldbl-128/strtold_l.c (SET_MANTISSA): Likewise.
26525         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c (SET_MANTISSA):
26526         Likewise.
26527         * sysdeps/ieee754/ldbl-128ibm/ieee754.h
26528         (ibm_extended_long_double): Add ieee_nan member.
26529         * stdlib/tst-strtod6.c (test): New function, renamed from do_test.
26530         (do_test): New function.
26532         * math/basic-test.c (TEST_CONVERT): New macro, renamed from
26533         TEST_TRUNC.
26534         (convert_dfsf_test, convert_tfsf_test, convert_tfdf_test): New
26535         functions, renamed from truncdfsf_test, trunctfsf_test,
26536         trunctfdf_test.
26537         (convert_sfdf_test, convert_sftf_test, convert_dftf_test): New
26538         functions.
26539         (do_test): Run all these.
26541 2013-08-29   Ondřej Bílka  <neleai@seznam.cz>
26543         * argp/argp-help.c: Fix typos.
26544         * argp/argp-parse.c: Likewise.
26545         * debug/backtracesyms.c: Likewise.
26546         * elf/elf.h: Likewise.
26547         * malloc/malloc.c: Likewise.
26548         * nis/nis_print.c: Likewise.
26549         * resolv/res_comp.c: Likewise.
26550         * stdlib/stdlib.h: Likewise.
26551         * sunrpc/clnt_tcp.c: Likewise.
26552         * sunrpc/clnt_udp.c: Likewise.
26553         * sunrpc/clnt_unix.c: Likewise.
26554         * sysdeps/unix/bsd/ptsname.c: Likewise.
26555         * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
26556         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Likewise.
26557         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S:
26558         Likewise.
26559         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S:
26560         Likewise.
26561         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S:
26562         Likewise.
26563         * sysdeps/unix/sysv/linux/ptsname.c: Likewise.
26565 2013-08-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
26567         * nscd/aicache.c (addhstaiX): Use __glibc_unlikely.
26568         * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
26570 2013-08-27  Mike Frysinger  <vapier@gentoo.org>
26572         [BZ #15897]
26573         * dlfcn/Makefile (tests): Add bug-dl-leaf.
26574         (modules-names): Add bug-dl-leaf-lib and bug-dl-leaf-lib-cb.
26575         ($(objpfx)bug-dl-leaf): New rule.
26576         ($(objpfx)bug-dl-leaf.so): Likewise.
26577         ($(objpfx)bug-dl-leaf.out): Likewise.
26578         ($(objpfx)bug-dl-leaf-lib.so): Likewise.
26579         ($(objpfx)bug-dl-leaf-lib-cb.so): Likewise.
26580         * dlfcn/bug-dl-leaf.c: New test.
26581         * dlfcn/bug-dl-leaf-lib.c: Likewise.
26582         * dlfcn/bug-dl-leaf-lib-cb.c: Likewise.
26583         * dlfcn/dlfcn.h (dlopen): Change __THROW to __THROWNL.
26584         (dlclose): Likewise.
26585         (dlmopen): Likewise.
26587 2013-08-27  Roland McGrath  <roland@hack.frob.com>
26589         * include/netdb.h [!_ISOMAC]:
26590         Don't include <tls.h>.
26591         (h_errno, __libc_h_errno): Move declaration and macros out of
26592         [_LIBC_REENTRANT].
26594         * include/resolv.h [_RESOLV_H_]:
26595         Don't include <tls.h>.
26596         (__resp, _res): Move declaration and macro out of [_LIBC_REENTRANT].
26597         * resolv/res_libc.c: Don't include <tls.h>.
26598         (_res): Use __attribute__ ((nocommon)) in place of
26599         __attribute__ ((section (".bss"))).
26601         * Makefile ($(common-objpfx)linkobj/libc_pic.a):
26602         If [sunrpc not in $(subdirs)], define to use libc_pic.a directly.
26604         * resolv/res_send.c (send_dg): Don't try to use ioctl unless [FIONREAD].
26606         * resolv/res_hconf.c [!NOT_IN_libc] (ifaddrs): Declare
26607         only under [SIOCGIFCONF && SIOCGIFNETMASK].
26609         * resolv/res_mkquery.c: Include <sys/time.h>.
26611         * inet/ifreq.c: Moved to ...
26612         * sysdeps/unix/ifreq.c: ... here.
26613         * inet/ifreq.c: New file, true stub version.
26615         * socket/sa_len.c: New file.
26616         * socket/Makefile (aux): Add it.
26617         * sysdeps/unix/sysv/linux/Makefile
26618         [$(subdir) = socket] (sysdep_routines): Don't add sa_len here.
26619         * sysdeps/unix/sysv/linux/sa_len.c: Just #define HAVE_NET*_H
26620         and #include <socket/sa_len.c>.
26621         * sysdeps/unix/sysv/linux/s390/sa_len.c: Just #define
26622         HAVE_NETIUCV_IUCV_H and #include <sysdeps/unix/sysv/linux/sa_len.c>.
26624         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Moved to ...
26625         * bits/socket.h: ... here.
26627         * sysdeps/unix/bsd/bsd4.4/bits/socket.h (enum __socket_type):
26628         Add SOCK_CLOEXEC, SOCK_NONBLOCK with values from FreeBSD.
26629         (SOCK_MAX, SOCK_TYPE_MASK): New macros.
26631 2013-08-27  Andreas Schwab  <schwab@suse.de>
26633         [BZ #15736]
26634         * locale/categories.def (LC_CTYPE): Add "nonascii-case" element.
26635         * string/Makefile (test-strcasecmp-ENV, test-strncasecmp-ENV)
26636         (test-strcasecmp-ifunc-ENV, test-strncasecmp-ifunc-ENV): Define.
26637         * string/test-strcasecmp.c (test_main): Run tests in several
26638         locales.
26639         * string/test-strncasecmp.c (test_main): Likewise.
26641         * sysdeps/i386/i686/multiarch/strcmp-sse4.S (__strcasecmp_sse4_2)
26642         (__strncasecmp_sse4_2) [PIC]: Restore %ebx before falling through
26643         to __strcasecmp_nonascii and __strncasecmp_nonascii.
26644         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S (__strcasecmp_ssse3)
26645         (__strncasecmp_ssse3) [PIC]: Likewise.
26647 2013-08-26  Roland McGrath  <roland@hack.frob.com>
26649         * io/lxstat64.c: Just call __xstat64, for parity with stub __lxstat.
26651         * nss/nss_files/files-key.c: Include <rpc/des_crypt.h>
26652         instead of explicitly declaring xdecrypt.
26653         * nis/nss_nis/nis-publickey.c: Likewise.
26655 2013-08-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
26657         [BZ #15890]
26658         * nscd/aicache.c: Include res_hconf.h.
26659         (addhstaiX): Initialize res_hconf.
26661 2013-08-26  Andreas Schwab  <schwab@suse.de>
26663         * stdlib/Makefile (LDFLAGS-tst-tls-atexit): Remove.
26664         ($(objpfx)tst-tls-atexit): Add dependencies here instead.
26666 2013-08-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
26668         * nscd/aicache.c (addhstaiX): Fix indentation.
26670 2013-08-25  Mike Frysinger  <vapier@gentoo.org>
26672         * configure.ac: Quote $build_pt_chown test.
26673         * configure: Regenerated.
26675 2013-08-23  Joseph Myers  <joseph@codesourcery.com>
26677         [BZ #15532]
26678         * math/s_cexp.c (__cexp): Return NaN + i0 for NaN + i0 argument.
26679         * math/s_cexpf.c (__cexpf): Likewise.
26680         * math/s_cexpl.c (__cexpl): Likewise.
26681         * math/libm-test.inc (cexp_test_data): Correct expected return
26682         value for NaN + i0.  Add another test.
26684 2013-08-22  David S. Miller  <davem@davemloft.net>
26686         * po/ca.po: Update Catalan translation from translation project.
26687         * po/uk.po: Add Ukrainian translations from translation project.
26689 2013-08-21  Joseph Myers  <joseph@codesourcery.com>
26691         [BZ #15797]
26692         * math/s_fdim.c (__fdim): Check for infinite arguments if result
26693         is infinite, not alongside NaN test.
26694         * math/s_fdimf.c (__fdimf): Likewise.
26695         * math/s_fdiml.c (__fdiml): Likewise.
26696         * math/libm-test.inc (fdim_test_data): Add more tests.  Test that
26697         errno is unchanged.
26699 2013-08-21   Ondřej Bílka  <neleai@seznam.cz>
26701         * argp/argp-help.c: Fix typos.
26702         * crypt/speeds.c: Likewise.
26703         * csu/check_fds.c: Likewise.
26704         * elf/dl-load.c: Likewise.
26705         * elf/dl-open.c: Likewise.
26706         * elf/reldep3.c: Likewise.
26707         * elf/reldep.c: Likewise.
26708         * elf/sprof.c: Likewise.
26709         * iconv/iconv_charmap.c: Likewise.
26710         * iconv/skeleton.c: Likewise.
26711         * iconv/strtab.c: Likewise.
26712         * io/lockf64.c: Likewise.
26713         * libio/libioP.h: Likewise.
26714         * resolv/gai_notify.c: Likewise.
26715         * resolv/ns_name.c: Likewise.
26716         * resolv/ns_samedomain.c: Likewise.
26717         * resolv/res_send.c: Likewise.
26718         * stdlib/random.c: Likewise.
26719         * sunrpc/rpc/xdr.h: Likewise.
26720         * sysdeps/i386/fpu/fraiseexcpt.c: Likewise.
26721         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
26722         * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
26723         * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
26724         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
26725         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
26726         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
26727         * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
26728         * sysdeps/mach/hurd/check_fds.c: Likewise.
26729         * sysdeps/powerpc/powerpc32/cell/memcpy.S: Likewise.
26730         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
26731         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
26732         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.
26733         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
26734         * sysdeps/powerpc/powerpc64/cell/memcpy.S: Likewise.
26735         * sysdeps/pthread/aio_notify.c: Likewise.
26736         * sysdeps/sparc/fpu/fraiseexcpt.c: Likewise.
26737         * sysdeps/unix/sysv/linux/socketcall.h: Likewise.
26738         * sysdeps/x86_64/fpu/fraiseexcpt.c: Likewise.
26739         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
26740         * sysdeps/x86/fpu/bits/fenv.h: Likewise.
26742 2013-08-21  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
26744         * sysdeps/i386/i686/multiarch/strcmp.S: Skip SSE4_2
26745         version if bit_Slow_SSE4_2 is set.
26746         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
26747         * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
26749 2013-07-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26751         [BZ #15867]
26752         * sysdeps/powerpc/powerpc32/backtrace.c (__backtrace): Handle signal
26753         trampoline stack frame information.
26754         * sysdeps/powerpc/powerpc64/backtrace.c (__backtrace): Likewise.
26755         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h
26756         (__vdso_sigtramp_rt64): New variable: PPC64 signal trampoline.
26757         (__vdso_sigtramp32): New variable: PPC32 signal trampoline.
26758         (__vdso_sigtramp_rt32): New variable: PPC32 signal trampoline.
26759         * sysdeps/unix/sysv/linux/powerpc/init-first.c
26760         (_libc_vdso_platform_setup): Initialize the signal trampolines.
26761         * debug/tst-backtrace5.c (fn): Add an option set modify sigaction
26762         sa_flags value.
26763         * debug/tst-backtrace6.c: New file: check backtrace for signal frames,
26764         interrupting a syscall and set with option SA_SIGINFO.
26766 2013-08-20  Joseph Myers  <joseph@codesourcery.com>
26768         [BZ #15531]
26769         * math/s_cproj.c (__cproj): Only return an infinity if one part of
26770         argument is infinite.
26771         * math/s_cprojf.c (__cprojf): Likewise.
26772         * math/s_cprojl.c (__cprojl): Likewise.
26773         * sysdeps/ieee754/ldbl-128ibm/s_cprojl.c (__cprojl): Likewise.
26774         * math/libm-test.inc (cproj_test_data): Add more tests.
26776         * sysdeps/unix/sysv/linux/mmap64.c: Include <string.h>.
26778         * sysdeps/unix/sysv/linux/mmap64.c (__mmap64)
26779         [MMAP2_PAGE_SHIFT == -1]: Use __getpagesize to determine page
26780         size.  Use __ffs to determine corresponding shift.
26782 2013-08-20  Joseph Myers  <joseph@codesourcery.com>
26783             Roland McGrath  <roland@hack.frob.com>
26785         * Makefile (INSTALL): Remove trailing blank lines from output of
26786         makeinfo.
26788 2013-08-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
26790         * sysdeps/unix/sysv/linux/s390/sys/procfs.h (struct elf_prstatus):
26791         Align 32 bit compat elf_greg to 8 bytes.
26793 2013-08-20  Andreas Arnez  <arnez@linux.vnet.ibm.com>
26795         * elf/setup-vdso.h (setup_vdso): Fix missing string termination.
26797 2013-08-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
26799         * string/strcoll_l.c (coll_seq): New structure.
26800         (get_next_seq_cached): New function.
26801         (get_next_seq): New function.
26802         (do_compare): New function.
26803         (STRCOLL): Use GNU style definition.  Simplify implementation
26804         by using get_next_seq, get_next_seq_cached and do_compare.
26806 2013-08-16  Florian Weimer  <fweimer@redhat.com>
26808         [BZ #14699]
26809         CVE-2013-4237
26810         * sysdeps/posix/dirstream.h (struct __dirstream): Add errcode
26811         member.
26812         * sysdeps/posix/opendir.c (__alloc_dir): Initialize errcode
26813         member.
26814         * sysdeps/posix/rewinddir.c (rewinddir): Reset errcode member.
26815         * sysdeps/posix/readdir_r.c (__READDIR_R): Enforce NAME_MAX limit.
26816         Return delayed error code.  Remove GETDENTS_64BIT_ALIGNED
26817         conditional.
26818         * sysdeps/unix/sysv/linux/wordsize-64/readdir_r.c: Do not define
26819         GETDENTS_64BIT_ALIGNED.
26820         * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
26821         * manual/filesys.texi (Reading/Closing Directory): Document
26822         ENAMETOOLONG return value of readdir_r.  Recommend readdir more
26823         strongly.
26824         * manual/conf.texi (Limits for Files): Add portability note to
26825         NAME_MAX, PATH_MAX.
26826         (Pathconf): Add portability note for _PC_NAME_MAX, _PC_PATH_MAX.
26828 2013-08-13  Andreas Schwab  <schwab@suse.de>
26830         [BZ #15749]
26831         * sysdeps/ieee754/ldbl-96/s_cbrtl.c (__cbrtl): Use fabsl instead
26832         of fabs.
26833         * math/libm-test.inc (cbrt_test_data) [TEST_LDOUBLE &&
26834         LDBL_MAX_EXP >= 16384]: Add tests for it.
26836 2013-08-12  David S. Miller  <davem@davemloft.net>
26838         * version.h (RELEASE): Set to "development".
26839         (VERSION): Set to "2.18.90".
26840         * NEWS: Add 2.19 section.
26842 2013-08-03  David S. Miller  <davem@davemloft.net>
26844         * po/ko.po: Update Korean translation from translation project.
26846 2013-08-01  David S. Miller  <davem@davemloft.net>
26848         * manual/contrib.texi: Update entry for Siddhesh Poyarekar.  Add
26849         entries for Will Newton, Andi Kleen, David Holsgrove, and Ondrej
26850         Bilka.
26852 2013-07-30  David S. Miller  <davem@davemloft.net>
26854         * po/fr.po: Update French translation from translation project.
26856 2013-07-28  David S. Miller  <davem@davemloft.net>
26858         * po/cs.po: Update Czech translation from translation project.
26860         * po/sv.po: Update Swedish translation from translation project.
26862 2013-07-27  David S. Miller  <davem@davemloft.net>
26864         * po/eo.po: Update Esperanto translation from translation project.
26866         * po/vi.po: Update Vietnamese translation from translation project.
26868         * po/de.po: Update German translation from translation project.
26870 2013-07-26  David S. Miller  <davem@davemloft.net>
26872         * po/bg.po: Update Bulgarian translation from translation project.
26874         * po/nl.po: Update Dutch translation from translation project.
26875         * po/pl.po: Update Polish translation from translation project.
26876         * po/ru.po: Update Russian translation from translation project.
26878 2013-07-24  David S. Miller  <davem@davemloft.net>
26880         * po/libc.pot: Update.
26882 2013-07-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26884         * sysdeps/unix/sysv/linux/powerpc/dl-static.c: New file to support
26885         variable page size.
26886         * sysdeps/unix/sysv/linux/powerpc/ldsodefs.h: Likewise.
26887         * sysdeps/unix/sysv/linux/powerpc/Makefile: Build dl-static in elf.
26888         * sysdeps/unix/sysv/linux/powerpc/Versions: Add _dl_var_init.
26890 2013-07-22  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
26892         * sysdeps/s390/fpu/libm-test-ulps: Refresh.
26894 2013-07-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
26895             Andreas Schwab  <schwab@suse.de>
26896             Roland McGrath  <roland@hack.frob.com>
26897             Joseph Myers  <joseph@codesourcery.com>
26898             Carlos O'Donell  <carlos@redhat.com>
26900         [BZ #15755]
26901         * config.h.in: Define HAVE_PT_CHOWN.
26902         * config.make.in (build-pt-chown): New variable.
26903         * configure.in (--enable-pt_chown): New configure option.
26904         * configure: Regenerate.
26905         * login/Makefile: Include Makeconfig.  Build pt_chown only if
26906         build-pt-chown is enabled.
26907         * sysdeps/unix/grantpt.c (grantpt) [HAVE_PT_CHOWN]: Spawn
26908         pt_chown to fix pty ownership.
26909         * sysdeps/unix/sysv/linux/grantpt.c [HAVE_PT_CHOWN]: Define
26910         CLOSE_ALL_FDS.
26911         * manual/install.texi (Configuring and compiling): Mention
26912         --enable-pt_chown. Add @findex for grantpt.
26913         * INSTALL: Regenerate.
26915 2013-07-20  David S. Miller  <davem@davemloft.net>
26917         * sysdeps/sparc/fpu/libm-test-ulps: Update ULPs to handle minor
26918         difference between 32-bit and 64-bit.
26920 2013-07-15  Carlos O'Donell  <carlos@redhat.com>
26922         [BZ #15711]
26923         * sysdeps/unix/sysv/linux/Makefile ($(objpfx)bits/syscall%h):
26924         Avoid system header dependency with -ffreestanding.
26925         ($(objpfx)bits/syscall%d): Likewise.
26927 2013-07-13  David S. Miller  <davem@davemloft.net>
26929         * math/libm-test.inc (casin_test_data): Annotate more cases of missing
26930         underflows from atanl/atan2l due to bug 15319.
26931         (casinh_test_data): Likewise.
26933 2013-07-07  David S. Miller  <davem@davemloft.net>
26935         * sysdeps/sparc/fpu/libm-test-ulps: Regenerate from scratch.
26937 2013-07-05  Jeroen Albers  <_jeroen_@yahoo.com>
26939         * sysdeps/i386/fpu/libm-test-ulps: Update.
26940         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26942 2013-07-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
26944         * configure.in (--enable-lock-elision): Fix message text.
26945         * INSTALL: Regenerate.
26946         * configure: Regenerate.
26948 2013-07-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26950         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
26952 2013-07-03  Andreas Jaeger  <aj@suse.de>
26954         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_LISTEN): Add
26955         define.
26956         (PTRACE_PEEKSIGINFO): Add new value from Linux 3.10.
26957         (ptrace_peeksiginfo_args): Add.
26958         (__ptrace_peeksiginfo_flags): Add.
26959         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
26960         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
26961         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
26963 2013-07-03  Allan McRae  <allan@archlinux.org>
26965         * sysdeps/i386/fpu/libm-test-ulps: Update.
26967 2013-07-02  David S. Miller  <davem@davemloft.net>
26969         * sysdeps/sparc/fpu/libm-test-ulps: Update.
26971 2013-07-02  Markus Trippelsdorf  <markus@trippelsdorf.de>
26973         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
26975 2013-07-02  Joseph Myers  <joseph@codesourcery.com>
26977         * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
26978         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26980 2013-07-02  Andi Kleen <ak@linux.intel.com>
26982         * config.h.in (ENABLE_LOCK_ELISION): Add.
26983         * configure.in (--enable-lock-elision): Add option.
26984         * manual/install.texi: Document --enable lock elision.
26985         * configure: Regenerate
26986         * INSTALL: Regenerate.
26988 2013-07-02  H.J. Lu  <hongjiu.lu@intel.com>
26990         * sysdeps/i386/i686/multiarch/strcasecmp.S (__strcasecmp): Enable
26991         SSE4.2 strcasecmp for libc.a.
26992         * sysdeps/i386/i686/multiarch/strncase.S (__strncasecmp): Likewise.
26994 2013-07-02  Joseph Myers  <joseph@codesourcery.com>
26996         [BZ #13304]
26997         * soft-fp/op-common.h (_FP_FMA): New macro.
26998         * soft-fp/op-1.h (_FP_FRAC_HIGHBIT_DW_1): New macro.
26999         (_FP_MUL_MEAT_DW_1_imm): Likewise.  Split out of ...
27000         (_FP_MUL_MEAT_1_imm): ... here.
27001         (_FP_MUL_MEAT_DW_1_wide): New macro.  Split out of ...
27002         (_FP_MUL_MEAT_1_wide): ... here.
27003         (_FP_MUL_MEAT_DW_1_hard): Likewise.  Split out of ...
27004         (_FP_MUL_MEAT_1_hard): ... here.
27005         * soft-fp/op-2.h (_FP_FRAC_HIGHBIT_DW_2): New macro.
27006         (_FP_MUL_MEAT_DW_2_wide): Likewise.  Split out of ...
27007         (_FP_MUL_MEAT_2_wide): ... here.
27008         (_FP_MUL_MEAT_DW_2_wide_3mul): New macro.  Split out of ...
27009         (_FP_MUL_MEAT_2_wide_3mul): ... here.
27010         (_FP_MUL_MEAT_DW_2_gmp): New macro.  Split out of ...
27011         (_FP_MUL_MEAT_2_gmp): ... here.
27012         * soft-fp/op-4.h (_FP_FRAC_HIGHBIT_DW_4): New macro.
27013         (_FP_MUL_MEAT_DW_4_wide): Likewise.  Split out of ...
27014         (_FP_MUL_MEAT_4_wide): ... here.
27015         (_FP_MUL_MEAT_DW_4_gmp): New macro.  Split out of ...
27016         (_FP_MUL_MEAT_4_gmp): ... here.
27017         * soft-fp/single.h (_FP_FRACTBITS_DW_S): New macro.
27018         (_FP_WFRACBITS_DW_S): Likewise.
27019         (_FP_WFRACXBITS_DW_S): Likewise.
27020         (_FP_HIGHBIT_DW_S): Likewise.
27021         (FP_FMA_S): Likewise.
27022         (_FP_FRAC_HIGH_DW_S): Likewise.
27023         * soft-fp/double.h (_FP_FRACTBITS_DW_D): New macro.
27024         (_FP_WFRACBITS_DW_D): Likewise.
27025         (_FP_WFRACXBITS_DW_D): Likewise.
27026         (_FP_HIGHBIT_DW_D): Likewise.
27027         (FP_FMA_D): Likewise.
27028         (_FP_FRAC_HIGH_DW_D): Likewise.
27029         * soft-fp/extended.h (_FP_FRACTBITS_DW_E): New macro.
27030         (_FP_WFRACBITS_DW_E): Likewise.
27031         (_FP_WFRACXBITS_DW_E): Likewise.
27032         (_FP_HIGHBIT_DW_E): Likewise.
27033         (FP_FMA_E): Likewise.
27034         (_FP_FRAC_HIGH_DW_E): Likewise.
27035         * soft-fp/quad.h (_FP_FRACTBITS_DW_Q): New macro.
27036         (_FP_WFRACBITS_DW_Q): Likewise.
27037         (_FP_WFRACXBITS_DW_Q): Likewise.
27038         (_FP_HIGHBIT_DW_Q): Likewise.
27039         (FP_FMA_Q): Likewise.
27040         (_FP_FRAC_HIGH_DW_Q): Likewise.
27041         * soft-fp/fmasf4.c: New file.
27042         * soft-fp/fmadf4.c: Likewise.
27043         * soft-fp/fmatf4.c: Likewise.
27045 2013-06-28  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
27047         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Set
27048         bit_Slow_SSE4_2 and bit_Prefer_PMINUB_for_stringop for Intel
27049         Silvermont.
27050         * sysdeps/x86_64/multiarch/init-arch.h (bit_Slow_SSE4_2): New
27051         macro.
27052         (index_Slow_SSE4_2): Likewise.
27053         (index_Prefer_PMINUB_for_stringop): Likewise.
27054         * sysdeps/x86_64/multiarch/strchr.S: Skip SSE4.2 version if
27055         bit_Slow_SSE4_2 is set.
27056         * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
27057         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
27059 2013-06-28  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
27061         * sysdeps/powerpc/Makefile: Add comment about generating an offset to
27062         rtld_global._dl_hwcap2.
27063         * sysdeps/powerpc/bits/hwcap.h: Added PPC_FEATURE2_* definitions for
27064         POWER8.
27065         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Extend for
27066         POWER8 feature descriptions defined in _dl_hwcap2.
27067         * sysdeps/powerpc/dl-procinfo.h (_dl_procinfo): Implement AT_HWCAP2
27068         string handling for POWER8 feature bits.
27069         (_DL_HWCAP_COUNT): Increment to 64 to cover AT_HWCAP2 bits.
27070         (_DL_HWCAP_LAST): New definition for position of last AT_HWCAP bit in
27071         _dl_powerpc_cap_flags.
27072         (_DL_HWCAP2_LAST): New definition for last usable bit of AT_HWCAP2.
27073         * sysdeps/powerpc/rtld-global-offsets.sym
27074         (RTLD_GLOBAL_RO_DL_HWCAP2_OFFSET): New offset macro to locate
27075         _dl_hwcap2 in the rtld_global_ro structure.
27077 2013-06-28  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
27079         * elf/dl-support.c (_dl_hwcap2): Add a new hwcap field for more
27080         hardware capabilities in support of AT_HWCAP2.
27081         (_dl_aux_init): Read AT_HWCAP2 into GLRO(dl_hwcap2).
27082         * elf/dl-sysdep.c (_dl_sysdep_start): Read AT_HWCAP2 into
27083         GLRO(dl_hwcap2).
27084         (_dl_show_auxv): Add support for calling _dl_procinfo to display
27085         AT_HWCAP2.  If a platform doesn't chose to handle displaying AT_HWCAP2
27086         explicitly the unknown a_type display mechanism is used.
27087         * misc/getauxval.c (__getauxval): Return GLRO(dl_hwcap2) on AT_HWCAP2.
27088         * sysdeps/generic/ldsodefs.h (rtld_global_ro): Add _dl_hwcap2 as a new
27089         struct member.
27090         * sysdeps/generic/dl-procinfo.h (_dl_procinfo): Add TYPE parameter
27091         to macro prototype for AT_HWCAP2 support.
27092         * sysdeps/i386/dl-procinfo.h: Likewise.
27093         * sysdeps/s390/dl-procinfo.h: Likewise.
27094         * sysdeps/powerpc/dl-procinfo.h (_dl_procinfo): Add TYPE parameter to
27095         macro prototype for AT_HWCAP2 support.  Make WORD unsigned long int
27096         rather than signed int.  Stub in handler for TYPE == AT_HWCAP2 to
27097         return -1 for unknown a_type display fallback.
27098         * sysdeps/sparc/dl-procinfo.h: Likewise.
27099         * sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Likewise.
27100         * sysdeps/unix/sysv/linux/s390/dl-procinfo.h: Likewise.
27102 2013-06-28  Joseph Myers  <joseph@codesourcery.com>
27104         * sysdeps/unix/sysv/linux/mmap64.c (__mmap64): Shift by page_shift
27105         instead of MMAP2_PAGE_SHIFT in call to INLINE_SYSCALL.
27107 2013-06-28  Pierre Ynard  <linkfanel@yahoo.fr>
27109         [BZ #12492]
27110         * elf/dl-load.c (_dl_map_object_from_fd): Test for failure of
27111         mprotect making __stack_prot writable.
27113 2013-06-28  Nathan Froyd  <froydnj@codesourcery.com>
27114             Joseph Myers  <joseph@codesourcery.com>
27116         * elf/dl-profile.c (struct here_cg_arc_record): Declare 'count'
27117         as being properly aligned.
27119 2013-06-28  Maciej W. Rozycki  <macro@codesourcery.com>
27121         * dlfcn/modstatic5.c: New file.
27122         * dlfcn/tststatic5.c: New file.
27123         * dlfcn/Makefile (tests): Add tststatic5.
27124         (tests-static): Likewise.
27125         (modules-names): Add modstatic5.
27126         (tststatic5-ENV): New variable.
27127         ($(objpfx)tststatic5, $(objpfx)tststatic5.out): New dependencies.
27129         [BZ #15022]
27130         * elf/dl-support.c (_dl_main_map): New variable.
27131         (_dl_ns): Use it to initialize [LM_ID_BASE] element.
27132         (_dl_nns, _dl_load_adds): Set to 1.
27133         (_dl_initial_searchlist): Refer to _dl_main_map.
27134         (_dl_non_dynamic_init): Initialize _dl_main_map.l_origin.
27135         * elf/dl-load.c (_dl_dst_substitute) [!SHARED]: Remove fallback
27136         call to _dl_get_origin.
27137         * elf/dl-open.c (dl_open_worker): Remove !SHARED special casing
27138         around call_map.
27139         (_dl_open) [!SHARED]: Remove code to initialize GL(dl_nns).
27140         * dlfcn/modstatic3.c: New file.
27141         * dlfcn/tststatic3.c: New file.
27142         * dlfcn/tststatic4.c: New file.
27143         * dlfcn/Makefile (tests): Add tststatic3 and tststatic4.
27144         (tests-static): Likewise.
27145         (modules-names): Add modstatic3.
27146         (tststatic3-ENV, tststatic4-ENV): New variables.
27147         ($(objpfx)tststatic3, $(objpfx)tststatic3.out): New dependencies.
27148         ($(objpfx)tststatic4, $(objpfx)tststatic4.out): Likewise.
27150 2013-06-26  Joseph Myers  <joseph@codesourcery.com>
27152         * configure.in (CC): Require GCC version 4.4 or later.
27153         * configure: Regenerated.
27154         * manual/install.texi (Tools for Compilation): Update GCC version
27155         requirement.
27156         * INSTALL: Regenerated.
27158 2013-06-26  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
27160         [BZ #15674]
27161         * string/test-memcmp.c (check2): New.
27162         (main): Call check2.
27164         * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Fix buffers overrun.
27166 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
27168         [BZ #15022]
27169         * elf/dl-open.c (_dl_open) [!SHARED]: Move call to DL_STATIC_INIT
27170         over to...
27171         (dl_open_worker) [!SHARED]: ... here.
27173 2013-06-26  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
27175         * elf/elf.h (AT_HWCAP2): Add a new a_type entry.
27177 2013-06-25  Richard Henderson  <rth@redhat.com>
27179         * locale/programs/locarchive.c: Include <libc-internal.h>
27181 2013-06-25  Joseph Myers  <joseph@codesourcery.com>
27183         * manual/texinfo.tex: Update to version 2013-06-21.17, with
27184         trailing whitespace removed.
27186 2013-06-24  Mike Frysinger  <vapier@gentoo.org>
27188         [BZ #10283]
27189         * locale/locarchive.h (struct locarhandle): Add mmap_base and mmap_len.
27190         * locale/programs/locarchive.c: Include libc-mmap.h.
27191         (prepare_address_space): Take two new outputs (the mmap base and len).
27192         Align p to MAP_FIXED_ALIGNMENT.  Set mmap base and len to the right
27193         values.
27194         (create_archive): Declare new mmap base and len values for
27195         prepare_address_space, and store the result in ah.
27196         (file_data_available_p): Replace pagesz with MAP_FIXED_ALIGNMENT.
27197         (enlarge_archive): If ah->mmap_base is not NULL, use that and
27198         ah->mmap_len to unmap rather than ah->addr and ah->reserved.
27199         Declare new mmap base and len values for
27200         prepare_address_space, and store the result in new_ah.
27201         (open_archive): Declare new mmap base and len values for
27202         prepare_address_space, and store the result in ah.
27203         (close_archive): If ah->mmap_base is not NULL, use that and
27204         ah->mmap_len to unmap rather than ah->addr and ah->reserved.
27205         * sysdeps/generic/libc-mmap.h: New file.
27207 2013-06-24  Mike Frysinger  <vapier@gentoo.org>
27209         * include/libc-internal.h (ALIGN_DOWN): New helper macro.
27210         (ALIGN_UP): Likewise.
27211         (PTR_ALIGN_DOWN): Likewise.
27212         (PTR_ALIGN_UP): Likewise.
27214 2013-06-24  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
27216         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platforms): Add "power8"
27217         entry mapped to PPC_PLATFORM_POWER8.
27218         * sysdeps/powerpc/dl-procinfo.h (_DL_PLATFORMS_COUNT): Increment for
27219         POWER8.
27220         (PPC_PLATFORM_POWER8): Add new platform bit for POWER8 processor.
27221         (_dl_string_platform): Add case for exporting platform position for
27222         POWER8.
27223         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power8/Implies: Chain
27224         search path to sysdeps/powerpc/powerpc32/power8 directory.
27225         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power8/Implies: Chain
27226         search path to sysdeps/powerpc/powerpc64/power8 directory.
27227         * sysdeps/powerpc/powerpc32/power8/Implies: Chain search path to
27228         power7 directories.
27229         * sysdeps/powerpc/powerpc64/power8/Implies: Chain search path to
27230         power7 directories.
27232 2013-06-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
27234         * INSTALL: Regenerate.
27236         * nscd/connections.c (nscd_init): Fix comment.
27238 2013-06-22  Joseph Myers  <joseph@codesourcery.com>
27240         * sysdeps/unix/sysv/linux/libc_fatal.c: Include <string.h>.
27242         [BZ #15667]
27243         * soft-fp/op-4.h (__FP_FRAC_ADD_3): Rename variables _c1 and _c2
27244         to __FP_FRAC_ADD_3_c1 and __FP_FRAC_ADD_3_c2.
27246 2013-06-21  Maciej W. Rozycki  <macro@codesourcery.com>
27248         * elf/dl-dst.h (DL_DST_REQUIRED): Remove call to
27249         DL_DST_REQ_STATIC.
27250         (DL_DST_REQ_STATIC): Remove macro.
27252 2013-06-21  Joseph Myers  <joseph@codesourcery.com>
27254         [BZ #7006]
27255         * soft-fp/op-common.h (_FP_FROM_INT): Do not call _FP_FRAC_SLL
27256         with a shift of 0 bits.
27258 2013-06-21  Maciej W. Rozycki  <macro@codesourcery.com>
27260         * dlfcn/Makefile (tststatic2-ENV): Redefine in terms of
27261         $(tststatic-ENV).
27263 2013-06-21  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
27265         [BZ #15655]
27266         * sysdeps/sh/sh4/fpu/fgetexcptflg.c: New file.
27268 2013-06-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27270         * config.h.in (HAVE_CC_INHIBIT_LOOP_TO_LIBCALL): New define.
27271         * configure.in (libc_cv_cc_loop_to_function): Check if compiler
27272         accepts -fno-tree-loop-distribute-patterns.
27273         * include/libc-symbols.h (inhibit_loop_to_libcall): New macro.
27274         * string/memmove.c (MEMMOVE): Disable loop transformation to avoid
27275         recursive call.
27276         * string/memset.c (memset): Likewise.
27277         * string/test-memmove.c (simple_memmove): Disable loop transformation
27278         to library calls.
27279         * string/test-memset.c (simple_memset): Likewise.
27280         * benchtests/bench-memmove.c (simple_memmove): Likewise.
27281         * benchtests/bench-memset.c (simple_memset): Likewise.
27282         * configure: Regenerated.
27284 2013-06-20  Joseph Myers  <joseph@codesourcery.com>
27286         * math/test-misc.c (main): Ignore fesetround failure when failures
27287         of subsequent rounding tests would be ignored.
27289         [BZ #15654]
27290         * math/fedisblxcpt.c (fedisableexcept): Return 0.
27291         * math/feenablxcpt.c (feenableexcept): Return 0 for argument 0.
27292         * math/fegetenv.c (__fegetenv): Return 0.
27293         * math/fegetexcept.c (fegetexcept): Return 0.
27294         * math/fegetround.c (fegetround) [FE_TONEAREST]: Return
27295         FE_TONEAREST.
27296         * math/feholdexcpt.c (feholdexcept): Return 0.
27297         * math/fesetenv.c (__fesetenv): Return 0.
27298         * math/fesetround.c (fesetround) [FE_TONEAREST]: Return 0 for
27299         argument FE_TONEAREST.
27300         * math/feupdateenv.c (__feupdateenv): Return 0.
27301         * math/fgetexcptflg.c (__fegetexceptflag): Return 0.
27303 2013-06-18  Roland McGrath  <roland@hack.frob.com>
27305         * elf/rtld-Rules (rtld-compile-command.S): New variable.
27306         (rtld-compile-command.s, rtld-compile-command.c): New variables.
27307         ($(objpfx)rtld-%.os rules): Use them.
27309 2013-06-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27311         * nptl/sysdeps/powerpc/tls.h (tcbhead_t): Add Event-Based Branch
27312         fields.
27314 2013-06-17  Roland McGrath  <roland@hack.frob.com>
27316         * scripts/sysd-rules.awk: Sort sysd_rules_patterns by descending
27317         length of target pattern, then descending length of dependency pattern.
27318         * configure.in (AWK): Require gawk 3.1.2 or newer.
27319         * manual/install.texi (Tools for Compilation): Say that we do.
27320         * configure: Regenerated.
27322         * Makerules [inhibit-sysdep-asm] (check-inhibit-asm): Variable removed.
27323         ($(common-objpfx)sysd-rules): Replace shell logic with running ...
27324         * scripts/sysd-rules.awk: ... this new script.
27325         * sysdeps/mach/hurd/Makefile (inhibit-sysdep-asm): Use a regexp rather
27326         than a glob-style pattern.
27328 2013-06-17  Joseph Myers  <joseph@codesourcery.com>
27330         * math/test-misc.c (main): Do not treat incorrectly rounded
27331         conversions as failure unless ROUNDING_TESTS passes.
27333 2013-06-15  Joseph Myers  <joseph@codesourcery.com>
27335         [BZ #15631]
27336         * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Save and
27337         restore exception state around main square root computation, then
27338         check for inexactness explicitly.
27340         * math/libm-test.inc (fma_test_data): Add another test.
27342 2013-06-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
27344         * manual/threads.texi (Non-POSIX Extensions): New document
27345         node.  Document pthread_getattr_default_np and
27346         pthread_setattr_default_np.
27348         * Versions.def (libpthread): Add GLIBC_2.18.
27349         * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: Update.
27350         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
27351         Likewise.
27352         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
27353         Likewise.
27354         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
27355         Likewise.
27356         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
27357         Likewise.
27358         * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist:
27359         Likewise.
27360         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
27361         Likewise.
27362         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
27363         Likewise.
27364         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist:
27365         Likewise.
27366         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist:
27367         Likewise.
27369 2013-06-14  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
27371         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
27372         Set bit_Fast_Unaligned_Load for Intel Silvermont architecture.
27374 2013-06-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
27375             H.J. Lu  <hjl.tools@gmail.com>
27377         [BZ #15627]
27378         * sysdeps/x86_64/rtld-memset.c: Remove file.
27379         * sysdeps/x86_64/rtld-memset.S: New file.
27381 2013-06-14  Joseph Myers  <joseph@codesourcery.com>
27383         * stdlib/tst-strtod-round.c: Include <math-tests.h>.
27384         (test_in_one_mode): Take arguments for whether the rounding mode
27385         is supported for each floating-point type.
27386         (do_test): Pass new arguments to test_in_one_mode using
27387         ROUNDING_TESTS.
27389 2013-06-13  Roland McGrath  <roland@hack.frob.com>
27391         * posix/tst-waitid.c (do_test): Distinguish different instances of
27392         stopped/continued in CHECK_SIGCHLD uses.  Insert a delay between
27393         sending SIGSTOP and calling waitpid to ensure SIGCHLD gets delivered
27394         before entering the kernel for waitpid.
27396 2013-06-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
27398         * NEWS: Fix note on clock function precision.  Text by Roland
27399         McGrath.
27401 2013-06-13  Roland McGrath  <roland@hack.frob.com>
27403         * elf/Makefile ($(objpfx)ld.so): Link into a temporary file and move
27404         it into place only when and if the sanity check passes.
27406 2013-06-13  Joseph Myers  <joseph@codesourcery.com>
27408         * stdlib/gen-tst-strtod-round.c (round_str): Always generate
27409         output for whether conversion result is exact.  Take argument
27410         indicating whether type is IBM long double.
27411         (round_for_all): Change need_exact field to ibm_ld.
27412         * stdlib/tst-strtod-round.c (struct exactness): New type.
27413         (struct test): Change bool ld_ok field to struct exactness exact.
27414         (TEST): Update all definitions for change to field.
27415         (tests): Regenerate array contents.
27416         (test_in_one_mode): Take pointer to new field instead of old ld_ok
27417         field value.  Check for IBM long double here.
27418         (do_test): Update calls to test_in_one_mode.
27420 2013-06-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
27422         [BZ #12515]
27423         * sysdeps/unix/sysv/linux/clock.c (clock): Use result from
27424         CLOCK_PROCESS_CPUTIME_ID clock instead of __times.
27426 2013-06-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27428         [BZ #15605]
27429         * sysdeps/generic/symbol-hacks.h: Add workaround for memset/memmove calls
27430         generated by the compiler on loop optimizations.
27431         * sysdeps/wordsize-32/symbol-hacks.h: Include next symbol-hacks.h for
27432         general definitions.
27434 2013-06-12  Joseph Myers  <joseph@codesourcery.com>
27436         * math/bug-nextafter.c: Include <math-tests.h>.
27437         (main): Only test for exceptions if EXCEPTION_TESTS is true for
27438         the relevant type.
27439         * math/bug-nexttoward.c: Include <math-tests.h>.
27440         (main): Only test for exceptions if EXCEPTION_TESTS is true for
27441         the relevant type.
27442         * math/test-misc.c: Include <math-tests.h>.
27443         (main): Only test for exceptions if EXCEPTION_TESTS is true for
27444         the relevant type.
27446 2013-06-12  Andreas Jaeger  <aj@suse.de>
27448         * po/ia.po: Update Interlingua translation from translation
27449         project.
27451 2013-06-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
27453         * include/fenv.h: Include stdbool.h.
27454         (struct rm_ctx): New structure.
27455         * sysdeps/generic/math_private.h (SET_RESTORE_ROUND_GENERIC):
27456         Define macro.
27457         (SET_RESTORE_ROUND): Define using SET_RESTORE_ROUND_GENERIC.
27458         (SET_RESTORE_ROUNDF): Likewise.
27459         (SET_RESTORE_ROUNDL): Likewise.
27460         (SET_RESTORE_ROUND_NOEX): Likewise.
27461         (SET_RESTORE_ROUND_NOEXF): Likewise.
27462         (SET_RESTORE_ROUND_NOEXL): Likewise.
27463         (SET_RESTORE_ROUND_53BIT): Likewise.
27464         [HAVE_RM_CTX] (libc_feresetround_noex_ctx): Define macro.
27465         (libc_feresetround_noexf_ctx): Likewise.
27466         (libc_feresetround_noexl_ctx): Likewise.
27467         (libc_feholdsetround_53bit_ctx): Likewise.
27468         (libc_feresetround_53bit_ctx): Likewise.
27469         * sysdeps/i386/fpu/fenv_private.h (HAVE_RM_CTX): Define macro.
27470         (libc_feholdexcept_setround_sse_ctx): New function.
27471         (libc_fesetenv_sse_ctx): Likewise.
27472         (libc_feupdateenv_sse_ctx): Likewise.
27473         (libc_feholdexcept_setround_387_prec_ctx): Likewise.
27474         (libc_feholdexcept_setround_387_ctx): Likewise.
27475         (libc_feholdexcept_setround_387_53bit_ctx): Likewise.
27476         (libc_feholdsetround_387_prec_ctx): Likewise.
27477         (libc_feholdsetround_387_ctx): Likewise.
27478         (libc_feholdsetround_387_53bit_ctx): Likewise.
27479         (libc_feholdsetround_sse_ctx): Likewise.
27480         (libc_feresetround_sse_ctx): Likewise.
27481         (libc_feresetround_387_ctx): Likewise.
27482         (libc_feupdateenv_387_ctx): Likewise.
27483         (libc_feholdexcept_setroundf_ctx): Define macro.
27484         (libc_fesetenvf_ctx): Likewise.
27485         (libc_feupdateenvf_ctx): Likewise.
27486         (libc_feholdsetroundf_ctx): Likewise.
27487         (libc_feresetroundf_ctx): Likewise.
27488         (libc_feholdexcept_setround_ctx): Likewise.
27489         (libc_fesetenv_ctx): Likewise.
27490         (libc_feupdateenv_ctx): Likewise.
27491         (libc_feholdsetround_ctx): Likewise.
27492         (libc_feresetround_ctx): Likewise.
27493         (libc_feholdexcept_setroundl_ctx): Likewise.
27494         (libc_feupdateenvl_ctx): Likewise.
27495         (libc_feholdsetroundl_ctx): Likewise.
27496         (libc_feresetroundl_ctx): Likewise.
27497         [!__SSE2_MATH__] (libc_feholdsetround_53bit_ctx): Likewise.
27498         (libc_feresetround_53bit_ctx): Likewise.
27500 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
27502         * locale/iso-639.def: Convert to UTF-8.
27504 2013-06-11  Joseph Myers  <joseph@codesourcery.com>
27506         * sysdeps/generic/math-tests.h (EXCEPTION_TESTS_float): New macro.
27507         (EXCEPTION_TESTS_double): Likewise.
27508         (EXCEPTION_TESTS_long_double): Likewise.
27509         (EXCEPTION_TESTS): Likewise.
27510         * math/libm-test.inc (test_exceptions): Only test exceptions if
27511         EXCEPTION_TESTS (FLOAT).
27513 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
27515         * benchtests/Makefile (string-bench): Add strcpy_chk and
27516         stpcpy_chk.
27517         * benchtests/bench-stpcpy_chk-ifunc.c: New file.
27518         * benchtests/bench-stpcpy_chk.c: New file.
27519         * benchtests/bench-strcpy_chk-ifunc.c: New file.
27520         * benchtests/bench-strcpy_chk.c: New file.
27521         * debug/test-strcpy_chk.c (do_one_test): Remove HP_TIMING
27522         code.
27523         (do_test): Likewise.
27525 2013-06-11  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
27527         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platforms): Add ppc405,
27528         ppc440, ppc464, and ppc476, merging from ports/ dl-procinfo.c.
27529         * sysdeps/powerpc/dl-procinfo.h: Fix whitespace by correcting spaces
27530         with tabs where appropriate.
27531         [PPC_PLATFORM_PPC405]: Define new platform merging from ports/
27532         dl-procinfo.h.
27533         [PPC_PLATFORM_PPC440]: Likewise.
27534         [PPC_PLATFORM_PPC464]: Likewise.
27535         [PPC_PLATFORM_PPC476]: Likewise.
27536         (_dl_string_platform): Add support for detecting ppc405, ppc440,
27537         ppc464, and ppc476 platform strings merging from ports/
27538         dl-procinfo.h.
27540 2013-06-11  Andreas Schwab  <schwab@suse.de>
27542         [BZ #14991]
27543         * iconvdata/big5hkscs.c (big5hkscs_to_ucs, from_ucs4)
27544         (from_ucs4_idx): Regenerate.
27545         (MIN_NEEDED_FROM, MAX_NEEDED_FROM, MIN_NEEDED_TO): Remove macros.
27546         (FROM_LOOP_MIN_NEEDED_FROM, FROM_LOOP_MAX_NEEDED_FROM)
27547         (FROM_LOOP_MIN_NEEDED_TO, FROM_LOOP_MAX_NEEDED_TO)
27548         (TO_LOOP_MIN_NEEDED_FROM, TO_LOOP_MAX_NEEDED_FROM)
27549         (TO_LOOP_MIN_NEEDED_TO, TO_LOOP_MAX_NEEDED_TO, PREPARE_LOOP)
27550         (EXTRA_LOOP_ARGS, SAVE_RESET_STATE, EMIT_SHIFT_TO_INIT)
27551         (EXTRA_LOOP_DECLS, MAX_NEEDED_OUTPUT): New macros.
27552         (MIN_NEEDED_INPUT, MAX_NEEDED_INPUT, MIN_NEEDED_OUTPUT): Define
27553         from FROM_LOOP and TO_LOOP specific macros.
27554         (BODY): Handle combining characters.
27555         * iconvdata/BIG5HKSCS.irreversible: Update.
27556         * iconvdata/BIG5HKSCS.precomposed: New file.
27557         * iconvdata/testdata/BIG5HKSCS: Regenerate to cover all assigned
27558         characters.
27559         * iconvdata/testdata/BIG5HKSCS..UTF8: Update.
27561 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
27563         * include/sys/time.h: Fix indentation and add copyright header.
27565         * string/test-memccpy.c (do_one_test): Remove HP_TIMING code.
27566         (do_test): Likewise.
27567         * string/test-memchr.c (do_one_test): Likewise.
27568         (do_test): Likewise.
27569         * string/test-memcmp.c (do_one_test): Likewise.
27570         (do_test): Likewise.
27571         * string/test-memcpy.c (do_one_test): Likewise.
27572         (do_test): Likewise.
27573         * string/test-memmem.c (do_one_test): Likewise.
27574         (do_test): Likewise.
27575         (do_random_tests): Likewise.
27576         * string/test-memmove.c (do_one_test): Likewise.
27577         (do_test): Likewise.
27578         * string/test-memset.c (do_one_test): Likewise.
27579         (do_test): Likewise.
27580         * string/test-rawmemchr.c (do_one_test): Likewise.
27581         (do_test): Likewise.
27582         * string/test-strcasecmp.c (do_one_test): Likewise.
27583         (do_test): Likewise.
27584         * string/test-strcasestr.c (do_one_test): Likewise.
27585         (do_test): Likewise.
27586         * string/test-strcat.c (do_one_test): Likewise.
27587         (do_test): Likewise.
27588         * string/test-strchr.c (do_one_test): Likewise.
27589         (do_test): Likewise.
27590         * string/test-strcmp.c (do_one_test): Likewise.
27591         (do_test): Likewise.
27592         * string/test-strcpy.c (do_one_test): Likewise.
27593         (do_test): Likewise.
27594         * string/test-string.h: Likewise.
27595         (test_init): Likewise.
27596         * string/test-strlen.c (do_one_test): Likewise.
27597         (do_test): Likewise.
27598         * string/test-strncasecmp.c (do_one_test): Likewise.
27599         (do_test): Likewise.
27600         * string/test-strncat.c (do_one_test): Likewise.
27601         (do_test): Likewise.
27602         * string/test-strncmp.c (do_one_test): Likewise.
27603         (do_test_limit): Likewise.
27604         (do_test): Likewise.
27605         * string/test-strncpy.c (do_one_test): Likewise.
27606         (do_test): Likewise.
27607         * string/test-strnlen.c (do_one_test): Likewise.
27608         (do_test): Likewise.
27609         * string/test-strpbrk.c (do_one_test): Likewise.
27610         (do_test): Likewise.
27611         * string/test-strrchr.c (do_one_test): Likewise.
27612         (do_test): Likewise.
27613         * string/test-strspn.c (do_one_test): Likewise.
27614         (do_test): Likewise.
27615         * string/test-strstr.c (do_one_test): Likewise.
27616         (do_test): Likewise.
27618         * benchtests/Makefile (string-bench): Add string benchmarks.
27619         * benchtests/bench-bcopy-ifunc.c: New file.
27620         * benchtests/bench-bcopy.c: New file.
27621         * benchtests/bench-bzero-ifunc.c: New file.
27622         * benchtests/bench-bzero.c: New file.
27623         * benchtests/bench-memccpy-ifunc.c: New file.
27624         * benchtests/bench-memccpy.c: New file.
27625         * benchtests/bench-memchr-ifunc.c: New file.
27626         * benchtests/bench-memchr.c: New file.
27627         * benchtests/bench-memcmp-ifunc.c: New file.
27628         * benchtests/bench-memcmp.c: New file.
27629         * benchtests/bench-memmem-ifunc.c: New file.
27630         * benchtests/bench-memmem.c: New file.
27631         * benchtests/bench-memmove-ifunc.c: New file.
27632         * benchtests/bench-memmove.c: New file.
27633         * benchtests/bench-mempcpy-ifunc.c: New file.
27634         * benchtests/bench-mempcpy.c: New file.
27635         * benchtests/bench-memset-ifunc.c: New file.
27636         * benchtests/bench-memset.c: New file.
27637         * benchtests/bench-rawmemchr-ifunc.c: New file.
27638         * benchtests/bench-rawmemchr.c: New file.
27639         * benchtests/bench-stpcpy-ifunc.c: New file.
27640         * benchtests/bench-stpcpy.c: New file.
27641         * benchtests/bench-stpncpy-ifunc.c: New file.
27642         * benchtests/bench-stpncpy.c: New file.
27643         * benchtests/bench-strcasecmp-ifunc.c: New file.
27644         * benchtests/bench-strcasecmp.c: New file.
27645         * benchtests/bench-strcasestr-ifunc.c: New file.
27646         * benchtests/bench-strcasestr.c: New file.
27647         * benchtests/bench-strcat-ifunc.c: New file.
27648         * benchtests/bench-strcat.c: New file.
27649         * benchtests/bench-strchr-ifunc.c: New file.
27650         * benchtests/bench-strchr.c: New file.
27651         * benchtests/bench-strchrnul-ifunc.c: New file.
27652         * benchtests/bench-strchrnul.c: New file.
27653         * benchtests/bench-strcmp-ifunc.c: New file.
27654         * benchtests/bench-strcmp.c: New file.
27655         * benchtests/bench-strcpy-ifunc.c: New file.
27656         * benchtests/bench-strcpy.c: New file.
27657         * benchtests/bench-strcspn-ifunc.c: New file.
27658         * benchtests/bench-strcspn.c: New file.
27659         * benchtests/bench-strlen-ifunc.c: New file.
27660         * benchtests/bench-strlen.c: New file.
27661         * benchtests/bench-strncasecmp-ifunc.c: New file.
27662         * benchtests/bench-strncasecmp.c: New file.
27663         * benchtests/bench-strncat-ifunc.c: New file.
27664         * benchtests/bench-strncat.c: New file.
27665         * benchtests/bench-strncmp-ifunc.c: New file.
27666         * benchtests/bench-strncmp.c: New file.
27667         * benchtests/bench-strncpy-ifunc.c: New file.
27668         * benchtests/bench-strncpy.c: New file.
27669         * benchtests/bench-strnlen-ifunc.c: New file.
27670         * benchtests/bench-strnlen.c: New file.
27671         * benchtests/bench-strpbrk-ifunc.c: New file.
27672         * benchtests/bench-strpbrk.c: New file.
27673         * benchtests/bench-strrchr-ifunc.c: New file.
27674         * benchtests/bench-strrchr.c: New file.
27675         * benchtests/bench-strspn-ifunc.c: New file.
27676         * benchtests/bench-strspn.c: New file.
27677         * benchtests/bench-strstr-ifunc.c: New file.
27678         * benchtests/bench-strstr.c: New file.
27680         * benchtests/Makefile: Disable parallel execution of targets.
27681         (string-bench): Add memcpy.
27682         (benchset): New variable to store a list of benchmark sets.
27683         (bench-func): Renamed from bench.
27684         (bench-set): New target.
27685         (bench): Depend on bench-func and bench-set.
27686         * benchtests/README: Add section on benchmark sets.
27687         * benchtests/bench-memcpy-ifunc.c: New file.
27688         * benchtests/bench-memcpy.c: New file.
27689         * benchtests/bench-string.h: New file.
27691 2013-06-11  Andreas Schwab  <schwab@suse.de>
27693         [BZ #15577]
27694         * nscd/connections.c (nscd_run_worker): Always zero-terminate key.
27695         * nscd/netgroupcache.c (addgetnetgrentX): Properly handle absent
27696         values in the triple.
27697         * nscd/nscd_netgroup.c (__nscd_setnetgrent): Include zero
27698         terminator in the group key.
27700 2013-06-11  Andreas Jaeger  <aj@suse.de>
27702         * po/zh_TW.po: Update Chinese (traditional) translation from
27703         translation project.
27705 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
27707         * include/time.h (__clock_gettime): Add libc_hidden_proto.
27708         * rt/clock_getcpuclockid.c (clock_getcpuclockid): Rename to
27709         __clock_getcpuclockid.  Add weak_alias and libc_hidden_def.
27710         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
27711         (clock_getcpuclockid): Likewise.
27712         * rt/clock_getres.c (clock_getres): Rename to __clock_getres.
27713         Add weak_alias and libc_hidden_def.
27714         * sysdeps/posix/clock_getres.c (clock_getres): Likewise.
27715         * rt/clock_gettime.c (clock_gettime): Rename to
27716         __clock_gettime.  Add weak_alias and libc_hidden_def.
27717         * sysdeps/unix/clock_gettime.c (clock_gettime): Likewise.
27718         * rt/clock_nanosleep.c (clock_nanosleep): Rename to
27719         __clock_nanosleep.  Add weak_alias and libc_hidden_def.
27720         * sysdeps/unix/clock_nanosleep.c (clock_nanosleep): Likewise.
27721         * sysdeps/unix/sysv/linux/clock_nanosleep.c (clock_nanosleep):
27722         Likewise.
27723         * rt/clock_settime.c (clock_settime): Rename to
27724         __clock_settime.  Add weak_alias and libc_hidden_def.
27725         * sysdeps/unix/clock_settime.c (clock_settime): Likewise.
27727 2013-06-10  Joseph Myers  <joseph@codesourcery.com>
27729         * mach/err_boot.sub: Remove trailing whitespace.
27730         * mach/err_ipc.sub: Likewise.
27731         * mach/err_mach.sub: Likewise.
27733         * sysdeps/generic/math-tests.h (ROUNDING_TESTS_float): New macro.
27734         (ROUNDING_TESTS_double): Likewise.
27735         (ROUNDING_TESTS_long_double): Likewise.
27736         (ROUNDING_TESTS): Likewise.
27737         * math/libm-test.inc: Include <math-tests.h>.
27738         (IF_ROUND_INIT_FE_DOWNWARD): Use ROUNDING_TESTS.
27739         (IF_ROUND_INIT_FE_TONEAREST): Likewise.
27740         (IF_ROUND_INIT_FE_TOWARDZERO): Likewise.
27741         (IF_ROUND_INIT_FE_UPWARD): Likewise.
27743 2013-06-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
27745         * benchtests/Makefile (CPPFLAGS-nonlib): Append values instead
27746         of assigning.
27748 2013-06-08  Joseph Myers  <joseph@codesourcery.com>
27750         * sysdeps/gnu/errlist.awk: Do not generate space at end of
27751         otherwise empty TRANS lines.
27752         * sysdeps/gnu/errlist.c: Regenerated.
27754         * catgets/gencat.c (error_print): Use (void) in function
27755         definition.
27756         * crypt/crypt_util.c (__init_des): Likewise.
27757         * crypt/speeds.c (Stop): Likewise.
27758         (main): Likewise.
27759         * hurd/hurdmalloc.c (print_malloc_free_list): Likewise.
27760         * inet/ruserpass.c (token): Likewise.
27761         * intl/finddomain.c (_nl_finddomain_subfreeres): Likewise.
27762         * intl/localealias.c (extend_alias_table): Likewise.
27763         * intl/plural-exp.c (init_germanic_plural): Likewise.
27764         * libio/fcloseall.c (__fcloseall): Likewise.
27765         * libio/genops.c (_IO_flush_all): Likewise.
27766         (_IO_flush_all_linebuffered): Likewise.
27767         (_IO_cleanup): Likewise.
27768         (_IO_iter_begin): Likewise.
27769         (_IO_iter_end): Likewise.
27770         (_IO_list_lock): Likewise.
27771         (_IO_list_unlock): Likewise.
27772         (_IO_list_resetlock): Likewise.
27773         * libio/getchar.c (getchar): Likewise.
27774         * libio/getchar_u.c (getchar_unlocked): Likewise.
27775         * libio/getwchar.c (getwchar): Likewise.
27776         * libio/getwchar_u.c (getwchar_unlocked): Likewise.
27777         * libio/oldstdfiles.c (_IO_check_libio): Likewise.
27778         * login/getpt.c (__getpt): Likewise.
27779         * login/tst-utmp.c (main): Likewise.
27780         * malloc/hooks.c (__malloc_check_init): Likewise.
27781         * malloc/malloc.c (__malloc_stats): Likewise.
27782         * malloc/mtrace.c (tr_break): Likewise.
27783         (mtrace): Likewise.
27784         (muntrace): Likewise.
27785         * misc/fstab.c (endfsent): Likewise.
27786         * misc/getclktck.c (__getclktck): Likewise.
27787         * misc/getdtsz.c (__getdtablesize): Likewise.
27788         * misc/gethostid.c (gethostid): Likewise.
27789         * misc/getpagesize.c (__getpagesize): Likewise.
27790         * misc/getsysstats.c (__get_nprocs_conf): Likewise.
27791         (__get_nprocs): Likewise.
27792         (__get_phys_pages): Likewise.
27793         (__get_avphys_pages): Likewise.
27794         * misc/getttyent.c (getttyent): Likewise.
27795         (setttyent): Likewise.
27796         (endttyent): Likewise.
27797         * misc/getusershell.c (getusershell): Likewise.
27798         (endusershell): Likewise.
27799         (setusershell): Likewise.
27800         (initshells): Likewise.
27801         * misc/hsearch.c (__hdestroy): Likewise.
27802         * misc/sync.c (sync): Likewise.
27803         * misc/syslog.c (closelog_internal): Likewise.
27804         (closelog): Likewise.
27805         * misc/ttyslot.c (ttyslot): Likewise.
27806         * misc/vhangup.c (vhangup): Likewise.
27807         * posix/fork.c (__fork): Likewise.
27808         * posix/getegid.c (__getegid): Likewise.
27809         * posix/geteuid.c (__geteuid): Likewise.
27810         * posix/getgid.c (__getgid): Likewise.
27811         * posix/getpid.c (__getpid): Likewise.
27812         * posix/getppid.c (__getppid): Likewise.
27813         * posix/getuid.c (__getuid): Likewise.
27814         * posix/pause.c (pause): Likewise.
27815         * posix/setpgrp.c (setpgrp): Likewise.
27816         * posix/setsid.c (__setsid): Likewise.
27817         * posix/test-vfork.c (noop): Likewise.
27818         * resolv/gethnamaddr.c (_endhtent): Likewise.
27819         (_gethtent): Likewise.
27820         (ht_endhostent): Likewise.
27821         (gethostent): Likewise.
27822         (dns_service): Likewise.
27823         * stdlib/drand48.c (drand48): Likewise.
27824         * stdlib/lrand48.c (lrand48): Likewise.
27825         * stdlib/mrand48.c (mrand48): Likewise.
27826         * stdlib/rand.c (rand): Likewise.
27827         * stdlib/random.c (__random): Likewise.
27828         * stdlib/setenv.c (clearenv): Likewise.
27829         * sunrpc/clnt_tcp.c (clnttcp_abort): Likewise.
27830         * sunrpc/clnt_unix.c (clntunix_abort): Likewise.
27831         * sysdeps/mach/getpagesize.c (__getpagesize): Likewise.
27832         * sysdeps/mach/getsysstats.c (__get_nprocs_conf): Likewise.
27833         (__get_nprocs): Likewise.
27834         (__get_phys_pages): Likewise.
27835         (__get_avphys_pages): Likewise.
27836         * sysdeps/mach/hurd/dl-sysdep.c (__getpid): Likewise.
27837         * sysdeps/mach/hurd/getclktck.c (__getclktck): Likewise.
27838         * sysdeps/mach/hurd/getdtsz.c (__getdtablesize): Likewise.
27839         * sysdeps/mach/hurd/getegid.c (__getegid): Likewise.
27840         * sysdeps/mach/hurd/geteuid.c (__geteuid): Likewise.
27841         * sysdeps/mach/hurd/getgid.c (__getgid): Likewise.
27842         * sysdeps/mach/hurd/gethostid.c (gethostid): Likewise.
27843         * sysdeps/mach/hurd/getlogin.c (getlogin): Likewise.
27844         * sysdeps/mach/hurd/getpid.c (__getpid): Likewise.
27845         * sysdeps/mach/hurd/getppid.c (__getppid): Likewise.
27846         * sysdeps/mach/hurd/getuid.c (__getuid): Likewise.
27847         * sysdeps/mach/hurd/sync.c (sync): Likewise.
27848         * sysdeps/posix/clock.c (clock): Likewise.
27849         * sysdeps/unix/bsd/setsid.c (__setsid): Likewise.
27850         * sysdeps/unix/getpagesize.c (__getpagesize): Likewise.
27851         * sysdeps/unix/sysv/linux/getclktck.c (__getclktck): Likewise.
27852         * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Likewise.
27853         * sysdeps/unix/sysv/linux/getpagesize.c (__getpagesize): Likewise.
27854         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Likewise.
27855         (__get_nprocs_conf): Likewise.
27856         (__get_phys_pages): Likewise.
27857         (__get_avphys_pages): Likewise.
27858         * time/clock.c (clock): Likewise.
27859         * time/tzset.c (__tzname_max): Likewise.
27861 2013-06-07  Joseph Myers  <joseph@codesourcery.com>
27863         * bits/byteswap.h [__GNUC__ && !__GNUC_PREREQ (4, 3)]
27864         (__bswap_32): Do not use "register".
27865         * crypt/crypt.c (_ufc_doit_r): Likewise.
27866         * debug/stpcpy_chk.c (__stpcpy_chk): Likewise.
27867         * debug/wcscat_chk.c (__wcscat_chk): Likewise.
27868         * gmon/gmon.c (__monstartup): Likewise.
27869         * gmon/mcount.c (_MCOUNT_DECL(frompc, selfpc)): Likewise.
27870         * hurd/hurdmalloc.c (more_memory): Likewise.
27871         (malloc): Likewise.
27872         (free): Likewise.
27873         (realloc): Likewise.
27874         (malloc_fork_prepare): Likewise.
27875         (malloc_fork_parent): Likewise.
27876         (malloc_fork_child): Likewise.
27877         * include/rpc/auth_des.h (xdr_authdes_verf): Likewise.
27878         (_svcauth_des): Likewise.
27879         * inet/inet_lnaof.c (inet_lnaof): Likewise.
27880         * inet/inet_net.c (inet_network): Likewise.
27881         * inet/inet_netof.c (inet_netof): Likewise.
27882         * inet/rcmd.c (__validuser2_sa): Likewise.
27883         * io/fts.c (fts_open): Likewise.
27884         (fts_load): Likewise.
27885         (fts_close): Likewise.
27886         (fts_read): Likewise.
27887         (fts_children): Likewise.
27888         (fts_build): Likewise.
27889         (fts_stat): Likewise.
27890         (fts_sort): Likewise.
27891         (fts_alloc): Likewise.
27892         (fts_lfree): Likewise.
27893         * libio/fileops.c (_IO_new_file_xsputn): Likewise.
27894         (_IO_file_xsgetn): Likewise.
27895         (_IO_file_xsgetn_mmap): Likewise.
27896         * libio/iofopncook.c (_IO_cookie_read): Likewise.
27897         (_IO_cookie_write): Likewise.
27898         * libio/oldfileops.c (_IO_old_file_xsputn): Likewise.
27899         * libio/wfileops.c (_IO_wfile_xsputn): Likewise.
27900         * mach/msgserver.c (__mach_msg_server_timeout): Likewise.
27901         * malloc/obstack.c (_obstack_begin): Likewise.
27902         (_obstack_begin_1): Likewise.
27903         (_obstack_newchunk): Likewise.
27904         (_obstack_allocated_p): Likewise.
27905         (obstack_free): Likewise.
27906         (_obstack_memory_used): Likewise.
27907         * misc/getttyent.c (getttynam): Likewise.
27908         (getttyent): Likewise.
27909         (skip): Likewise.
27910         (value): Likewise.
27911         * misc/getusershell.c (initshells): Likewise.
27912         * misc/syslog.c (__vsyslog_chk): Likewise.
27913         * misc/ttyslot.c (ttyslot): Likewise.
27914         * nis/nis_hash.c (__nis_hash): Likewise.
27915         * posix/fnmatch_loop.c (FCT): Likewise.
27916         * posix/getconf.c (print_all): Likewise.
27917         (main): Likewise.
27918         * posix/getopt.c (exchange): Likewise.
27919         * posix/glob.c (globfree): Likewise.
27920         (prefix_array): Likewise.
27921         (__glob_pattern_type): Likewise.
27922         * resolv/arpa/nameser.h (NS_GET16): Likewise.
27923         (NS_GET32): Likewise.
27924         (NS_PUT16): Likewise.
27925         (NS_PUT32): Likewise.
27926         * resolv/gethnamaddr.c (getanswer): Likewise.
27927         (gethostbyname2): Likewise.
27928         (gethostbyaddr): Likewise.
27929         (_gethtent): Likewise.
27930         (_gethtbyname2): Likewise.
27931         (_gethtbyaddr): Likewise.
27932         * resolv/ns_print.c (dst_s_get_int16): Likewise.
27933         * resolv/nss_dns/dns-host.c (getanswer_r): Likewise.
27934         * resolv/res_init.c (__res_vinit): Likewise.
27935         (net_mask): Likewise.
27936         * resolv/res_mkquery.c (outchar): Likewise.
27937         (PRINT): Likewise.
27938         * stdio-common/printf_fp.c (outchar): Likewise.
27939         (PRINT): Likewise.
27940         * stdio-common/printf_fphex.c (outchar): Likewise.
27941         (PRINT): Likewise.
27942         * stdio-common/printf_size.c (outchar): Likewise.
27943         (PRINT): Likewise.
27944         * stdio-common/test_rdwr.c (main): Likewise.
27945         * stdio-common/tfformat.c (matches): Likewise.
27946         * stdio-common/vfprintf.c (outchar): Likewise.
27947         (printf_unknown): Likewise.
27948         (buffered_vfprintf): Likewise.
27949         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Likewise.
27950         * stdio-common/xbug.c (AppendToBuffer): Likewise.
27951         (ReadFile): Likewise.
27952         * stdlib/qsort.c (SWAP): Likewise.
27953         (_quicksort): Likewise.
27954         * stdlib/setenv.c (__add_to_environ): Likewise.
27955         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Likewise.
27956         * stdlib/strtol_l.c (__strtol_l): Likewise.
27957         * stdlib/tst-strtod.c (main): Likewise.
27958         * stdlib/tst-strtol.c (main): Likewise.
27959         * stdlib/tst-strtoll.c (main): Likewise.
27960         * string/bits/string2.h (__strcmp_cc): Likewise.
27961         (__strcmp_cg): Likewise.
27962         (__strcspn_c1): Likewise.
27963         (__strcspn_c2): Likewise.
27964         (__strcspn_c3): Likewise.
27965         (__strspn_c1): Likewise.
27966         (__strspn_c2): Likewise.
27967         (__strspn_c3): Likewise.
27968         (__strsep_1c): Likewise.
27969         (__strsep_2c): Likewise.
27970         (__strsep_3c): Likewise.
27971         * string/memccpy.c (__memccpy): Likewise.
27972         * string/stpcpy.c (__stpcpy): Likewise.
27973         * string/strcmp.c (strcmp): Likewise.
27974         * string/strrchr.c (strrchr): Likewise.
27975         * sysdeps/generic/sigset-cvt-mask.h (sigset_get_old_mask):
27976         Likewise.
27977         * sysdeps/mach/hurd/getcwd.c
27978         (_hurd_canonicalize_directory_name_internal): Likewise.
27979         * sysdeps/mach/i386/sysdep.h (SNARF_ARGS): Likewise.
27980         * sysdeps/powerpc/powerpc32/power6/wcschr.c (wcschr): Likewise.
27981         * sysdeps/powerpc/powerpc32/power6/wcsrchr.c (wcsrchr): Likewise.
27982         * sysdeps/x86/bits/byteswap-16.h [__GNUC__] (__bswap_16):
27983         Likewise, in both definitions.
27984         * sysdeps/x86/bits/byteswap.h (__bswap_32): Likewise, in multiple
27985         definitions.
27986         [__GNUC_PREREQ (2, 0) && !__GNUC_PREREQ (4, 3) && __WORDSIZE ==
27987         64] (__bswap_64): Likewise.
27988         * time/test_time.c (main): Likewise.
27989         * time/tzfile.c (__tzfile_read): Likewise.
27990         (__tzfile_compute): Likewise.
27991         * time/tzset.c (__tzset_parse_tz): Likewise.
27992         (tzset_internal): Likewise.
27993         (compute_change): Likewise.
27994         * wcsmbs/wcscat.c (__wcscat): Likewise.
27995         * wcsmbs/wcschr.c (wcschr): Likewise.
27996         * wcsmbs/wcschrnul.c (__wcschrnul): Likewise.
27997         * wcsmbs/wcscspn.c (wcscspn): Likewise.
27998         * wcsmbs/wcspbrk.c (wcspbrk): Likewise.
27999         * wcsmbs/wcsrchr.c (wcsrchr): Likewise.
28000         * wcsmbs/wcsspn.c (wcsspn): Likewise.
28001         * wcsmbs/wcsstr.c (wcsstr): Likewise.
28002         * wcsmbs/wmemchr.c (wmemchr): Likewise.
28003         * wcsmbs/wmemcmp.c (WMEMCMP): Likewise.
28004         * wcsmbs/wmemset.c (wmemset): Likewise.
28006 2013-06-06  Joseph Myers  <joseph@codesourcery.com>
28008         * scripts/config.guess: Update to version 2013-05-16.
28009         * scripts/config.sub: Update to version 2013-04-24.
28010         * scripts/install-sh: Update to version 2011-11-20.07.
28011         * scripts/mkinstalldirs: Update to version 2009-04-28.21.
28012         * scripts/move-if-change: Update to version 2012-01-06 07:23.
28014 2013-06-06   Ondřej Bílka  <neleai@seznam.cz>
28016         * debug/fgetws_u_chk.c: Fix leading whitespaces.
28017         * elf/sln.c: Likewise.
28018         * hurd/hurd/ioctl.h: Likewise.
28019         * hurd/hurdmalloc.c: Likewise.
28020         * hurd/xattr.c: Likewise.
28021         * include/shlib-compat.h: Likewise.
28022         * inet/ruserpass.c: Likewise.
28023         * libio/iofgets_u.c: Likewise.
28024         * libio/iofgetws_u.c: Likewise.
28025         * locale/programs/ld-identification.c: Likewise.
28026         * locale/programs/ld-time.c: Likewise.
28027         * mach/msg-destroy.c: Likewise.
28028         * nss/nss_files/files-netgrp.c: Likewise.
28029         * resolv/res_data.c: Likewise.
28030         * soft-fp/op-1.h: Likewise.
28031         * soft-fp/op-2.h: Likewise.
28032         * soft-fp/op-4.h: Likewise.
28033         * soft-fp/op-common.h: Likewise.
28034         * stdio-common/printf_fphex.c: Likewise.
28035         * stdlib/strtod_l.c: Likewise.
28036         * sunrpc/rpc/clnt.h: Likewise.
28037         * sysdeps/generic/framestate.c: Likewise.
28038         * sysdeps/i386/bsd-_setjmp.S: Likewise.
28039         * sysdeps/i386/bsd-setjmp.S: Likewise.
28040         * sysdeps/i386/__longjmp.S: Likewise.
28041         * sysdeps/i386/setjmp.S: Likewise.
28042         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
28043         * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
28044         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
28045         * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
28046         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
28047         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Likewise.
28048         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
28049         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
28050         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
28051         * sysdeps/ieee754/ldbl-128/ldbl2mpn.c: Likewise.
28052         * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c: Likewise.
28053         * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
28054         * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
28055         * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
28056         * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
28057         * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
28058         * sysdeps/ieee754/ldbl-128/s_truncl.c: Likewise.
28059         * sysdeps/ieee754/ldbl-96/ldbl2mpn.c: Likewise.
28060         * sysdeps/ieee754/support.c: Likewise.
28061         * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
28062         * sysdeps/powerpc/powerpc32/lshift.S: Likewise.
28063         * sysdeps/sparc/sparc32/__longjmp.S: Likewise.
28064         * sysdeps/sparc/sparc64/soft-fp/qp_cmp.c: Likewise.
28065         * sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c: Likewise.
28066         * sysdeps/sparc/sparc64/soft-fp/qp_feq.c: Likewise.
28067         * sysdeps/sparc/sparc64/soft-fp/qp_fge.c: Likewise.
28068         * sysdeps/sparc/sparc64/soft-fp/qp_fgt.c: Likewise.
28069         * sysdeps/sparc/sparc64/soft-fp/qp_fle.c: Likewise.
28070         * sysdeps/sparc/sparc64/soft-fp/qp_flt.c: Likewise.
28071         * sysdeps/sparc/sparc64/soft-fp/qp_fne.c: Likewise.
28072         * sysdeps/sparc/sparc64/soft-fp/qp_mul.c: Likewise.
28073         * sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
28074         * sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c: Likewise.
28075         * sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c: Likewise.
28076         * sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
28077         * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
28078         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
28080 2013-06-05  Ondřej Bílka  <neleai@seznam.cz>
28082         * posix/transbug.c: Remove executable mode.
28084 2013-06-05  Joseph Myers  <joseph@codesourcery.com>
28086         * crypt/speeds.c: Remove trailing whitespace.
28087         * dlfcn/default.c: Likewise.
28088         * elf/ifuncdep2.c: Likewise.
28089         * elf/ifuncmain1.c: Likewise.
28090         * elf/ifuncmain1vis.c: Likewise.
28091         * elf/testobj.h: Likewise.
28092         * elf/tst-stackguard1.c: Likewise.
28093         * gmon/sys/gmon.h: Likewise.
28094         * hurd/hurdmsg.c: Likewise.
28095         * hurd/new-fd.c: Likewise.
28096         * hurd/ports-get.c: Likewise.
28097         * iconvdata/ibm1008_420.c: Likewise.
28098         * inet/tst-getni1.c: Likewise.
28099         * inet/tst-getni2.c: Likewise.
28100         * libio/ioungetc.c: Likewise.
28101         * libio/wfiledoalloc.c: Likewise.
28102         * manual/libm-err-tab.pl: Likewise.
28103         * math/w_dremf.c: Likewise.
28104         * misc/ftruncate.c: Likewise.
28105         * posix/bug-glob2.c: Likewise.
28106         * posix/tst-pcre.c: Likewise.
28107         * posix/wait4.c: Likewise.
28108         * resolv/README: Likewise.
28109         * resolv/res_debug.h: Likewise.
28110         * resolv/tst-inet_ntop.c: Likewise.
28111         * setjmp/bug269-setjmp.c: Likewise.
28112         * soft-fp/extended.h: Likewise.
28113         * soft-fp/op-1.h: Likewise.
28114         * soft-fp/op-2.h: Likewise.
28115         * soft-fp/op-4.h: Likewise.
28116         * soft-fp/op-8.h: Likewise.
28117         * soft-fp/testit.c: Likewise.
28118         * stdio-common/bug16.c: Likewise.
28119         * stdlib/random.c: Likewise.
28120         * sunrpc/rpcsvc/rquota.x: Likewise.
28121         * sysdeps/ieee754/dbl-64/powtwo.tbl: Likewise.
28122         * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
28123         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
28124         * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
28125         * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
28126         * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
28127         * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
28128         * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
28129         * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
28130         * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
28131         * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
28132         * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c: Likewise.
28133         * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
28134         * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
28135         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
28136         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
28137         * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
28138         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
28139         * sysdeps/ieee754/ldbl-128/s_remquol.c: Likewise.
28140         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
28141         * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
28142         * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
28143         * sysdeps/ieee754/ldbl-128/t_sincosl.c: Likewise.
28144         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c: Likewise.
28145         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: Likewise.
28146         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: Likewise.
28147         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
28148         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Likewise.
28149         * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
28150         * sysdeps/ieee754/s_lib_version.c: Likewise.
28151         * sysdeps/mach/hurd/check_fds.c: Likewise.
28152         * sysdeps/mach/hurd/getsockname.c: Likewise.
28153         * sysdeps/mach/hurd/net/if_ppp.h: Likewise.
28154         * sysdeps/mach/hurd/recvfrom.c: Likewise.
28155         * sysdeps/powerpc/bits/link.h: Likewise.
28156         * sysdeps/powerpc/dl-procinfo.c: Likewise.
28157         * sysdeps/powerpc/fpu/feholdexcpt.c: Likewise.
28158         * sysdeps/powerpc/fpu/fenv_const.c: Likewise.
28159         * sysdeps/powerpc/fpu/fesetenv.c: Likewise.
28160         * sysdeps/powerpc/fpu/feupdateenv.c: Likewise.
28161         * sysdeps/powerpc/fpu/s_rintf.c: Likewise.
28162         * sysdeps/powerpc/fpu/t_sqrt.c: Likewise.
28163         * sysdeps/powerpc/powerpc32/bits/atomic.h: Likewise.
28164         * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Likewise.
28165         * sysdeps/powerpc/powerpc32/fpu/s_floorf.S: Likewise.
28166         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: Likewise.
28167         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Likewise.
28168         * sysdeps/powerpc/powerpc32/fpu/s_round.S: Likewise.
28169         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Likewise.
28170         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Likewise.
28171         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: Likewise.
28172         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: Likewise.
28173         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: Likewise.
28174         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Likewise.
28175         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
28176         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
28177         * sysdeps/powerpc/powerpc32/power4/hp-timing.c: Likewise.
28178         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
28179         * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise.
28180         * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Likewise.
28181         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Likewise.
28182         * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Likewise.
28183         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
28184         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
28185         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: Likewise.
28186         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: Likewise.
28187         * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Likewise.
28188         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
28189         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
28190         * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: Likewise.
28191         * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Likewise.
28192         * sysdeps/powerpc/powerpc64/fpu/s_floor.S: Likewise.
28193         * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
28194         * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: Likewise.
28195         * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Likewise.
28196         * sysdeps/powerpc/powerpc64/fpu/s_llrintf.S: Likewise.
28197         * sysdeps/powerpc/powerpc64/fpu/s_llround.S: Likewise.
28198         * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S: Likewise.
28199         * sysdeps/powerpc/powerpc64/fpu/s_round.S: Likewise.
28200         * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
28201         * sysdeps/powerpc/powerpc64/fpu/s_roundl.S: Likewise.
28202         * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Likewise.
28203         * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.
28204         * sysdeps/powerpc/powerpc64/fpu/s_truncl.S: Likewise.
28205         * sysdeps/powerpc/powerpc64/hp-timing.c: Likewise.
28206         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
28207         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
28208         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
28209         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
28210         * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: Likewise.
28211         * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: Likewise.
28212         * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: Likewise.
28213         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
28214         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Likewise.
28215         * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: Likewise.
28216         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: Likewise.
28217         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: Likewise.
28218         * sysdeps/powerpc/powerpc64/strlen.S: Likewise.
28219         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
28220         * sysdeps/powerpc/sysdep.h: Likewise.
28221         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
28222         * sysdeps/s390/s390-64/sub_n.S: Likewise.
28223         * sysdeps/sh/dl-trampoline.S: Likewise.
28224         * sysdeps/sh/memset.S: Likewise.
28225         * sysdeps/sh/sh4/fpu/fclrexcpt.c: Likewise.
28226         * sysdeps/sh/strlen.S: Likewise.
28227         * sysdeps/sparc/sparc32/dl-trampoline.S: Likewise.
28228         * sysdeps/sparc/sparc32/dotmul.S: Likewise.
28229         * sysdeps/sparc/sparc32/memcpy.S: Likewise.
28230         * sysdeps/sparc/sparc32/rem.S: Likewise.
28231         * sysdeps/sparc/sparc32/sdiv.S: Likewise.
28232         * sysdeps/sparc/sparc32/soft-fp/q_neg.c: Likewise.
28233         * sysdeps/sparc/sparc32/strchr.S: Likewise.
28234         * sysdeps/sparc/sparc32/udiv.S: Likewise.
28235         * sysdeps/sparc/sparc32/urem.S: Likewise.
28236         * sysdeps/sparc/sparc64/add_n.S: Likewise.
28237         * sysdeps/sparc/sparc64/memcpy.S: Likewise.
28238         * sysdeps/sparc/sparc64/rawmemchr.S: Likewise.
28239         * sysdeps/sparc/sparc64/soft-fp/s_frexpl.c: Likewise.
28240         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h: Likewise.
28241         * sysdeps/sparc/sparc64/stpncpy.S: Likewise.
28242         * sysdeps/sparc/sparc64/strncmp.S: Likewise.
28243         * sysdeps/sparc/sparc64/strncpy.S: Likewise.
28244         * sysdeps/unix/bsd/times.c: Likewise.
28245         * sysdeps/unix/sysv/linux/a.out.h: Likewise.
28246         * sysdeps/unix/sysv/linux/net/if_ppp.h: Likewise.
28247         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
28248         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
28249         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Likewise.
28250         * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: Likewise.
28251         * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Likewise.
28252         * sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Likewise.
28253         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Likewise.
28254         * sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c: Likewise.
28255         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Likewise.
28256         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Likewise.
28257         * sysdeps/unix/sysv/linux/s390/s390-64/mmap.S: Likewise.
28258         * sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h: Likewise.
28259         * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
28260         * sysdeps/unix/sysv/linux/s390/s390-64/socket.S: Likewise.
28261         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
28262         * sysdeps/unix/sysv/linux/s390/s390-64/syscall.S: Likewise.
28263         * sysdeps/unix/sysv/linux/scsi/scsi_ioctl.h: Likewise.
28264         * sysdeps/unix/sysv/linux/sh/brk.c: Likewise.
28265         * sysdeps/unix/sysv/linux/sh/clone.S: Likewise.
28266         * sysdeps/unix/sysv/linux/sh/sh3/getcontext.S: Likewise.
28267         * sysdeps/unix/sysv/linux/sh/sh3/register-dump.h: Likewise.
28268         * sysdeps/unix/sysv/linux/sh/sh3/setcontext.S: Likewise.
28269         * sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S: Likewise.
28270         * sysdeps/unix/sysv/linux/sh/vfork.S: Likewise.
28271         * sysdeps/unix/sysv/linux/sparc/a.out.h: Likewise.
28272         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
28273         * sysdeps/unix/sysv/linux/sys/personality.h: Likewise.
28274         * sysdeps/x86_64/fpu/s_ceill.S: Likewise.
28275         * sysdeps/x86_64/fpu/s_llrintl.S: Likewise.
28276         * sysdeps/x86_64/strcspn.S: Likewise.
28278 2013-06-05  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
28280         * locale/C-translit.h: Revert #include <stdint.h> because this is a
28281         generated file.  Regenerate properly from gen-translit.pl.
28282         * locale/gen-translit.pl: Add #include <stdint.h>.  This generates
28283         locale/C-translit.h.
28285 2013-06-05  Andreas Schwab  <schwab@suse.de>
28287         [BZ #15100]
28288         * time/strptime_l.c (__strptime_internal): Count Sunday in a %W
28289         week as 6 instead of -1.
28290         * time/tst-strptime.c (day_tests): Add test case.
28292 2013-06-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
28294         * sysdeps/generic/math_private.h
28295         (libc_feholdexcept_setround_53bit): Replace with
28296         libc_feholdsetround_53bit.
28297         (libc_feupdateenv_53bit): Replace with
28298         libc_feresetround_53bit.
28299         (SET_RESTORE_ROUND_53BIT): Adjust.
28301 2013-06-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
28303         * string/test-strchrnul.c: Add copyright header.
28305         * posix/tst-getaddrinfo4.c: Increase test timeout.
28307 2013-06-03  Carlos O'Donell  <carlos@redhat.com>
28309         [BZ #15536]
28310         * math/libm-test.inc (MAX_EXP): Remove
28311         (MIN_EXP): Define.
28312         (ulp): Use MIN_EXP - MANT_DIG.
28313         (check_ulp): Verify subnormal ulps. Only allow a range of +/- 1 ulp.
28315 2013-05-31  Carlos O'Donell  <carlos@redhat.com>
28317         * po/be.po: Revert last change.
28318         * po/zh_CN.po: Likewise.
28319         * po/header.pot: Likewise.
28321 2013-05-31  Joseph Myers  <joseph@codesourcery.com>
28323         * Makefile ($(common-objpfx)linkobj/libc.so): Define
28324         link-libc-deps to empty as target-specific variable.
28325         * Makerules (link-libc-args): New variable.
28326         (libc-for-link): Likewise.
28327         (link-libc-deps): Likewise.
28328         (lib%.so): Depend on $(link-libc-deps).  Link with
28329         $(link-libc-args).
28330         (build-module): Link with $(link-libc-args).
28331         (build-module-asneeded): Likewise.
28332         (build-module-helper-objlist): Filter out $(link-libc-deps) from
28333         list of objects.
28334         ($(common-objpfx)libc.so): Define link-libc-deps to empty as
28335         target-specific variable.
28336         ($(extra-modules-build:%=$(objpfx)%.so)): Depend on
28337         $(link-libc-deps) instead of libc.so and libc_nonshared.a.
28338         * crypt/Makefile ($(objpfx)libcrypt.so): Remove dependencies on
28339         libc.
28340         * debug/Makefile ($(objpfx)libSegFault.so): Remove dependencies on
28341         libc and ld.so.
28342         ($(objpfx)libpcprofile.so): Likewise.
28343         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Remove ld.so and
28344         libc_nonshared.a.
28345         ($(objpfx)libdl.so): Remove dependencies on libc and ld.so.
28346         * hesiod/Makefile ($(objpfx)libnss_hesiod.so): Likewise.
28347         * iconvdata/extra-module.mk ($(objpfx)$(mod).so): Depend on
28348         $(link-libc-deps).
28349         ($(objpfx)$(mod).so): Remove dependencies on libc and ld.so.
28350         * locale/Makefile ($(objpfx)libBrokenLocale.so): Likewise.
28351         * login/Makefile ($(objpfx)libutil.so): Likewise.
28352         * malloc/Makefile ($(objpfx)libmemusage.so): Likewise.
28353         * math/Makefile ($(objpfx)libm.so): Likewise.
28354         * nis/Makefile ($(services:%=$(objpfx)libnss_%.so)
28355         $(objpfx)libnsl.so): Define libc-for-link as target-specific
28356         variable instead of depending directly on libc.
28357         * nss/Makefile ($(services:%=$(objpfx)libnss_%.so)): Likewise.
28358         ($(objpfx)/libnss_test1.so): Change dependencies on libc to
28359         $(link-libc-deps).
28360         * resolv/Makefile ($(objpfx)libresolv.so): Remove dependencies on
28361         libc.
28362         [$(have-ssp) = yes] (LDLIBS-resolv.so): Remove variable.
28363         ($(objpfx)libnss_dns.so): Remove dependencies on libc.
28364         ($(objpfx)libanl.so): Likewise.
28365         * rt/Makefile ($(objpfx)librt.so): Remove dependencies on libc and
28366         ld.so.
28367         * stdlib/Makefile ($(objpfx)tst-putenvmod.so): Depend on
28368         $(link-libc-deps).
28369         * sysdeps/i386/fpu/Makefile: Remove file.
28370         * sysdeps/powerpc/fpu/Makefile [$(subdir) = math]
28371         ($(objpfx)libm.so): Remove dependency on ld.so.
28373 2013-05-30  Patsy Franklin  <pfrankli@redhat.com>
28375         [BZ # 15553]
28376         * nis/yp_xdr.c (XDRMAXNAME): Define.
28377         (XDRMAXRECORD): Define.
28378         (xdr_domainname): Use XDRMAXNAME.
28379         (xdr_mapname): Likewise.
28380         (xdr_peername): Likewise.
28381         (xdr_keydat): Use XDRMAXRECORD.
28382         (xdr_valdat): Likewise.
28384 2013-05-30  Jeff Law  <law@redhat.com>
28386         [BZ #14256]
28387         * manual/errno.texi (ESTALE): Update to account for more than
28388         just NFS file systems.
28389         * sysdeps/gnu/errlist.c: Regenerated.
28391 2013-05-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
28393         [BZ #15465]
28394         * elf/Makefile (tests): Add tst-null-argv.
28395         (modules-names):  Add tst-null-argv-lib.
28396         ($(objpfx)tst-null-argv): Depend on tst-null-argv-lib.so.
28397         (tst-null-argv-ENV): Set environment for tst-null-argv.
28398         * sysdeps/generic/ldsodefs.h (DSO_FILENAME): New macro.
28399         (RTLD_PROGNAME): New macro.
28400         * elf/tst-null-argv.c: New test case.
28401         * elf/tst-null-argv-lib.c: Library for test case.
28402         * elf/dl-conflict.c (_dl_resolve_conflicts): Use DSO_FILENAME.
28403         * elf/dl-deps.c (_dl_map_object_deps): Likewise.
28404         * elf/dl-error.c (_dl_signal_error): Use RTLD_PROGNAME.
28405         * elf/dl-fini.c (_dl_fini): Use DSO_FILENAME.
28406         * elf/dl-init.c (call_init): Likewise.
28407         (_dl_init): Likewise.
28408         * elf/dl-load.c (print_search_path): Likewise.
28409         (_dl_map_object): Likewise.
28410         * elf/dl-lookup.c (do_lookup_x): Likewise.
28411         (add_dependency): Likewise.
28412         (_dl_lookup_symbol_x): Likewise.
28413         (_dl_debug_bindings): Likewise.
28414         * elf/dl-open.c (_dl_show_scope): Likewise.
28415         * elf/dl-reloc.c (_dl_relocate_object): Likewise.
28416         * elf/dl-version.c (match_symbol): Likewise.
28417         (_dl_check_map_versions): Likewise.
28418         * elf/rtld.c (dl_main): Likewise.
28419         (print_unresolved): Use RTLD_PROGNAME.
28420         (print_missing_version): Likewise.
28421         * sysdeps/i386/dl-machine.h (elf_machine_rel): Likewise.
28422         (elf_machine_rela): Likewise.
28423         * sysdeps/powerpc/powerpc32/dl-machine.c
28424         (__process_machine_rela): Likewise.
28425         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
28426         Likewise.
28427         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela):
28428         Likewise.
28429         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela):
28430         Likewise.
28431         * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
28432         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela):
28433         Likewise.
28434         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
28435         Likewise.
28436         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
28438 2013-05-28  Carlos O'Donell  <carlos@redhat.com>
28440         * po/be.po: Add descriptive title.
28441         * po/zh_CN.po: Likewise.
28442         * po/header.pot: Likewise.
28444 2013-05-28  Mike Frysinger  <vapier@gentoo.org>
28446         * locale/programs/locarchive.c (create_archive): Inlucde fname in
28447         error message.
28448         (enlarge_archive): Likewise.
28450 2013-05-28  Ben North  <ben@redfrontdoor.org>
28452         * manual/arith.texi (frexp): It is the magnitude of the return
28453         value which lies in [0.5, 1), not the return value itself.
28455 2013-05-28  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
28457         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
28459 2013-05-26  Thomas Schwinge  <thomas@codesourcery.com>
28461         * stdio-common/bug26.c (main): Correct fscanf template.
28463         * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start:go): Don't
28464         declare _dl_skip_args.
28466         * sysdeps/mach/hurd/i386/init-first.c (_dl_non_dynamic_init):
28467         Don't declare.
28469         * manual/platform.texi: Add missing @end deftypefun.
28471 2013-05-24  Joseph Myers  <joseph@codesourcery.com>
28473         [BZ #15529]
28474         * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Set high
28475         bit of mantissa of 2^16382.
28476         * math/libm-test.inc (hypot_test_data): Add more tests.
28478         * math/libm-test.inc: Add drem and pow10 to list of tested
28479         functions.
28480         (pow10_test): New function.
28481         (drem_test): Likewise.
28482         (drem_test_tonearest): Likewise.
28483         (drem_test_towardzero): Likewise.
28484         (drem_test_downward): Likewise.
28485         (drem_test_upward): Likewise.
28486         (main): Call the new functions.
28488         * math/libm-test.inc (finite_test_data): Remove.
28489         (finite_test): Run tests from isfinite_test_data.
28490         (gamma_test_data): Remove.
28491         (gamma_test): Run tests from lgamma_test_data.
28492         * sysdeps/i386/fpu/libm-test-ulps: Update.
28493         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28495 2013-05-24  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
28497         * manual/platform.texi: Add PowerPC PPR function set documentation.
28498         * sysdeps/powerpc/sys/platform/ppc.h: Add PowerPC PPR set function
28499         implementation.
28501 2013-05-24  Carlos O'Donell  <carlos@redhat.com>
28503         * math/libm-test.inc (MAX_EXP): Define.
28504         (ULPDIFF): Define.
28505         (ulp): New function.
28506         (check_float_internal): Use ULPDIFF.
28507         (cpow_test): Disable failing test.
28508         (check_ulp): Test ulp() implemetnation.
28509         (main): Call check_ulp before starting tests.
28511 2013-05-24  Joseph Myers  <joseph@codesourcery.com>
28513         * math/gen-libm-test.pl (generate_testfile): Do not handle
28514         START_DATA and END_DATA.
28515         * math/libm-test.inc (acos_test_data): Do not use START_DATA and
28516         END_DATA.
28517         (acos_tonearest_test_data): Likewise.
28518         (acos_towardzero_test_data): Likewise.
28519         (acos_downward_test_data): Likewise.
28520         (acos_upward_test_data): Likewise.
28521         (acosh_test_data): Likewise.
28522         (asin_test_data): Likewise.
28523         (asin_tonearest_test_data): Likewise.
28524         (asin_towardzero_test_data): Likewise.
28525         (asin_downward_test_data): Likewise.
28526         (asin_upward_test_data): Likewise.
28527         (asinh_test_data): Likewise.
28528         (atan_test_data): Likewise.
28529         (atanh_test_data): Likewise.
28530         (atan2_test_data): Likewise.
28531         (cabs_test_data): Likewise.
28532         (cacos_test_data): Likewise.
28533         (cacosh_test_data): Likewise.
28534         (carg_test_data): Likewise.
28535         (casin_test_data): Likewise.
28536         (casinh_test_data): Likewise.
28537         (catan_test_data): Likewise.
28538         (catanh_test_data): Likewise.
28539         (cbrt_test_data): Likewise.
28540         (ccos_test_data): Likewise.
28541         (ccosh_test_data): Likewise.
28542         (ceil_test_data): Likewise.
28543         (cexp_test_data): Likewise.
28544         (cimag_test_data): Likewise.
28545         (clog_test_data): Likewise.
28546         (clog10_test_data): Likewise.
28547         (conj_test_data): Likewise.
28548         (copysign_test_data): Likewise.
28549         (cos_test_data): Likewise.
28550         (cos_tonearest_test_data): Likewise.
28551         (cos_towardzero_test_data): Likewise.
28552         (cos_downward_test_data): Likewise.
28553         (cos_upward_test_data): Likewise.
28554         (cosh_test_data): Likewise.
28555         (cosh_tonearest_test_data): Likewise.
28556         (cosh_towardzero_test_data): Likewise.
28557         (cosh_downward_test_data): Likewise.
28558         (cosh_upward_test_data): Likewise.
28559         (cpow_test_data): Likewise.
28560         (cproj_test_data): Likewise.
28561         (creal_test_data): Likewise.
28562         (csin_test_data): Likewise.
28563         (csinh_test_data): Likewise.
28564         (csqrt_test_data): Likewise.
28565         (ctan_test_data): Likewise.
28566         (ctan_tonearest_test_data): Likewise.
28567         (ctan_towardzero_test_data): Likewise.
28568         (ctan_downward_test_data): Likewise.
28569         (ctan_upward_test_data): Likewise.
28570         (ctanh_test_data): Likewise.
28571         (ctanh_tonearest_test_data): Likewise.
28572         (ctanh_towardzero_test_data): Likewise.
28573         (ctanh_downward_test_data): Likewise.
28574         (ctanh_upward_test_data): Likewise.
28575         (erf_test_data): Likewise.
28576         (erfc_test_data): Likewise.
28577         (exp_test_data): Likewise.
28578         (exp_tonearest_test_data): Likewise.
28579         (exp_towardzero_test_data): Likewise.
28580         (exp_downward_test_data): Likewise.
28581         (exp_upward_test_data): Likewise.
28582         (exp10_test_data): Likewise.
28583         (exp2_test_data): Likewise.
28584         (expm1_test_data): Likewise.
28585         (fabs_test_data): Likewise.
28586         (fdim_test_data): Likewise.
28587         (finite_test_data): Likewise.
28588         (floor_test_data): Likewise.
28589         (fma_test_data): Likewise.
28590         (fma_towardzero_test_data): Likewise.
28591         (fma_downward_test_data): Likewise.
28592         (fma_upward_test_data): Likewise.
28593         (fmax_test_data): Likewise.
28594         (fmin_test_data): Likewise.
28595         (fmod_test_data): Likewise.
28596         (fpclassify_test_data): Likewise.
28597         (frexp_test_data): Likewise.
28598         (gamma_test_data): Likewise.
28599         (hypot_test_data): Likewise.
28600         (ilogb_test_data): Likewise.
28601         (isfinite_test_data): Likewise.
28602         (isgreater_test_data): Likewise.
28603         (isgreaterequal_test_data): Likewise.
28604         (isinf_test_data): Likewise.
28605         (isless_test_data): Likewise.
28606         (islessequal_test_data): Likewise.
28607         (islessgreater_test_data): Likewise.
28608         (isnan_test_data): Likewise.
28609         (isnormal_test_data): Likewise.
28610         (issignaling_test_data): Likewise.
28611         (isunordered_test_data): Likewise.
28612         (j0_test_data): Likewise.
28613         (j1_test_data): Likewise.
28614         (jn_test_data): Likewise.
28615         (ldexp_test_data): Likewise.
28616         (lgamma_test_data): Likewise.
28617         (lrint_test_data): Likewise.
28618         (lrint_tonearest_test_data): Likewise.
28619         (lrint_towardzero_test_data): Likewise.
28620         (lrint_downward_test_data): Likewise.
28621         (lrint_upward_test_data): Likewise.
28622         (llrint_test_data): Likewise.
28623         (llrint_tonearest_test_data): Likewise.
28624         (llrint_towardzero_test_data): Likewise.
28625         (llrint_downward_test_data): Likewise.
28626         (llrint_upward_test_data): Likewise.
28627         (log_test_data): Likewise.
28628         (log10_test_data): Likewise.
28629         (log1p_test_data): Likewise.
28630         (log2_test_data): Likewise.
28631         (logb_test_data): Likewise.
28632         (logb_downward_test_data): Likewise.
28633         (lround_test_data): Likewise.
28634         (llround_test_data): Likewise.
28635         (modf_test_data): Likewise.
28636         (nearbyint_test_data): Likewise.
28637         (nextafter_test_data): Likewise.
28638         (nexttoward_test_data): Likewise.
28639         (pow_test_data): Likewise.
28640         (pow_tonearest_test_data): Likewise.
28641         (pow_towardzero_test_data): Likewise.
28642         (pow_downward_test_data): Likewise.
28643         (pow_upward_test_data): Likewise.
28644         (remainder_test_data): Likewise.
28645         (remainder_tonearest_test_data): Likewise.
28646         (remainder_towardzero_test_data): Likewise.
28647         (remainder_downward_test_data): Likewise.
28648         (remainder_upward_test_data): Likewise.
28649         (remquo_test_data): Likewise.
28650         (rint_test_data): Likewise.
28651         (rint_tonearest_test_data): Likewise.
28652         (rint_towardzero_test_data): Likewise.
28653         (rint_downward_test_data): Likewise.
28654         (rint_upward_test_data): Likewise.
28655         (round_test_data): Likewise.
28656         (scalb_test_data): Likewise.
28657         (scalbn_test_data): Likewise.
28658         (scalbln_test_data): Likewise.
28659         (signbit_test_data): Likewise.
28660         (sin_test_data): Likewise.
28661         (sin_tonearest_test_data): Likewise.
28662         (sin_towardzero_test_data): Likewise.
28663         (sin_downward_test_data): Likewise.
28664         (sin_upward_test_data): Likewise.
28665         (sincos_test_data): Likewise.
28666         (sinh_test_data): Likewise.
28667         (sinh_tonearest_test_data): Likewise.
28668         (sinh_towardzero_test_data): Likewise.
28669         (sinh_downward_test_data): Likewise.
28670         (sinh_upward_test_data): Likewise.
28671         (sqrt_test_data): Likewise.
28672         (tan_test_data): Likewise.
28673         (tan_tonearest_test_data): Likewise.
28674         (tan_towardzero_test_data): Likewise.
28675         (tan_downward_test_data): Likewise.
28676         (tan_upward_test_data): Likewise.
28677         (tanh_test_data): Likewise.
28678         (tgamma_test_data): Likewise.
28679         (trunc_test_data): Likewise.
28680         (y0_test_data): Likewise.
28681         (y1_test_data): Likewise.
28682         (yn_test_data): Likewise.
28683         (significand_test_data): Likewise.
28685         * math/gen-libm-test.pl (@functions): Remove variable.
28686         (generate_testfile): Don't handle START and END lines.
28687         * math/libm-test.inc (START): New macro.
28688         (END): Likewise.
28689         (END_COMPLEX): Likewise.
28690         (acos_test): Use END macro without arguments.
28691         (acos_test_tonearest): Likewise.
28692         (acos_test_towardzero): Likewise.
28693         (acos_test_downward): Likewise.
28694         (acos_test_upward): Likewise.
28695         (acosh_test): Likewise.
28696         (asin_test): Likewise.
28697         (asin_test_tonearest): Likewise.
28698         (asin_test_towardzero): Likewise.
28699         (asin_test_downward): Likewise.
28700         (asin_test_upward): Likewise.
28701         (asinh_test): Likewise.
28702         (atan_test): Likewise.
28703         (atanh_test): Likewise.
28704         (atan2_test): Likewise.
28705         (cabs_test): Likewise.
28706         (cacos_test): Use END_COMPLEX macro without arguments.
28707         (cacosh_test): Likewise.
28708         (carg_test): Use END macro without arguments.
28709         (casin_test): Use END_COMPLEX macro without arguments.
28710         (casinh_test): Likewise.
28711         (catan_test): Likewise.
28712         (catanh_test): Likewise.
28713         (cbrt_test): Use END macro without arguments.
28714         (ccos_test): Use END_COMPLEX macro without arguments.
28715         (ccosh_test): Likewise.
28716         (ceil_test): Use END macro without arguments.
28717         (cexp_test): Use END_COMPLEX macro without arguments.
28718         (cimag_test): Use END macro without arguments.
28719         (clog_test): Use END_COMPLEX macro without arguments.
28720         (clog10_test): Likewise.
28721         (conj_test): Likewise.
28722         (copysign_test): Use END macro without arguments.
28723         (cos_test): Likewise.
28724         (cos_test_tonearest): Likewise.
28725         (cos_test_towardzero): Likewise.
28726         (cos_test_downward): Likewise.
28727         (cos_test_upward): Likewise.
28728         (cosh_test): Likewise.
28729         (cosh_test_tonearest): Likewise.
28730         (cosh_test_towardzero): Likewise.
28731         (cosh_test_downward): Likewise.
28732         (cosh_test_upward): Likewise.
28733         (cpow_test): Use END_COMPLEX macro without arguments.
28734         (cproj_test): Likewise.
28735         (creal_test): Use END macro without arguments.
28736         (csin_test): Use END_COMPLEX macro without arguments.
28737         (csinh_test): Likewise.
28738         (csqrt_test): Likewise.
28739         (ctan_test): Likewise.
28740         (ctan_test_tonearest): Likewise.
28741         (ctan_test_towardzero): Likewise.
28742         (ctan_test_downward): Likewise.
28743         (ctan_test_upward): Likewise.
28744         (ctanh_test): Likewise.
28745         (ctanh_test_tonearest): Likewise.
28746         (ctanh_test_towardzero): Likewise.
28747         (ctanh_test_downward): Likewise.
28748         (ctanh_test_upward): Likewise.
28749         (erf_test): Use END macro without arguments.
28750         (erfc_test): Likewise.
28751         (exp_test): Likewise.
28752         (exp_test_tonearest): Likewise.
28753         (exp_test_towardzero): Likewise.
28754         (exp_test_downward): Likewise.
28755         (exp_test_upward): Likewise.
28756         (exp10_test): Likewise.
28757         (exp2_test): Likewise.
28758         (expm1_test): Likewise.
28759         (fabs_test): Likewise.
28760         (fdim_test): Likewise.
28761         (finite_test): Likewise.
28762         (floor_test): Likewise.
28763         (fma_test): Likewise.
28764         (fma_test_towardzero): Likewise.
28765         (fma_test_downward): Likewise.
28766         (fma_test_upward): Likewise.
28767         (fmax_test): Likewise.
28768         (fmin_test): Likewise.
28769         (fmod_test): Likewise.
28770         (fpclassify_test): Likewise.
28771         (frexp_test): Likewise.
28772         (gamma_test): Likewise.
28773         (hypot_test): Likewise.
28774         (ilogb_test): Likewise.
28775         (isfinite_test): Likewise.
28776         (isgreater_test): Likewise.
28777         (isgreaterequal_test): Likewise.
28778         (isinf_test): Likewise.
28779         (isless_test): Likewise.
28780         (islessequal_test): Likewise.
28781         (islessgreater_test): Likewise.
28782         (isnan_test): Likewise.
28783         (isnormal_test): Likewise.
28784         (issignaling_test): Likewise.
28785         (isunordered_test): Likewise.
28786         (j0_test): Likewise.
28787         (j1_test): Likewise.
28788         (jn_test): Likewise.
28789         (ldexp_test): Likewise.
28790         (lgamma_test): Likewise.
28791         (lrint_test): Likewise.
28792         (lrint_test_tonearest): Likewise.
28793         (lrint_test_towardzero): Likewise.
28794         (lrint_test_downward): Likewise.
28795         (lrint_test_upward): Likewise.
28796         (llrint_test): Likewise.
28797         (llrint_test_tonearest): Likewise.
28798         (llrint_test_towardzero): Likewise.
28799         (llrint_test_downward): Likewise.
28800         (llrint_test_upward): Likewise.
28801         (log_test): Likewise.
28802         (log10_test): Likewise.
28803         (log1p_test): Likewise.
28804         (log2_test): Likewise.
28805         (logb_test): Likewise.
28806         (logb_test_downward): Likewise.
28807         (lround_test): Likewise.
28808         (llround_test): Likewise.
28809         (modf_test): Likewise.
28810         (nearbyint_test): Likewise.
28811         (nextafter_test): Likewise.
28812         (nexttoward_test): Likewise.
28813         (pow_test): Likewise.
28814         (pow_test_tonearest): Likewise.
28815         (pow_test_towardzero): Likewise.
28816         (pow_test_downward): Likewise.
28817         (pow_test_upward): Likewise.
28818         (remainder_test): Likewise.
28819         (remainder_test_tonearest): Likewise.
28820         (remainder_test_towardzero): Likewise.
28821         (remainder_test_downward): Likewise.
28822         (remainder_test_upward): Likewise.
28823         (remquo_test): Likewise.
28824         (rint_test): Likewise.
28825         (rint_test_tonearest): Likewise.
28826         (rint_test_towardzero): Likewise.
28827         (rint_test_downward): Likewise.
28828         (rint_test_upward): Likewise.
28829         (round_test): Likewise.
28830         (scalb_test): Likewise.
28831         (scalbn_test): Likewise.
28832         (scalbln_test): Likewise.
28833         (signbit_test): Likewise.
28834         (sin_test): Likewise.
28835         (sin_test_tonearest): Likewise.
28836         (sin_test_towardzero): Likewise.
28837         (sin_test_downward): Likewise.
28838         (sin_test_upward): Likewise.
28839         (sincos_test): Likewise.
28840         (sinh_test): Likewise.
28841         (sinh_test_tonearest): Likewise.
28842         (sinh_test_towardzero): Likewise.
28843         (sinh_test_downward): Likewise.
28844         (sinh_test_upward): Likewise.
28845         (sqrt_test): Likewise.
28846         (tan_test): Likewise.
28847         (tan_test_tonearest): Likewise.
28848         (tan_test_towardzero): Likewise.
28849         (tan_test_downward): Likewise.
28850         (tan_test_upward): Likewise.
28851         (tanh_test): Likewise.
28852         (tgamma_test): Likewise.
28853         (trunc_test): Likewise.
28854         (y0_test): Likewise.
28855         (y1_test): Likewise.
28856         (yn_test): Likewise.
28857         (significand_test): Likewise.
28859 2013-05-24  Ondřej Bílka  <neleai@seznam.cz>
28861         [BZ #15381]
28862         * libio/genops.c (_IO_no_init): Initialize wide struct info.
28864 2013-05-23  Edjunior Machado  <emachado@linux.vnet.ibm.com>
28866         [BZ #14894]
28867         * sysdeps/powerpc/sys/platform/ppc.h: Add __ppc_yield,
28868         __ppc_mdoio and __ppc_mdoom.
28869         * manual/platform.texi: Document new functions __ppc_yield,
28870         __ppc_mdoio and __ppc_mdoom.
28872 2013-05-22  Carlos O'Donell  <carlos@redhat.com>
28874         * elf/ldconfig.c (is_hwcap_platform): Make comments full setences.
28875         (main): Mention "tls" pseudo-hwcap is legacy.
28876         * elf/dl-hwcaps.c (_dl_important_hwcaps): Correct rounding comment.
28878 2013-05-22  Joseph Myers  <joseph@codesourcery.com>
28880         * math/gen-libm-test.pl (parse_args): Output only string of
28881         arguments as text for test name, not full call or descriptions of
28882         tests for extra outputs.
28883         (generate_testfile): Do not pass function name to parse_args.
28884         Generate this_func variable from START.
28885         * math/libm-test.inc (struct test_f_f_data): Rename test_name
28886         field to arg_str.
28887         (struct test_ff_f_data): Likewise.
28888         (test_ff_f_data_nexttoward): Likewise.
28889         (struct test_fi_f_data): Likewise.
28890         (struct test_fl_f_data): Likewise.
28891         (struct test_if_f_data): Likewise.
28892         (struct test_fff_f_data): Likewise.
28893         (struct test_c_f_data): Likewise.
28894         (struct test_f_f1_data): Likewise.  Remove field extra_name.
28895         (struct test_fF_f1_data): Likewise.
28896         (struct test_ffI_f1_data): Likewise.
28897         (struct test_c_c_data): Rename test_name field to arg_str.
28898         (struct test_cc_c_data): Likewise.
28899         (struct test_f_i_data): Likewise.
28900         (struct test_ff_i_data): Likewise.
28901         (struct test_f_l_data): Likewise.
28902         (struct test_f_L_data): Likewise.
28903         (struct test_fFF_11_data): Likewise.  Remove fields extra1_name
28904         and extra2_name.
28905         (COMMON_TEST_SETUP): New macro.
28906         (EXTRA_OUTPUT_TEST_SETUP): Likewise.
28907         (COMMON_TEST_CLEANUP): Likewise.
28908         (EXTRA_OUTPUT_TEST_CLEANUP): Likewise.
28909         (RUN_TEST_f_f): Take argument string.  Call new setup and cleanup
28910         macros.
28911         (RUN_TEST_LOOP_f_f): Update call to RUN_TEST_f_f.
28912         (RUN_TEST_2_f): Take argument string.  Call new setup and cleanup
28913         macros.
28914         (RUN_TEST_LOOP_2_f): Update call to RUN_TEST_2_f.
28915         (RUN_TEST_fff_f): Take argument string.  Call new setup and
28916         cleanup macros.
28917         (RUN_TEST_LOOP_fff_f): Update call to RUN_TEST_fff_f.
28918         (RUN_TEST_c_f): Take argument string.  Call new setup and cleanup
28919         macros.
28920         (RUN_TEST_LOOP_c_f): Update call to RUN_TEST_c_f.
28921         (RUN_TEST_f_f1): Take argument string.  Call new setup and cleanup
28922         macros.
28923         (RUN_TEST_LOOP_f_f1): Update call to RUN_TEST_f_f1.
28924         (RUN_TEST_fF_f1): Take argument string.  Call new setup and
28925         cleanup macros.
28926         (RUN_TEST_LOOP_fF_f1): Update call to RUN_TEST_fF_f1.
28927         (RUN_TEST_fI_f1): Take argument string.  Call new setup and
28928         cleanup macros.
28929         (RUN_TEST_LOOP_fI_f1): Update call to RUN_TEST_fI_f1.
28930         (RUN_TEST_ffI_f1): Take argument string.  Call new setup and
28931         cleanup macros.
28932         (RUN_TEST_LOOP_ffI_f1): Update call to RUN_TEST_ffI_f1.
28933         (RUN_TEST_c_c): Take argument string.  Call new setup and cleanup
28934         macros.
28935         (RUN_TEST_LOOP_c_c): Update call to RUN_TEST_c_c.
28936         (RUN_TEST_cc_c): Take argument string.  Call new setup and cleanup
28937         macros.
28938         (RUN_TEST_LOOP_cc_c): Update call to RUN_TEST_cc_c.
28939         (RUN_TEST_f_i): Take argument string.  Call new setup and cleanup
28940         macros.
28941         (RUN_TEST_LOOP_f_i): Update call to RUN_TEST_f_i.
28942         (RUN_TEST_f_i_tg): Take argument string.  Call new setup and
28943         cleanup macros.
28944         (RUN_TEST_LOOP_f_i_tg): Update call to RUN_TEST_f_i_tg.
28945         (RUN_TEST_ff_i_tg): Take argument string.  Call new setup and
28946         cleanup macros.
28947         (RUN_TEST_LOOP_ff_i_tg): Update call to RUN_TEST_ff_i_tg.
28948         (RUN_TEST_f_b): Take argument string.  Call new setup and cleanup
28949         macros.
28950         (RUN_TEST_LOOP_f_b): Update call to RUN_TEST_f_b.
28951         (RUN_TEST_f_b_tg): Take argument string.  Call new setup and
28952         cleanup macros.
28953         (RUN_TEST_LOOP_f_b_tg): Update call to RUN_TEST_f_b_tg.
28954         (RUN_TEST_f_l): Take argument string.  Call new setup and cleanup
28955         macros.
28956         (RUN_TEST_LOOP_f_l): Update call to RUN_TEST_f_l.
28957         (RUN_TEST_f_L): Take argument string.  Call new setup and cleanup
28958         macros.
28959         (RUN_TEST_LOOP_f_L): Update call to RUN_TEST_f_L.
28960         (RUN_TEST_fFF_11): Take argument string.  Call new setup and
28961         cleanup macros.
28962         (RUN_TEST_LOOP_fFF_11): Update call to RUN_TEST_fFF_11.
28964 2013-05-22  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
28966         * sysdeps/unix/sysv/linux/bits/siginfo.h (siginfo_t): Add si_addr_lsb
28967         to _sifields.sigfault.
28968         (si_addr_lsb): Define new macro.
28969         (BUS_MCEERR_AR, BUS_MCEERR_AO): Define new values.
28970         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
28971         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h: Likewise.
28973 2013-05-03  Carlos O'Donell  <carlos at redhat.com>
28975         [BZ #15441]
28976         * intl/dcigettext.c (DCIGETTEXT): Skip translating if _nl_find_msg
28977         returns -1.
28978         (_nl_find_msg): Return -1 if recursive call returned -1. If newmem is
28979         null return -1.
28980         * intl/loadmsgcat.c (_nl_load_domain): If _nl_find_msg returns -1 abort
28981         loading the domain.
28983 2013-05-22  Joseph Myers  <joseph@codesourcery.com>
28985         * math/gen-libm-test.pl (parse_args): Do not include expected
28986         result in test name.
28987         * sysdeps/i386/fpu/libm-test-ulps: Update test names.
28988         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
28989         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
28990         * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
28991         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
28992         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28994 2013-05-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
28996         * benchtests/Makefile: Sort function entries.
28998         * benchtests/Makefile (bench): Add asin, acos, sinh, cosh,
28999         tanh, asinh, acosh, atanh.
29000         * benchtests/acos-inputs: New file.
29001         * benchtests/acosh-inputs: New file.
29002         * benchtests/asin-inputs: New file.
29003         * benchtests/asinh-inputs: New file.
29004         * benchtests/atanh-inputs: New file.
29005         * benchtests/cosh-inputs: New file.
29006         * benchtests/log-inputs: New file.
29007         * benchtests/sinh-inputs: New file.
29008         * benchtests/tanh-inputs: New file.
29010 2013-05-21  Dmitry V. Levin  <ldv@altlinux.org>
29012         [BZ #15339]
29013         * posix/tst-getaddrinfo4.c: New test.
29014         * posix/Makefile (tests): Add it.
29016 2013-05-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
29018         [BZ #15339]
29019         * nss/getXXbyYY_r.c (REENTRANT_NAME): Set NETDB_INTERNAL only
29020         when no services were used.
29021         * sysdeps/posix/getaddrinfo.c (gaih_inet): Set h_errno.
29022         Return EAI_SYSTEM if h_errno is NETDB_INTERNAL.
29024 2013-05-21  Andreas Schwab  <schwab@suse.de>
29026         [BZ #15014]
29027         * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME))
29028         [HANDLE_DIGITS_DOTS]: Set any_service when digits-dots parsing was
29029         successful.
29030         * nss/digits_dots.c (__nss_hostname_digits_dots): Remove
29031         redundant variable declarations and reallocation of buffer when
29032         parsing as IPv6 address.  Always set NSS status when called from
29033         reentrant functions.  Use NETDB_INTERNAL instead of TRY_AGAIN when
29034         buffer too small.  Correct computation of needed size.
29035         * nss/Makefile (tests): Add test-digits-dots.
29036         * nss/test-digits-dots.c: New test.
29038 2013-05-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
29040         * benchtests/Makefile: Remove instructions for adding
29041         benchmark tests.
29042         * benchtests/README: New file to explain how to execute and
29043         enhance the benchmark tests.
29045 2013-05-21  Andreas Schwab  <schwab@suse.de>
29047         [BZ #15493]
29048         * setjmp/Makefile (tests): Add tst-sigsetjmp.
29049         * setjmp/tst-sigsetjmp.c: New test.
29051 2013-05-20  Ondřej Bílka  <neleai@seznam.cz>
29053         * sysdeps/x86_64/memset.S (memset): New implementation.
29054         (__bzero): Likewise.
29055         (__memset_tail): New function.
29057 2013-05-20  Ondřej Bílka  <neleai@seznam.cz>
29059         * sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S: New file.
29060         * sysdeps/x86_64/multiarch/memcpy.S (__new_memcpy): Add
29061         __memcpy_sse2_unaligned ifunc selection.
29062         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
29063         Add memcpy-sse2-unaligned.S.
29064         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
29065         Add: __memcpy_sse2_unaligned.
29067 2013-05-19  Joseph Myers  <joseph@codesourcery.com>
29069         [BZ #15490]
29070         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Use
29071         math_force_eval before restoring floating-point envrionment.
29072         * sysdeps/ieee754/flt-32/s_nearbyintf.c (__nearbyintf): Likewise.
29073         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl):
29074         Likewise.
29075         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Include
29076         <math_private.h>.
29077         (__nearbyintl): Use math_force_eval before restoring
29078         floating-point environment.
29079         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c (__nearbyintl): Likewise.
29081         * math/gen-libm-test.pl (special_functions): Remove.
29082         (parse_args): Don't handle TEST_extra.  Handle functions with no
29083         return value.
29084         * math/libm-test.inc (struct test_sincos_data): Replace with
29085         struct test_fFF_11_data.
29086         (RUN_TEST_sincos): Replace with RUN_TEST_fFF_11.
29087         (RUN_TEST_LOOP_sincos): Replace with RUN_TEST_LOOP_fFF_11.
29088         (sincos_test_data): Change element type to struct
29089         test_fFF_11_data.  Use TEST_fFF_11 instead of TEST_extra.
29090         (sincos_test): Use RUN_TEST_LOOP_fFF_11 instead of
29091         RUN_TEST_LOOP_sincos.
29092         * math/README.libm-test: Don't mention special handling of
29093         individual functions.
29094         * sysdeps/i386/fpu/libm-test-ulps: Update names of sincos tests.
29095         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
29096         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
29097         * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
29098         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
29099         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
29101         * math/gen-libm-test.pl (get_variable): Remove function.
29102         (parse_args): Don't show pointer parameters to call in test
29103         names.  Use "extra output N" in test names for extra outputs
29104         rather than naming variables.
29106 2013-05-18  Joseph Myers  <joseph@codesourcery.com>
29108         [BZ #15488]
29109         * math/complex.h [__USE_ISOC11 && __GNUC_PREREQ (4, 7) &&
29110         __NO_LONG_DOUBLE_MATH] (CMPLXL): Define macro.
29111         * math/tst-CMPLX.c (do_test) [NO_LONG_DOUBLE]: Do not disable long
29112         double tests.
29113         * make/tst-CMPLX2.c [NO_LONG_DOUBLE] (check_long_double): Do not
29114         disable.
29115         (do_test) [NO_LONG_DOUBLE]: Do not disable call to
29116         check_long_double.
29118         * math/gen-libm-test.pl (@tests): Remove variable.
29119         ($count): Likewise.
29120         (new_test): Remove function.
29121         (show_exceptions): New function.
29122         (special_functions): Use show_exceptions instead of new_test.
29123         (parse_args): Likewise.
29124         (generate_testfile): Pass only function name in generated call to
29125         print_max_error or print_complex_max_error.
29126         (get_ulps): Do not handle complex tests specially.
29127         (output_test): Rename to ...
29128         (get_all_ulps_for_test): ... this.  Return a string rather than
29129         printing to a file.  Require ulps to be present.
29130         (output_ulps): Generate arrays rather than #defines.
29131         * math/libm-test.inc: Move down #include of "libm-test-ulps.h".
29132         (struct ulp_data): New type.
29133         (BUILD_COMPLEX_ULP): Remove macro.
29134         (compare_ulp_data): New function.
29135         (find_ulps): Likewise.
29136         (find_test_ulps): Likewise.
29137         (find_function_ulps): Likewise.
29138         (find_complex_function_ulps): Likewise.
29139         (print_max_error): Determine allowed ulps using
29140         find_function_ulps.
29141         (print_complex_max_error): Determine allowed ulps using
29142         find_complex_function_ulps.
29143         (check_float_internal): Determine max ulps using find_test_ulps.
29144         (check_float): Do not take max_ulp parameter.  Update call to
29145         check_float_internal.
29146         (check_complex): Likewise.
29147         (check_int): Do not take max_ulp parameter.
29148         (check_long): Likewise.
29149         (check_bool): Likewise.
29150         (check_longlong): Likewise.
29151         (struct test_f_f_data): Remove max_ulp field.
29152         (struct test_ff_f_data): Likewise.
29153         (struct test_ff_f_data_nexttoward): Likewise.
29154         (struct test_fi_f_data): Likewise.
29155         (struct test_fl_f_data): Likewise.
29156         (struct test_if_f_data): Likewise.
29157         (struct test_fff_f_data): Likewise.
29158         (struct test_c_f_data): Likewise.
29159         (struct test_f_f1_data): Remove max_ulp and extra_ulp fields.
29160         (struct test_fF_f1_data): Likewise.
29161         (struct test_ffI_f1_data): Likewise.
29162         (struct test_c_c_data): Remove max_ulp field.
29163         (struct test_cc_c_data): Likewise.
29164         (struct test_f_i_data): Likewise.
29165         (struct test_ff_i_data): Likewise.
29166         (struct test_f_l_data): Likewise.
29167         (struct test_f_L_data): Likewise.
29168         (struct test_sincos_data): Likewise.
29169         (RUN_TEST_f_f): Do not handle ulps.
29170         (RUN_TEST_LOOP_f_f): Likewise.
29171         (RUN_TEST_2_f): Likewise.
29172         (RUN_TEST_LOOP_2_f): Likewise.
29173         (RUN_TEST_fff_f): Likewise.
29174         (RUN_TEST_LOOP_fff_f): Likewise.
29175         (RUN_TEST_c_f): Likewise.
29176         (RUN_TEST_LOOP_c_f): Likewise.
29177         (RUN_TEST_f_f1): Likewise.
29178         (RUN_TEST_LOOP_f_f1): Likewise.
29179         (RUN_TEST_fF_f1): Likewise.
29180         (RUN_TEST_LOOP_fF_f1): Likewise.
29181         (RUN_TEST_fI_f1): Likewise.
29182         (RUN_TEST_LOOP_fI_f1): Likewise.
29183         (RUN_TEST_ffI_f1): Likewise.
29184         (RUN_TEST_LOOP_ffI_f1): Likewise.
29185         (RUN_TEST_c_c): Likewise.
29186         (RUN_TEST_LOOP_c_c): Likewise.
29187         (RUN_TEST_cc_c): Likewise.
29188         (RUN_TEST_LOOP_cc_c): Likewise.
29189         (RUN_TEST_f_i): Likewise.
29190         (RUN_TEST_LOOP_f_i): Likewise.
29191         (RUN_TEST_f_i_tg): Likewise.
29192         (RUN_TEST_LOOP_f_i_tg): Likewise.
29193         (RUN_TEST_ff_i_tg): Likewise.
29194         (RUN_TEST_LOOP_ff_i_tg): Likewise.
29195         (RUN_TEST_f_b): Likewise.
29196         (RUN_TEST_LOOP_f_b): Likewise.
29197         (RUN_TEST_f_b_tg): Likewise.
29198         (RUN_TEST_LOOP_f_b_tg): Likewise.
29199         (RUN_TEST_f_l): Likewise.
29200         (RUN_TEST_LOOP_f_l): Likewise.
29201         (RUN_TEST_f_L): Likewise.
29202         (RUN_TEST_LOOP_f_L): Likewise.
29203         (RUN_TEST_sincos): Likewise.
29204         (RUN_TEST_LOOP_sincos): Likewise.
29206 2013-05-17  Joseph Myers  <joseph@codesourcery.com>
29208         [BZ #15480]
29209         [BZ #15485]
29210         * sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder): For
29211         main case of finite arguments, set rounding mode to FE_TONEAREST
29212         and discard exceptions.
29213         * math/libm-test.inc (remainder_test_data): Disallow "inexact"
29214         exceptions.
29215         (remainder_tonearest_test_data): New variable.
29216         (remainder_test_tonearest): New function.
29217         (remainder_towardzero_test_data): New variable.
29218         (remainder_test_towardzero): New function.
29219         (remainder_downward_test_data): New variable.
29220         (remainder_test_downward): New function.
29221         (remainder_upward_test_data): New variable.
29222         (remainder_test_upward): New function.
29223         (main): Call the new test functions.
29225         * math/libm-test.inc (struct test_f_f1_data): Remove field
29226         extra_init.
29227         (struct test_fF_f1_data): Likewise.
29228         (struct test_ffI_f1_data): Likewise.
29229         (RUN_TEST_f_f1): Remove argument EXTRA_INIT.  Initialize EXTRA_VAR
29230         based on value of EXTRA_EXPECTED.
29231         (RUN_TEST_LOOP_f_f1): Update call to RUN_TEST_f_f1.
29232         (RUN_TEST_fF_f1): Remove argument EXTRA_INIT.  Initialize
29233         EXTRA_VAR based on value of EXTRA_EXPECTED.
29234         (RUN_TEST_LOOP_fF_f1): Update call to RUN_TEST_fF_f1.
29235         (RUN_TEST_fI_f1): Remove argument EXTRA_INIT.  Initialize
29236         EXTRA_VAR based on value of EXTRA_EXPECTED.
29237         (RUN_TEST_LOOP_fI_f1): Update call to RUN_TEST_fI_f1.
29238         (RUN_TEST_ffI_f1): Remove argument EXTRA_INIT.  Initialize
29239         EXTRA_VAR based on value of EXTRA_EXPECTED.
29240         (RUN_TEST_LOOP_ffI_f1): Update call to RUN_TEST_ffI_f1.
29241         * math/gen-libm-test.pl (parse_args): Don't output initializers
29242         for extra output values.
29244         * math/libm-test.inc (check_int): Expect result to be exactly
29245         equal to expected value and do not handle ulps.
29246         (check_long): Likewise.
29247         (check_longlong): Likewise.
29249         * math/libm-test.inc (ceil_test_data): Test for "inexact"
29250         exceptions.
29251         (cimag_test_data): Likewise.
29252         (conj_test_data): Likewise.
29253         (copysign_test_data): Likewise.
29254         (cproj_test_data): Likewise.
29255         (creal_test_data): Likewise.
29256         (fabs_test_data): Likewise.
29257         (fdim_test_data): Likewise.
29258         (finite_test_data): Likewise.
29259         (floor_test_data): Likewise.
29260         (fmax_test_data): Likewise.
29261         (fmin_test_data): Likewise.
29262         (fmod_test_data): Likewise.
29263         (fpclassify_test_data): Likewise.
29264         (frexp_test_data): Likewise.
29265         (ilogb_test_data): Likewise.
29266         (isfinite_test_data): Likewise.
29267         (isgreater_test_data): Likewise.
29268         (isgreaterequal_test_data): Likewise.
29269         (isinf_test_data): Likewise.
29270         (isless_test_data): Likewise.
29271         (islessequal_test_data): Likewise.
29272         (islessgreater_test_data): Likewise.
29273         (isnan_test_data): Likewise.
29274         (isnormal_test_data): Likewise.
29275         (issignaling_test_data): Likewise.
29276         (isunordered_test_data): Likewise.
29277         (ldexp_test_data): Likewise.
29278         (lrint_test_data): Likewise.
29279         (lrint_test_data) [TEST_FLOAT]: Disable one test.
29280         (lrint_test_data) [!TEST_LDOUBLE]: Likewise.
29281         (lrint_tonearest_test_data): Test for "inexact" exceptions.
29282         (lrint_tonearest_test_data) [TEST_FLOAT]: Disable one test.
29283         (lrint_tonearest_test_data) [!TEST_LDOUBLE]: Likewise.
29284         (lrint_tonearest_test_data) [TEST_LDOUBLE]: Use "L" suffix on that
29285         test input.
29286         (lrint_towardzero_test_data): Test for "inexact" exceptions.
29287         (lrint_towardzero_test_data) [TEST_FLOAT]: Disable one test.
29288         (lrint_towardzero_test_data) [!TEST_LDOUBLE]: Likewise.
29289         (lrint_towardzero_test_data) [TEST_LDOUBLE]: Use "L" suffix on
29290         that test input.
29291         (lrint_downward_test_data): Test for "inexact" exceptions.
29292         (lrint_downward_test_data) [TEST_FLOAT]: Disable one test.
29293         (lrint_downward_test_data) [!TEST_LDOUBLE]: Likewise.
29294         (lrint_downward_test_data) [TEST_LDOUBLE]: Use "L" suffix on that
29295         test input.
29296         (lrint_upward_test_data): Test for "inexact" exceptions.
29297         (lrint_upward_test_data) [TEST_LDOUBLE]: Use "L" suffix on one
29298         test input.
29299         (llrint_test_data): Test for "inexact" exceptions.
29300         (llrint_test_data) [TEST_FLOAT]: Disable one test.
29301         (llrint_tonearest_test_data): Test for "inexact" exceptions.
29302         (llrint_tonearest_test_data) [TEST_FLOAT]: Disable one test.
29303         (llrint_towardzero_test_data): Test for "inexact" exceptions.
29304         (llrint_towardzero_test_data) [TEST_FLOAT]: Disable one test.
29305         (llrint_downward_test_data): Test for "inexact" exceptions.
29306         (llrint_downward_test_data) [TEST_FLOAT]: Disable one test.
29307         (llrint_upward_test_data): Test for "inexact" exceptions.
29308         (logb_test_data): Likewise.
29309         (logb_downward_test_data): Likewise.
29310         (nextafter_test_data): Likewise.
29311         (nexttoward_test_data): Likewise.
29312         (remainder_test_data): Likewise.
29313         (remquo_test_data): Likewise.
29314         (scalbn_test_data): Likewise.
29315         (scalbln_test_data): Likewise.
29316         (signbit_test_data): Likewise.
29317         (sqrt_test_data): Likewise.
29318         (significand_test_data): Likewise.
29320 2013-05-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
29322         [BZ #15424]
29323         * benchtests/bench-modf.c (struct args): Mark arg0 as
29324         volatile.
29325         * scripts/bench.pl: Mark members of struct args as volatile.
29327 2013-05-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
29329         [BZ # 15497]
29330         * sysdeps/powerpc/fpu/e_hypot.c (GET_TWO_FLOAT_WORD): Fix test for
29331         negative infinity on POWER6 or lower.
29332         * sysdeps/powerpc/fpu/e_hypotf.c (GET_TWO_FLOAT_WORD): Likewise.
29334 2013-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
29336         [BZ #15442]
29337         * soft-fp/op-common.h (_FP_FRAC_SNANP): New macro.
29338         (_FP_FRAC_SNANP_SEMIRAW): Likewise.
29339         (_FP_UNPACK_CANONICAL): Use _FP_FRAC_SNANP.
29340         (_FP_CHECK_SIGNAN_SEMIRAW): Use _FP_FRAC_SNANP_SEMIRAW.
29341         (_FP_SETQNAN): New macro.
29342         (_FP_SETQNAN_SEMIRAW): Likewise.
29343         (_FP_PACK_SEMIRAW): Use _FP_SETQNAN.
29344         (_FP_PACK_CANONICAL): Use _FP_SETQNAN.
29345         (_FP_ISSIGNAN): Use _FP_FRAC_SNANP.
29346         (FP_EXTEND): Use _FP_FRAC_SNANP.
29347         (FP_TRUNC): Use _FP_SETQNAN_SEMIRAW.
29348         * soft-fp/testit.c (gen_special_double): Take _FP_QNANNEGATEDP
29349         into account.
29350         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h (_FP_QNANNEGATEDP):
29351         New macro.
29352         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h (_FP_QNANNEGATEDP):
29353         Likewise.
29355 2013-05-16  Joseph Myers  <joseph@codesourcery.com>
29357         * math/libm-test.inc (atanh_test_data): Use ERRNO_ERANGE together
29358         with DIVIDE_BY_ZERO_EXCEPTION.
29359         (gamma_test_data): Likewise.
29360         (lgamma_test_data): Likewise.
29361         (log_test_data): Likewise.
29362         (log10_test_data): Likewise.
29363         (log2_test_data): Likewise.
29364         (tgamma_test_data): Likewise.
29366         * math/libm-test.inc (acos_test): Don't test for ENOSYS error.
29367         (acos_test_tonearest): Likewise.
29368         (acos_test_towardzero): Likewise.
29369         (acos_test_downward): Likewise.
29370         (acos_test_upward): Likewise.
29371         (acosh_test): Likewise.
29372         (asin_test): Likewise.
29373         (asin_test_tonearest): Likewise.
29374         (asin_test_towardzero): Likewise.
29375         (asin_test_downward): Likewise.
29376         (asin_test_upward): Likewise.
29377         (asinh_test): Likewise.
29378         (atan_test): Likewise.
29379         (atanh_test): Likewise.
29380         (atan2_test): Likewise.
29381         (cabs_test): Likewise.
29382         (cacos_test): Likewise.
29383         (cacosh_test): Likewise.
29384         (casin_test): Likewise.
29385         (casinh_test): Likewise.
29386         (catan_test): Likewise.
29387         (catanh_test): Likewise.
29388         (cbrt_test): Likewise.
29389         (ccos_test): Likewise.
29390         (ccosh_test): Likewise.
29391         (cexp_test): Likewise.
29392         (clog_test): Likewise.
29393         (clog10_test): Likewise.
29394         (cos_test): Likewise.
29395         (cos_test_tonearest): Likewise.
29396         (cos_test_towardzero): Likewise.
29397         (cos_test_downward): Likewise.
29398         (cos_test_upward): Likewise.
29399         (cosh_test): Likewise.
29400         (cosh_test_tonearest): Likewise.
29401         (cosh_test_towardzero): Likewise.
29402         (cosh_test_downward): Likewise.
29403         (cosh_test_upward): Likewise.
29404         (cpow_test): Likewise.
29405         (csin_test): Likewise.
29406         (csinh_test): Likewise.
29407         (csqrt_test): Likewise.
29408         (ctan_test): Likewise.
29409         (ctan_test_tonearest): Likewise.
29410         (ctan_test_towardzero): Likewise.
29411         (ctan_test_downward): Likewise.
29412         (ctan_test_upward): Likewise.
29413         (ctanh_test): Likewise.
29414         (ctanh_test_tonearest): Likewise.
29415         (ctanh_test_towardzero): Likewise.
29416         (ctanh_test_downward): Likewise.
29417         (ctanh_test_upward): Likewise.
29418         (erf_test): Likewise.
29419         (erfc_test): Likewise.
29420         (exp_test): Likewise.
29421         (exp_test_tonearest): Likewise.
29422         (exp_test_towardzero): Likewise.
29423         (exp_test_downward): Likewise.
29424         (exp_test_upward): Likewise.
29425         (exp10_test): Likewise.
29426         (exp2_test): Likewise.
29427         (expm1_test): Likewise.
29428         (fmod_test): Likewise.
29429         (gamma_test): Likewise.
29430         (hypot_test): Likewise.
29431         (j0_test): Likewise.
29432         (j1_test): Likewise.
29433         (jn_test): Likewise.
29434         (lgamma_test): Likewise.
29435         (log_test): Likewise.
29436         (log10_test): Likewise.
29437         (log1p_test): Likewise.
29438         (log2_test): Likewise.
29439         (logb_test_downward): Likewise.
29440         (pow_test): Likewise.
29441         (pow_test_tonearest): Likewise.
29442         (pow_test_towardzero): Likewise.
29443         (pow_test_downward): Likewise.
29444         (pow_test_upward): Likewise.
29445         (remainder_test): Likewise.
29446         (remquo_test): Likewise.
29447         (sin_test): Likewise.
29448         (sin_test_tonearest): Likewise.
29449         (sin_test_towardzero): Likewise.
29450         (sin_test_downward): Likewise.
29451         (sin_test_upward): Likewise.
29452         (sincos_test): Likewise.
29453         (sinh_test): Likewise.
29454         (sinh_test_tonearest): Likewise.
29455         (sinh_test_towardzero): Likewise.
29456         (sinh_test_downward): Likewise.
29457         (sinh_test_upward): Likewise.
29458         (sqrt_test): Likewise.
29459         (tan_test): Likewise.
29460         (tan_test_tonearest): Likewise.
29461         (tan_test_towardzero): Likewise.
29462         (tan_test_downward): Likewise.
29463         (tan_test_upward): Likewise.
29464         (tanh_test): Likewise.
29465         (tgamma_test): Likewise.
29466         (y0_test): Likewise.
29467         (y1_test): Likewise.
29468         (yn_test): Likewise.
29470         * math/gen-libm-test.pl (adjust_arg): Remove function.
29471         (special_function): Remove argument $in_func.  Only handle
29472         generating output for tables of tests, not inside functions.
29473         (parse_args): Likewise.
29474         (generate_testfile): Remove variable $in_func.  Update call to
29475         parse_args.
29476         * math/libm-test.inc (PLUS_ZERO_INIT): Rename macro to plus_zero.
29477         (MINUS_ZERO_INIT): Rename macro to minus_zero.
29478         (PLUS_INFTY_INIT): Rename macro to plus_infty.
29479         (MINUS_INFTY_INIT): Rename macro to minus_infty.
29480         (QNAN_VALUE_INIT): Rename macro to qnan_value.
29481         (MAX_VALUE_INIT): Rename macro to max_value.
29482         (MIN_VALUE_INIT): Rename macro to min_value.
29483         (MIN_SUBNORM_VALUE_INIT): Rename macro to min_subnorm_value.
29484         (plus_zero): Remove variable.
29485         (minus_zero): Likewise.
29486         (plus_infty): Likewise.
29487         (minus_infty): Likewise.
29488         (qnan_value): Likewise.
29489         (max_value): Likewise.
29490         (min_value): Likewise.
29491         (min_subnorm_value): Likewise.
29493 2013-05-16  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
29495         * crypt/sha512-block.c: Add missing #include <stdint.h> due to
29496         uint64_t or uint32_t usage.
29497         * crypt/sha256-block.c: Likewise.
29498         * crypt/sha256-crypt.c: Likewise.
29499         * crypt/sha256.c: Likewise.
29500         * crypt/sha512-block.c: Likewise.
29501         * crypt/sha512-crypt.c: Likewise.
29502         * crypt/sha512.c: Likewise.
29503         * debug/backtrace-tst.c: Likewise.
29504         * debug/pcprofiledump.c: Likewise.
29505         * elf/cache.c: Likewise.
29506         * elf/dl-cache.c: Likewise.
29507         * elf/dl-misc.c: Likewise.
29508         * elf/dl-profile.c: Likewise.
29509         * elf/dl-support.c: Likewise.
29510         * elf/ldconfig.c: Likewise.
29511         * elf/sprof.c: Likewise.
29512         * iconv/dummy-repertoire.c: Likewise.
29513         * iconv/iconv_charmap.c: Likewise.
29514         * iconv/skeleton.c: Likewise.
29515         * iconvdata/8bit-generic.c: Likewise.
29516         * iconvdata/cp737.h: Likewise.
29517         * iconvdata/cp775.h: Likewise.
29518         * iconvdata/ibm1008.h: Likewise.
29519         * iconvdata/ibm1025.h: Likewise.
29520         * iconvdata/ibm1046.h: Likewise.
29521         * iconvdata/ibm1097.h: Likewise.
29522         * iconvdata/ibm1112.h: Likewise.
29523         * iconvdata/ibm1122.h: Likewise.
29524         * iconvdata/ibm1123.h: Likewise.
29525         * iconvdata/ibm1124.h: Likewise.
29526         * iconvdata/ibm1129.h: Likewise.
29527         * iconvdata/ibm1130.h: Likewise.
29528         * iconvdata/ibm1132.h: Likewise.
29529         * iconvdata/ibm1133.h: Likewise.
29530         * iconvdata/ibm1137.h: Likewise.
29531         * iconvdata/ibm1140.h: Likewise.
29532         * iconvdata/ibm1141.h: Likewise.
29533         * iconvdata/ibm1142.h: Likewise.
29534         * iconvdata/ibm1143.h: Likewise.
29535         * iconvdata/ibm1144.h: Likewise.
29536         * iconvdata/ibm1145.h: Likewise.
29537         * iconvdata/ibm1146.h: Likewise.
29538         * iconvdata/ibm1147.h: Likewise.
29539         * iconvdata/ibm1148.h: Likewise.
29540         * iconvdata/ibm1149.h: Likewise.
29541         * iconvdata/ibm1153.h: Likewise.
29542         * iconvdata/ibm1154.h: Likewise.
29543         * iconvdata/ibm1155.h: Likewise.
29544         * iconvdata/ibm1156.h: Likewise.
29545         * iconvdata/ibm1157.h: Likewise.
29546         * iconvdata/ibm1158.h: Likewise.
29547         * iconvdata/ibm1160.h: Likewise.
29548         * iconvdata/ibm1161.h: Likewise.
29549         * iconvdata/ibm1162.h: Likewise.
29550         * iconvdata/ibm1163.h: Likewise.
29551         * iconvdata/ibm1164.h: Likewise.
29552         * iconvdata/ibm1166.h: Likewise.
29553         * iconvdata/ibm1167.h: Likewise.
29554         * iconvdata/ibm12712.h: Likewise.
29555         * iconvdata/ibm1390.h: Likewise.
29556         * iconvdata/ibm1399.h: Likewise.
29557         * iconvdata/ibm16804.h: Likewise.
29558         * iconvdata/ibm4517.h: Likewise.
29559         * iconvdata/ibm4899.h: Likewise.
29560         * iconvdata/ibm4909.h: Likewise.
29561         * iconvdata/ibm4971.h: Likewise.
29562         * iconvdata/ibm5347.h: Likewise.
29563         * iconvdata/ibm803.h: Likewise.
29564         * iconvdata/ibm856.h: Likewise.
29565         * iconvdata/ibm901.h: Likewise.
29566         * iconvdata/ibm902.h: Likewise.
29567         * iconvdata/ibm9030.h: Likewise.
29568         * iconvdata/ibm9066.h: Likewise.
29569         * iconvdata/ibm921.h: Likewise.
29570         * iconvdata/ibm922.h: Likewise.
29571         * iconvdata/ibm9448.h: Likewise.
29572         * iconvdata/isiri-3342.h: Likewise.
29573         * iconvdata/jis0201.h: Likewise.
29574         * include/link.h: Likewise.
29575         * include/netdb.h: Likewise.
29576         * inet/check_native.c: Likewise.
29577         * inet/check_pf.c: Likewise.
29578         * inet/getipv4sourcefilter.c: Likewise.
29579         * inet/getnameinfo.c: Likewise.
29580         * inet/getsourcefilter.c: Likewise.
29581         * inet/htonl.c: Likewise.
29582         * inet/setipv4sourcefilter.c: Likewise.
29583         * inet/setsourcefilter.c: Likewise.
29584         * inet/test-inet6_opt.c: Likewise.
29585         * inet/tst-network.c: Likewise.
29586         * locale/C-collate.c: Likewise.
29587         * locale/C-ctype.c: Likewise.
29588         * locale/C-time.c: Likewise.
29589         * locale/C-translit.h: Likewise.
29590         * locale/loadarchive.c: Likewise.
29591         * locale/programs/3level.h: Likewise.
29592         * locale/programs/charmap.c: Likewise.
29593         * locale/programs/charmap.h: Likewise.
29594         * locale/programs/ld-address.c: Likewise.
29595         * locale/programs/ld-collate.c: Likewise.
29596         * locale/programs/ld-ctype.c: Likewise.
29597         * locale/programs/ld-identification.c: Likewise.
29598         * locale/programs/ld-measurement.c: Likewise.
29599         * locale/programs/ld-messages.c: Likewise.
29600         * locale/programs/ld-monetary.c: Likewise.
29601         * locale/programs/ld-name.c: Likewise.
29602         * locale/programs/ld-numeric.c: Likewise.
29603         * locale/programs/ld-paper.c: Likewise.
29604         * locale/programs/ld-telephone.c: Likewise.
29605         * locale/programs/ld-time.c: Likewise.
29606         * locale/programs/linereader.c: Likewise.
29607         * locale/programs/locale.c: Likewise.
29608         * locale/programs/locarchive.c: Likewise.
29609         * locale/programs/locfile.h: Likewise.
29610         * locale/programs/repertoire.c: Likewise.
29611         * locale/programs/simple-hash.c: Likewise.
29612         * locale/programs/simple-hash.h: Likewise.
29613         * malloc/memusage.c: Likewise.
29614         * malloc/memusagestat.c: Likewise.
29615         * nis/nis_defaults.c: Likewise.
29616         * nis/nis_hash.c: Likewise.
29617         * nis/nis_print.c: Likewise.
29618         * nis/nis_xdr.c: Likewise.
29619         * nscd/connections.c: Likewise.
29620         * nscd/hstcache.c: Likewise.
29621         * nscd/nscd_gethst_r.c: Likewise.
29622         * nscd/nscd_getserv_r.c: Likewise.
29623         * nscd/nscd_helper.c: Likewise.
29624         * nscd/servicescache.c: Likewise.
29625         * nss/makedb.c: Likewise.
29626         * nss/nss_db/db-XXX.c: Likewise.
29627         * nss/nss_db/db-initgroups.c: Likewise.
29628         * nss/nss_db/db-netgrp.c: Likewise.
29629         * nss/nss_files/files-network.c: Likewise.
29630         * nss/nss_files/files-parse.c: Likewise.
29631         * posix/bug-regex5.c: Likewise.
29632         * posix/fnmatch_loop.c: Likewise.
29633         * posix/regcomp.c: Likewise.
29634         * posix/regexec.c: Likewise.
29635         * posix/tst-rfc3484-2.c: Likewise.
29636         * posix/tst-rfc3484-3.c: Likewise.
29637         * posix/tst-rfc3484.c: Likewise.
29638         * resolv/nss_dns/dns-canon.c: Likewise.
29639         * resolv/nss_dns/dns-network.c: Likewise.
29640         * resolv/res_init.c: Likewise.
29641         * resolv/res_mkquery.c: Likewise.
29642         * resolv/tst-aton.c: Likewise.
29643         * stdlib/cxa_atexit.c: Likewise.
29644         * stdlib/cxa_finalize.c: Likewise.
29645         * stdlib/gen-fpioconst.c: Likewise.
29646         * stdlib/strtol_l.c: Likewise.
29647         * string/tst-endian.c: Likewise.
29648         * sunrpc/auth_des.c: Likewise.
29649         * sunrpc/clnt_udp.c: Likewise.
29650         * sunrpc/rtime.c: Likewise.
29651         * sunrpc/svcauth_des.c: Likewise.
29652         * sunrpc/xdr.c: Likewise.
29653         * sunrpc/xdr_intXX_t.c: Likewise.
29654         * sunrpc/xdr_rec.c: Likewise.
29655         * sysdeps/generic/ldconfig.h: Likewise.
29656         * sysdeps/generic/ldsodefs.h: Likewise.
29657         * sysdeps/generic/memusage.h: Likewise.
29658         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: Likewise.
29659         * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c: Likewise.
29660         * sysdeps/ieee754/dbl-64/wordsize-64/math_private.h: Likewise.
29661         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Likewise.
29662         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
29663         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
29664         * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: Likewise.
29665         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: Likewise.
29666         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
29667         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
29668         * sysdeps/posix/getaddrinfo.c: Likewise.
29669         * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
29670         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
29671         * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
29672         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
29673         * sysdeps/powerpc/test-gettimebase.c: Likewise.
29674         * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
29675         * sysdeps/unix/sysv/linux/getipv4sourcefilter.c: Likewise.
29676         * sysdeps/unix/sysv/linux/getsourcefilter.c: Likewise.
29677         * sysdeps/unix/sysv/linux/netlinkaccess.h: Likewise.
29678         * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c: Likewise.
29679         * sysdeps/unix/sysv/linux/preadv.c: Likewise.
29680         * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
29681         * sysdeps/unix/sysv/linux/setipv4sourcefilter.c: Likewise.
29682         * sysdeps/unix/sysv/linux/setsourcefilter.c: Likewise.
29683         * sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c: Likewise.
29684         * sysdeps/x86_64/dl-tls.h: Likewise.
29685         * sysdeps/x86_64/dl-tlsdesc.h: Likewise.
29686         * time/alt_digit.c: Likewise.
29687         * time/era.c: Likewise.
29688         * wcsmbs/tst-c16c32-1.c: Likewise.
29690 2013-05-16  Joseph Myers  <joseph@codesourcery.com>
29692         * math/libm-test.inc (struct test_sincos_data): New type.
29693         (RUN_TEST_LOOP_sincos): New macro.
29694         (sincos_test_data): New variable.
29695         (sincos_test): Run tests with RUN_TEST_LOOP_sincos.
29697 2013-05-16  Richard Henderson  <rth@redhat.com>
29699         * math/atest-exp2.c (LIMB64): New macro.
29700         (CONSTSZ): New macro.
29701         (mp_exp1, mp_exp_m1, mp_log2): New variables.
29702         (hexdig): Move ...
29703         (print_mpn_fp): ... to function scope.
29704         (read_mpn_hex): Remove.
29705         (get_log2): Remove.
29706         (exp2_mpn): Use mp_log2.
29707         (main): Use mp_exp1.
29709 2013-05-16  Joseph Myers  <joseph@codesourcery.com>
29711         * math/libm-test.inc: Remove comment about not testing "inexact"
29712         exceptions.
29713         (INEXACT_EXCEPTION): New macro.
29714         (NO_INEXACT_EXCEPTION): Likewise.
29715         (INVALID_EXCEPTION_OK): Update value.
29716         (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
29717         (OVERFLOW_EXCEPTION_OK): Likewise.
29718         (UNDERFLOW_EXCEPTION_OK): Likewise.
29719         (IGNORE_ZERO_INF_SIGN): Likewise.
29720         (ERRNO_UNCHANGED): Likewise.
29721         (ERRNO_EDOM): Likewise.
29722         (ERRNO_ERANGE): Likewise.
29723         (test_exceptions): Handle testing "inexact" exceptions.
29724         (nearbyint_test_data): Use NO_INEXACT_EXCEPTION on all tests.
29725         (rint_test_data): Use NO_INEXACT_EXCEPTION and INEXACT_EXCEPTION.
29726         (rint_test_data) [LDBL_MANT_DIG <= 100]: Disable some tests.
29727         (rint_tonearest_test_data): Use NO_INEXACT_EXCEPTION and
29728         INEXACT_EXCEPTION.
29729         (rint_towardzero_test_data): Likewise.
29730         (rint_downward_test_data): Likewise.
29731         (rint_upward_test_data): Likewise.
29733         * math/libm-test.inc (exp_test_data): Use ERRNO_ERANGE together
29734         with OVERFLOW_EXCEPTION.
29735         (exp10_test_data): Likewise.
29736         (exp2_test_data): Likewise.
29737         (expm1_test_data): Likewise.
29738         (lgamma_test_data): Likewise.
29739         (pow_test_data): Likewise.
29740         (tgamma_test_data): Likewise.
29741         (yn_test_data): Remove duplicate test of overflow.
29743         * math/libm-test.inc (struct test_cc_c_data): New type.
29744         (RUN_TEST_LOOP_cc_c): New macro.
29745         (cpow_test_data): New variable.
29746         (cpow_test): Run tests with RUN_TEST_LOOP_cc_c.
29748         * math/libm-test.inc (struct test_f_L_data): New type.
29749         (RUN_TEST_LOOP_f_L): New macro.
29750         (llrint_test_data): New variable.
29751         (llrint_test): Run tests with RUN_TEST_LOOP_f_L.
29752         (llrint_tonearest_test_data): New variable.
29753         (llrint_test_tonearest): Run tests with RUN_TEST_LOOP_f_L.
29754         (llrint_towardzero_test_data): New variable.
29755         (llrint_test_towardzero): Run tests with RUN_TEST_LOOP_f_L.
29756         (llrint_downward_test_data): New variable.
29757         (llrint_test_downward): Run tests with RUN_TEST_LOOP_f_L.
29758         (llrint_upward_test_data): New variable.
29759         (llrint_test_upward): Run tests with RUN_TEST_LOOP_f_L.
29760         (llround_test_data): New variable.
29761         (llround_test): Run tests with RUN_TEST_LOOP_f_L.
29763 2013-05-13  Peter Collingbourne  <pcc@google.com>
29765         * math/atest-exp2.c (get_log2): Remove const attribute.
29767 2013-05-15  Joseph Myers  <joseph@codesourcery.com>
29769         * math/libm-test.inc (struct test_f_l_data): New type.
29770         (RUN_TEST_LOOP_f_l): New macro.
29771         (lrint_test_data): New variable.
29772         (lrint_test): Run tests with RUN_TEST_LOOP_f_l.
29773         (lrint_tonearest_test_data): New variable.
29774         (lrint_test_tonearest): Run tests with RUN_TEST_LOOP_f_l.
29775         (lrint_towardzero_test_data): New variable.
29776         (lrint_test_towardzero): Run tests with RUN_TEST_LOOP_f_l.
29777         (lrint_downward_test_data): New variable.
29778         (lrint_test_downward): Run tests with RUN_TEST_LOOP_f_l.
29779         (lrint_upward_test_data): New variable.
29780         (lrint_test_upward): Run tests with RUN_TEST_LOOP_f_l.
29781         (lround_test_data): New variable.
29782         (lround_test): Run tests with RUN_TEST_LOOP_f_l.
29784 2013-05-15  Peter Collingbourne  <pcc@google.com>
29786         * sysdeps/x86_64/fpu/math_private.h (MOVQ): New macro.
29787         (EXTRACT_WORDS64) Use where appropriate.
29788         (INSERT_WORDS64) Likewise.
29790         * sysdeps/x86_64/fpu/multiarch/s_fma.c (__fma_fma4): Replace xm
29791         constraints with x constraints.
29792         * sysdeps/x86_64/fpu/multiarch/s_fmaf.c (__fmaf_fma4): Likewise.
29794         * malloc/obstack.c (_obstack_compat): Add initializer.
29796 2013-05-15  Edjunior Machado  <emachado@linux.vnet.ibm.com>
29798         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (siginfo_t): Remove
29799         si_trapno and add si_addr_lsb to _sifields.sigfault.
29800         (si_trapno): Remove macro.
29801         (si_addr_lsb): Define new macro.
29802         (BUS_MCEERR_AR, BUS_MCEERR_AO): Define new values.
29804 2013-05-15  Joseph Myers  <joseph@codesourcery.com>
29806         * math/libm-test.inc (llrint_test): Consistently use TEST_f_L
29807         instead of TEST_f_l.
29808         (llrint_test_tonearest): Likewise.
29809         (llrint_test_towardzero): Likewise.
29810         (llrint_test_downward): Likewise.
29811         (llrint_test_upward): Likewise.
29812         (llround_test): Likewise.
29814         * math/libm-test.inc (struct test_f_i_data): Add comment.
29815         (RUN_TEST_LOOP_f_b): New macro.
29816         (RUN_TEST_LOOP_f_b_tg): Likewise.
29817         (finite_test_data): New variable.
29818         (finite_test): Run tests with RUN_TEST_LOOP_f_b.
29819         (isfinite_test_data): New variable.
29820         (isfinite_test): Run tests with RUN_TEST_LOOP_f_b_tg.
29821         (isinf_test_data): New variable.
29822         (isinf_test): Run tests with RUN_TEST_LOOP_f_b_tg.
29823         (isnan_test_data): New variable.
29824         (isnan_test): Run tests with RUN_TEST_LOOP_f_b_tg.
29825         (isnormal_test_data): New variable.
29826         (isnormal_test): Run tests with RUN_TEST_LOOP_f_b_tg.
29827         (issignaling_test_data): New variable.
29828         (issignaling_test): Run tests with RUN_TEST_LOOP_f_b_tg.
29829         (signbit_test_data): New variable.
29830         (signbit_test): Run tests with RUN_TEST_LOOP_f_b_tg.
29832         * math/libm-test.inc (acos_test_data): Use ERRNO_EDOM together
29833         with INVALID_EXCEPTION.
29834         (acosh_test_data): Likewise.
29835         (asin_test_data): Likewise.
29836         (atanh_test_data): Likewise.
29837         (fmod_test_data): Likewise.
29838         (log_test_data): Likewise.
29839         (log10_test_data): Likewise.
29840         (log2_test_data): Likewise.
29841         (pow_test_data): Likewise.
29842         (sqrt_test_data): Likewise.
29843         (y0_test_data): Likewise.
29844         (y1_test_data): Likewise.
29845         (yn_test_data): Likewise.
29847         * math/libm-test.inc (test_single_errno) [TEST_INLINE]: Disable
29848         function contents.
29850         * math/libm-test.inc (struct test_ff_i_data): New type.
29851         (RUN_TEST_LOOP_ff_i_tg): New macro.
29852         (isgreater_test_data): New variable.
29853         (isgreater_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
29854         (isgreaterequal_test_data): New variable.
29855         (isgreaterequal_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
29856         (isless_test_data): New variable.
29857         (isless_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
29858         (islessequal_test_data): New variable.
29859         (islessequal_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
29860         (islessgreater_test_data): New variable.
29861         (islessgreater_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
29862         (isunordered_test_data): New variable.
29863         (isunordered_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
29865 2013-05-14  David S. Miller  <davem@davemloft.net>
29867         * sysdeps/sparc/fpu/libm-test-ulps: Update.
29869 2013-05-14  Joseph Myers  <joseph@codesourcery.com>
29871         * math/libm-test.inc (RUN_TEST_LOOP_2_f): Fix whitespace.
29873         * math/libm-test.inc (struct test_fF_f1_data): Change type of
29874         extra_test to int.
29875         (struct test_f_i_data): Change type of max_ulp to int.
29877         * math/libm-test.inc (test_ffI_f1_data): New type.
29878         (RUN_TEST_LOOP_ffI_f1): New macro.
29879         (remquo_test_data): New variable.
29880         (remquo_test): Run tests with RUN_TEST_LOOP_ffI_f1.
29882         * setjmp/tst-setjmp-fp.c: New file.
29883         * setjmp/Makefile (tests): Add tst-setjmp-fp.
29884         (link-libm): New variable.
29885         ($(objpfx)tst-setjmp-fp): Depend on $(link-libm).
29887         * math/libm-test.inc (struct test_f_i_data): New type.
29888         (RUN_TEST_LOOP_f_i): New macro.
29889         (RUN_TEST_LOOP_f_i_tg): Likewise.
29890         (fpclassify_test_data): New variable.
29891         (fpclassify_test): Run tests with RUN_TEST_LOOP_f_i_tg.
29892         (ilogb_test_data): New variable.
29893         (ilogb_test): Run tests with RUN_TEST_LOOP_f_i.
29895         * math/libm-test.inc (scalbln_test): Correct function name in END
29896         call.
29898         * math/libm-test.inc (struct test_f_f1_data): Add comment.
29899         (RUN_TEST_LOOP_fI_f1): New macro.
29900         (frexp_test_data): New variable.
29901         (frexp_test): Run tests with RUN_TEST_LOOP_fI_f1.
29903         * math/libm-test.inc (struct test_fF_f1_data): New type.
29904         (RUN_TEST_LOOP_fF_f1): New macro.
29905         (modf_test_data): New variable.
29906         (modf_test): Run tests with RUN_TEST_LOOP_fF_f1.
29908         * math/libm-test.inc (struct test_f_f1_data): New type.
29909         (RUN_TEST_LOOP_f_f1): New macro.
29910         (gamma_test_data): New variable.
29911         (gamma_test): Run tests with RUN_TEST_LOOP_f_f1.
29912         (lgamma_test_data): New variable.
29913         (lgamma_test): Run tests with RUN_TEST_LOOP_f_f1.
29915 2013-05-13  Carlos O'Donell  <carlos@redhat.com>
29917         * elf/dl-hwcaps.c (_dl_important_hwcaps): Comment vDSO hwcap loading.
29918         * elf/ldconfig.c (is_hwcap_platform): Comment each hwcap check.
29919         (main): Comment "tls" pseudo-hwcap.
29921 2013-05-13  Joseph Myers  <joseph@codesourcery.com>
29923         * math/libm-test.inc (struct test_fl_f_data): New type.
29924         (RUN_TEST_LOOP_fl_f): New variable.
29925         (scalbln_test_data): New variable.
29926         (scalbln_test): Run tests with RUN_TEST_LOOP_fl_f.
29928         * math/libm-test.inc (struct test_fi_f_data): New type.
29929         (RUN_TEST_LOOP_fi_f): New macro.
29930         (ldexp_test_data): New variable.
29931         (ldexp_test): Run tests with RUN_TEST_LOOP_fi_f.
29932         (scalbn_test_data): New variable.
29933         (scalbn_test): Run tests with RUN_TEST_LOOP_fi_f.
29935         * math/libm-test.inc (struct test_c_f_data): New type.
29936         (RUN_TEST_LOOP_c_f): New macro.
29937         (cabs_test_data): New variable.
29938         (cabs_test): Run tests with RUN_TEST_LOOP_c_f.
29939         (carg_test_data): New variable.
29940         (carg_test): Run tests with RUN_TEST_LOOP_c_f.
29941         (cimag_test_data): New variable.
29942         (cimag_test): Run tests with RUN_TEST_LOOP_c_f.
29943         (creal_test_data): New variable.
29944         (creal_test): Run tests with RUN_TEST_LOOP_c_f.
29946         * math/libm-test.inc (struct test_if_f_data): New type.
29947         (RUN_TEST_LOOP_if_f): New macro.
29948         (jn_test_data): New variable.
29949         (jn_test): Run tests with RUN_TEST_LOOP_if_f.
29950         (yn_test_data): New variable.
29951         (yn_test): Run tests with RUN_TEST_LOOP_if_f.
29953         * math/libm-test.inc (scalbln_test): Consistently use TEST_fl_f.
29955 2013-05-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
29957         * math/libm-test.inc (M_1_DIV_El): Define using decimal constant.
29958         (log_test_data): Use M_1_DIV_El instead of 1.0 / M_El.
29960 2013-05-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
29962         * benchtests/Makefile (CPPFLAGS-nonlib): Add
29963         -DUSE_CLOCK_GETTIME if USE_CLOCK_GETTIME is defined.
29964         (bench-deps): Add bench-timing.h.
29965         * benchtests-bench-skeleton.c: Include bench-timing.h.
29966         (main): Use TIMING_* macros instead of clock_gettime.
29967         * benchtests/bench-timing.h: New file.
29969         [BZ #14582]
29970         * sysdeps/ieee754/s_lib_version.c (_LIB_VERSION_INTERNAL):
29971         Renamed from _LIB_VERSION.
29972         (_LIB_VERSION): Set as weak alias of _LIB_VERSION_INTERNAL.
29974 2013-05-12  Joseph Myers  <joseph@codesourcery.com>
29976         * math/libm-test.inc (struct test_fff_f_data): New type.
29977         (RUN_TEST_LOOP_fff_f): New macro.
29978         (fma_test_data): New variable.
29979         (fma_test): Run tests with RUN_TEST_LOOP_fff_f.
29980         (fma_towardzero_test_data): New variable.
29981         (fma_test_towardzero): Run tests with RUN_TEST_LOOP_fff_f.
29982         (fma_downward_test_data): New variable.
29983         (fma_test_downward): Run tests with RUN_TEST_LOOP_fff_f.
29984         (fma_upward_test_data): New variable.
29985         (fma_test_upward): Run tests with RUN_TEST_LOOP_fff_f.
29987         * math/libm-test.inc (BUILD_COMPLEX_ULP): New macro.
29988         (struct test_c_c_data): New type.
29989         (RUN_TEST_LOOP_c_c): New macro.
29990         (cacos_test_data): New variable.
29991         (cacos_test): Run tests with RUN_TEST_LOOP_c_c.
29992         (cacosh_test_data): New variable.
29993         (cacosh_test): Run tests with RUN_TEST_LOOP_c_c.
29994         (casin_test_data): New variable.
29995         (casin_test): Run tests with RUN_TEST_LOOP_c_c.
29996         (casinh_test_data): New variable.
29997         (casinh_test): Run tests with RUN_TEST_LOOP_c_c.
29998         (catan_test_data): New variable.
29999         (catan_test): Run tests with RUN_TEST_LOOP_c_c.
30000         (catanh_test_data): New variable.
30001         (catanh_test): Run tests with RUN_TEST_LOOP_c_c.
30002         (ccos_test_data): New variable.
30003         (ccos_test): Run tests with RUN_TEST_LOOP_c_c.
30004         (ccosh_test_data): New variable.
30005         (ccosh_test): Run tests with RUN_TEST_LOOP_c_c.
30006         (cexp_test_data): New variable.
30007         (cexp_test): Run tests with RUN_TEST_LOOP_c_c.
30008         (clog_test_data): New variable.
30009         (clog_test): Run tests with RUN_TEST_LOOP_c_c.
30010         (clog10_test_data): New variable.
30011         (clog10_test): Run tests with RUN_TEST_LOOP_c_c.
30012         (conj_test_data): New variable.
30013         (conj_test): Run tests with RUN_TEST_LOOP_c_c.
30014         (cproj_test_data): New variable.
30015         (cproj_test): Run tests with RUN_TEST_LOOP_c_c.
30016         (csin_test_data): New variable.
30017         (csin_test): Run tests with RUN_TEST_LOOP_c_c.
30018         (csinh_test_data): New variable.
30019         (csinh_test): Run tests with RUN_TEST_LOOP_c_c.
30020         (csqrt_test_data): New variable.
30021         (csqrt_test): Run tests with RUN_TEST_LOOP_c_c.
30022         (ctan_test_data): New variable.
30023         (ctan_test): Run tests with RUN_TEST_LOOP_c_c.
30024         (ctan_tonearest_test_data): New variable.
30025         (ctan_test_tonearest): Run tests with RUN_TEST_LOOP_c_c.
30026         (ctan_towardzero_test_data): New variable.
30027         (ctan_test_towardzero): Run tests with RUN_TEST_LOOP_c_c.
30028         (ctan_downward_test_data): New variable.
30029         (ctan_test_downward): Run tests with RUN_TEST_LOOP_c_c.
30030         (ctan_upward_test_data): New variable.
30031         (ctan_test_upward): Run tests with RUN_TEST_LOOP_c_c.
30032         (ctanh_test_data): New variable.
30033         (ctanh_test): Run tests with RUN_TEST_LOOP_c_c.
30034         (ctanh_tonearest_test_data): New variable.
30035         (ctanh_test_tonearest): Run tests with RUN_TEST_LOOP_c_c.
30036         (ctanh_towardzero_test_data): New variable.
30037         (ctanh_test_towardzero): Run tests with RUN_TEST_LOOP_c_c.
30038         (ctanh_downward_test_data): New variable.
30039         (ctanh_test_downward): Run tests with RUN_TEST_LOOP_c_c.
30040         (ctanh_upward_test_data): New variable.
30041         (ctanh_test_upward): Run tests with RUN_TEST_LOOP_c_c.
30042         * math/gen-libm-test.pl (get_ulps): Use BUILD_COMPLEX_ULP instead
30043         of BUILD_COMPLEX.
30045         * math/libm-test.inc (struct test_ff_f_data): New type.
30046         (struct test_ff_f_data_nexttoward): Likewise.
30047         (RUN_TEST_LOOP_2_f): New macro.
30048         (RUN_TEST_LOOP_ff_f): Likewise.
30049         (atan2_test_data): New variable.
30050         (atan2_test): Run tests with RUN_TEST_LOOP_ff_f.
30051         (copysign_test_data): New variable.
30052         (copysign_test): Run tests with RUN_TEST_LOOP_ff_f.
30053         (fdim_test_data): New variable.
30054         (fdim_test): Run tests with RUN_TEST_LOOP_ff_f.
30055         (fmax_test_data): New variable.
30056         (fmax_test): Run tests with RUN_TEST_LOOP_ff_f.
30057         (fmin_test_data): New variable.
30058         (fmin_test): Run tests with RUN_TEST_LOOP_ff_f.
30059         (fmod_test_data): New variable.
30060         (fmod_test): Run tests with RUN_TEST_LOOP_ff_f.
30061         (hypot_test_data): New variable.
30062         (hypot_test): Run tests with RUN_TEST_LOOP_ff_f.
30063         (nextafter_test_data): New variable.
30064         (nextafter_test): Run tests with RUN_TEST_LOOP_ff_f.
30065         (nexttoward_test_data): New variable.
30066         (nexttoward_test): Run tests with RUN_TEST_LOOP_ff_f.
30067         (pow_test_data): New variable.
30068         (pow_test): Run tests with RUN_TEST_LOOP_ff_f.
30069         (pow_tonearest_test_data): New variable.
30070         (pow_test_tonearest): Run tests with RUN_TEST_LOOP_ff_f.
30071         (pow_towardzero_test_data): New variable.
30072         (pow_test_towardzero): Run tests with RUN_TEST_LOOP_ff_f.
30073         (pow_downward_test_data): New variable.
30074         (pow_test_downward): Run tests with RUN_TEST_LOOP_ff_f.
30075         (pow_upward_test_data): New variable.
30076         (pow_test_upward): Run tests with RUN_TEST_LOOP_ff_f.
30077         (remainder_test_data): New variable.
30078         (remainder_test): Run tests with RUN_TEST_LOOP_ff_f.
30079         (scalb_test_data): New variable.
30080         (scalb_test): Run tests with RUN_TEST_LOOP_ff_f.
30081         * sysdeps/i386/fpu/libm-test-ulps: Update.
30083 2013-05-11  Joseph Myers  <joseph@codesourcery.com>
30085         * math/libm-test.inc (fma_test): Use max_value instead of local
30086         variable fltmax.
30087         (nextafter_test): Likewise.
30089         * math/libm-test.inc (acos_towardzero_test_data): New variable.
30090         (acos_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
30091         (acos_downward_test_data): New variable.
30092         (acos_test_downward): Run tests with RUN_TEST_LOOP_f_f.
30093         (acos_upward_test_data): New variable.
30094         (acos_test_upward): Run tests with RUN_TEST_LOOP_f_f.
30095         (acosh_test_data): New variable.
30096         (acosh_test): Run tests with RUN_TEST_LOOP_f_f.
30097         (asin_test_data): New variable.
30098         (asin_test): Run tests with RUN_TEST_LOOP_f_f.
30099         (asin_tonearest_test_data): New variable.
30100         (asin_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
30101         (asin_towardzero_test_data): New variable.
30102         (asin_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
30103         (asin_downward_test_data): New variable.
30104         (asin_test_downward): Run tests with RUN_TEST_LOOP_f_f.
30105         (asin_upward_test_data): New variable.
30106         (asin_test_upward): Run tests with RUN_TEST_LOOP_f_f.
30107         (asinh_test_data): New variable.
30108         (asinh_test): Run tests with RUN_TEST_LOOP_f_f.
30109         (atan_test_data): New variable.
30110         (atan_test): Run tests with RUN_TEST_LOOP_f_f.
30111         (atanh_test_data): New variable.
30112         (atanh_test): Run tests with RUN_TEST_LOOP_f_f.
30113         (cbrt_test_data): New variable.
30114         (cbrt_test): Run tests with RUN_TEST_LOOP_f_f.
30115         (ceil_test_data): New variable.
30116         (ceil_test): Run tests with RUN_TEST_LOOP_f_f.
30117         (cos_test_data): New variable.
30118         (cos_test): Run tests with RUN_TEST_LOOP_f_f.
30119         (cos_tonearest_test_data): New variable.
30120         (cos_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
30121         (cos_towardzero_test_data): New variable.
30122         (cos_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
30123         (cos_downward_test_data): New variable.
30124         (cos_test_downward): Run tests with RUN_TEST_LOOP_f_f.
30125         (cos_upward_test_data): New variable.
30126         (cos_test_upward): Run tests with RUN_TEST_LOOP_f_f.
30127         (cosh_test_data): New variable.
30128         (cosh_test): Run tests with RUN_TEST_LOOP_f_f.
30129         (cosh_tonearest_test_data): New variable.
30130         (cosh_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
30131         (cosh_towardzero_test_data): New variable.
30132         (cosh_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
30133         (cosh_downward_test_data): New variable.
30134         (cosh_test_downward): Run tests with RUN_TEST_LOOP_f_f.
30135         (cosh_upward_test_data): New variable.
30136         (cosh_test_upward): Run tests with RUN_TEST_LOOP_f_f.
30137         (erf_test_data): New variable.
30138         (erf_test): Run tests with RUN_TEST_LOOP_f_f.
30139         (erfc_test_data): New variable.
30140         (erfc_test): Run tests with RUN_TEST_LOOP_f_f.
30141         (exp_test_data): New variable.
30142         (exp_test): Run tests with RUN_TEST_LOOP_f_f.
30143         (exp_tonearest_test_data): New variable.
30144         (exp_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
30145         (exp_towardzero_test_data): New variable.
30146         (exp_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
30147         (exp_downward_test_data): New variable.
30148         (exp_test_downward): Run tests with RUN_TEST_LOOP_f_f.
30149         (exp_upward_test_data): New variable.
30150         (exp_test_upward): Run tests with RUN_TEST_LOOP_f_f.
30151         (exp10_test_data): New variable.
30152         (exp10_test): Run tests with RUN_TEST_LOOP_f_f.
30153         (exp2_test_data): New variable.
30154         (exp2_test): Run tests with RUN_TEST_LOOP_f_f.
30155         (expm1_test_data): New variable.
30156         (expm1_test): Run tests with RUN_TEST_LOOP_f_f.
30157         (fabs_test_data): New variable.
30158         (fabs_test): Run tests with RUN_TEST_LOOP_f_f.
30159         (floor_test_data): New variable.
30160         (floor_test): Run tests with RUN_TEST_LOOP_f_f.
30161         (j0_test_data): New variable.
30162         (j0_test): Run tests with RUN_TEST_LOOP_f_f.
30163         (j1_test_data): New variable.
30164         (j1_test): Run tests with RUN_TEST_LOOP_f_f.
30165         (log_test_data): New variable.
30166         (log_test): Run tests with RUN_TEST_LOOP_f_f.
30167         (log10_test_data): New variable.
30168         (log10_test): Run tests with RUN_TEST_LOOP_f_f.
30169         (log1p_test_data): New variable.
30170         (log1p_test): Run tests with RUN_TEST_LOOP_f_f.
30171         (log2_test_data): New variable.
30172         (log2_test): Run tests with RUN_TEST_LOOP_f_f.
30173         (logb_test_data): New variable.
30174         (logb_test): Run tests with RUN_TEST_LOOP_f_f.
30175         (logb_downward_test_data): New variable.
30176         (logb_test_downward): Run tests with RUN_TEST_LOOP_f_f.
30177         (nearbyint_test_data): New variable.
30178         (nearbyint_test): Run tests with RUN_TEST_LOOP_f_f.
30179         (rint_test_data): New variable.
30180         (rint_test): Run tests with RUN_TEST_LOOP_f_f.
30181         (rint_tonearest_test_data): New variable.
30182         (rint_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
30183         (rint_towardzero_test_data): New variable.
30184         (rint_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
30185         (rint_downward_test_data): New variable.
30186         (rint_test_downward): Run tests with RUN_TEST_LOOP_f_f.
30187         (rint_upward_test_data): New variable.
30188         (rint_test_upward): Run tests with RUN_TEST_LOOP_f_f.
30189         (round_test_data): New variable.
30190         (round_test): Run tests with RUN_TEST_LOOP_f_f.
30191         (sin_test_data): New variable.
30192         (sin_test): Run tests with RUN_TEST_LOOP_f_f.
30193         (sin_tonearest_test_data): New variable.
30194         (sin_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
30195         (sin_towardzero_test_data): New variable.
30196         (sin_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
30197         (sin_downward_test_data): New variable.
30198         (sin_test_downward): Run tests with RUN_TEST_LOOP_f_f.
30199         (sin_upward_test_data): New variable.
30200         (sin_test_upward): Run tests with RUN_TEST_LOOP_f_f.
30201         (sinh_test_data): New variable.
30202         (sinh_test): Run tests with RUN_TEST_LOOP_f_f.
30203         (sinh_tonearest_test_data): New variable.
30204         (sinh_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
30205         (sinh_towardzero_test_data): New variable.
30206         (sinh_towardzero): Run tests with RUN_TEST_LOOP_f_f.
30207         (sinh_downward_test_data): New variable.
30208         (sinh_test_downward): Run tests with RUN_TEST_LOOP_f_f.
30209         (sinh_upward_test_data): New variable.
30210         (sinh_test_upward): Run tests with RUN_TEST_LOOP_f_f.
30211         (sqrt_test_data): New variable.
30212         (sqrt_test): Run tests with RUN_TEST_LOOP_f_f.
30213         (tan_test_data): New variable.
30214         (tan_test): Run tests with RUN_TEST_LOOP_f_f.
30215         (tan_tonearest_test_data): New variable.
30216         (tan_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
30217         (tan_towardzero_test_data): New variable.
30218         (tan_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
30219         (tan_downward_test_data): New variable.
30220         (tan_test_downward): Run tests with RUN_TEST_LOOP_f_f.
30221         (tan_upward_test_data): New variable.
30222         (tan_test_upward): Run tests with RUN_TEST_LOOP_f_f.
30223         (tanh_test_data): New variable.
30224         (tanh_test): Run tests with RUN_TEST_LOOP_f_f.
30225         (tgamma_test_data): New variable.
30226         (tgamma_test): Run tests with RUN_TEST_LOOP_f_f.
30227         (trunc_test_data): New variable.
30228         (trunc_test): Run tests with RUN_TEST_LOOP_f_f.
30229         (y0_test_data): New variable.
30230         (y0_test): Run tests with RUN_TEST_LOOP_f_f.
30231         (y1_test_data): New variable.
30232         (y1_test): Run tests with RUN_TEST_LOOP_f_f.
30233         (significand_test_data): New variable.
30234         (significand_test): Run tests with RUN_TEST_LOOP_f_f.
30236 2013-05-10  Christian Grönke  <cgr_bugs@sysgo.com>
30238         [BZ #12387]
30239         * sysdeps/unix/sysv/linux/sh/getgid.c: New file.
30241 2013-05-10  Pino Toscano  <toscano.pino@tiscali.it>
30243         * sysdeps/mach/hurd/bits/statvfs.h: Add ST_NOATIME.
30245 2013-05-10  Andreas Jaeger  <aj@suse.de>
30247         [BZ #15448]
30248         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_SET_S)
30249         (__CPU_CLR_S, __CPU_ISSET_S): Avoid integer overflow.
30251 2013-05-10  Joseph Myers  <joseph@codesourcery.com>
30253         * math/gen-libm-test.pl (adjust_arg): New function.
30254         (special_functions): Handle generating output in both functions
30255         and arrays.
30256         (parse_args): Likewise.
30257         (generate_testfile): Handle START_DATA and END_DATA.  Pass extra
30258         $in_func argument to parse_args.
30259         * math/libm-test.inc (struct test_f_f_data): New type.
30260         (IF_ROUND_INIT_): New macro.
30261         (IF_ROUND_INIT_FE_DOWNWARD): Likewise.
30262         (IF_ROUND_INIT_FE_TONEAREST): Likewise.
30263         (IF_ROUND_INIT_FE_TOWARDZERO): Likewise.
30264         (IF_ROUND_INIT_FE_UPWARD): Likewise.
30265         (ROUND_RESTORE_): Likewise.
30266         (ROUND_RESTORE_FE_DOWNWARD): Likewise.
30267         (ROUND_RESTORE_FE_TONEAREST): Likewise.
30268         (ROUND_RESTORE_FE_TOWARDZERO): Likewise.
30269         (ROUND_RESTORE_FE_UPWARD): Likewise.
30270         (RUN_TEST_LOOP_f_f): New macro.
30271         (acos_test_data): New variable.
30272         (acos_test): Run tests with RUN_TEST_LOOP_f_f.
30273         (acos_tonearest_test_data): New variable.
30274         (acos_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
30276 2013-05-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
30278         * benchtests/bench-skeleton.c (startup): Fix coding style.
30280 2013-05-10  Joseph Myers  <joseph@codesourcery.com>
30282         [BZ #6809]
30283         * math/w_tgamma.c (__tgamma): Also call __kernel_standard for
30284         negative infinity argument.
30285         * math/w_tgammaf.c (__tgammaf): Also call __kernel_standard_f for
30286         negative infinity argument.
30287         * math/w_tgammal.c (__tgammal): Also call __kernel_standard_l for
30288         negative infinity argument.
30289         * math/libm-test.inc (tgamma_test): Expect errno to be set for
30290         domain errors.
30292 2013-05-10  Florian Weimer  <fweimer@redhat.com>
30294         * elf/sprof.c (load_profdata): Use fstat64 instead of fstat.
30295         * iconv/iconv_charmap.c (charmap_conversion): Likewise.
30296         * iconv/iconv_prog.c (main): Likewise.
30297         * locale/programs/charmap-dir.c (charmap_readdir)
30298         (fopen_uncompressed): Likewise.
30299         * locale/programs/locfile.c (siblings_uncached)
30300         (write_locale_data): Use lstat64 instead of lstat.
30301         * sunrpc/rpc_main.c (find_cpp, checkfiles): Use stat64 instead of
30302         stat.
30304 2013-05-10  Andreas Jaeger  <aj@suse.de>
30306         [BZ #15395]
30307         * sunrpc/rpc_main.c (main): Invoke setlocale and textdomain for
30308         localization.
30309         Include <locale.h>.
30311 2013-05-09  Carlos O'Donell  <carlos@redhat.com>
30313         * elf/dl-close.c (_dl_close_worker): Add comments.
30315 2013-05-09  Joseph Myers  <joseph@codesourcery.com>
30317         [BZ #15359]
30318         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (c): Use 106 bits for
30319         high part of pi/2.
30320         (__ieee754_rem_pio2l): Update comments.
30322         [BZ #15429]
30323         * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c (c): Use 113 bits for
30324         high part of pi/2.
30325         (__ieee754_rem_pio2l): Update comments.
30327         * math/libm-test.inc (M_SQRT_2_2): Remove macro.
30328         (csqrt_test): Use M_SQRT1_2l instead of M_SQRT_2_2.
30330         * math/libm-test.inc (carg_test): Use M_PI_34l instead of 3 *
30331         M_PI_4l.
30333         * math/libm-test.inc (M_PI_34l): Define using decimal constant.
30334         (M_PI_34_LOG10El): Likewise.
30335         (M_PI2_LOG10El): Likewise.
30336         (M_PI4_LOG10El): Likewise.
30337         (M_PI_LOG10El): Likewise.
30339 2013-05-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
30341         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
30343 2013-05-08  Joseph Myers  <joseph@codesourcery.com>
30345         * math/libm-test.inc (PLUS_ZERO_INIT): New macro.
30346         (MINUS_ZERO_INIT): Likewise.
30347         (PLUS_INFTY_INIT): Likewise.
30348         (MINUS_INFTY_INIT): Likewise.
30349         (QNAN_VALUE_INIT): Likewise.
30350         (MAX_VALUE_INIT): Likewise.
30351         (MIN_VALUE_INIT): Likewise.
30352         (MIN_SUBNORM_VALUE_INIT): Likewise.
30353         (plus_zero): Initialize with PLUS_ZERO_INIT.
30354         (minus_zero): Initialize with MINUS_ZERO_INIT.
30355         (plus_infty): Initialize with PLUS_INFTY_INIT.
30356         (minus_infty): Initialize with MINUS_INFTY_INIT.
30357         (qnan_value): Initialize with QNAN_VALUE_INIT.
30358         (max_value): Initialize with MAX_VALUE_INIT.
30359         (min_value): Initialize with MIN_VALUE_INIT.
30360         (min_subnorm_value): Initialize with MIN_SUBNORM_VALUE_INIT.
30362         * math/libm-test.inc (RUN_TEST_if_f): New macro.
30363         (jn_test): Use TEST_if_f instead of TEST_ff_f.
30364         (ldexp_text): Use TEST_fi_i instead of TEST_ff_f.
30365         (yn_test): Use TEST_if_f instead of TEST_ff_f.
30367         * math/libm-test.inc (RUN_TEST_f_f): New macro.
30368         (RUN_TEST_2_f): Likewise.
30369         (RUN_TEST_ff_f): Likewise.
30370         (RUN_TEST_fi_f): Likewise.
30371         (RUN_TEST_fl_f): Likewise.
30372         (RUN_TEST_fff_f): Likewise.
30373         (RUN_TEST_c_f): Likewise.
30374         (RUN_TEST_f_f1): Likewise.
30375         (RUN_TEST_fF_f1): Likewise.
30376         (RUN_TEST_fI_f1): Likewise.
30377         (RUN_TEST_ffI_f1): Likewise.
30378         (RUN_TEST_c_c): Likewise.
30379         (RUN_TEST_cc_c): Likewise.
30380         (RUN_TEST_f_i): Likewise.
30381         (RUN_TEST_f_i_tg): Likewise.
30382         (RUN_TEST_ff_i_tg): Likewise.
30383         (RUN_TEST_f_b): Likewise.
30384         (RUN_TEST_f_b_tg): Likewise.
30385         (RUN_TEST_f_l): Likewise.
30386         (RUN_TEST_f_L): Likewise.
30387         (RUN_TEST_sincos): Likewise.
30388         * math/gen-libm-test.pl (new_test): Take new argument to indicate
30389         whether to show exceptions.  Do not include ");\n" in return
30390         value.
30391         (special_functions): Output call to RUN_TEST_sincos instead of
30392         check_float calls.  Update calls to new_test.
30393         (parse_args): Output call to single RUN_TEST_* macro instead of
30394         check_* calls and other assignments.  Update calls to new_test.
30396         [BZ #2546]
30397         [BZ #2560]
30398         [BZ #5159]
30399         [BZ #15426]
30400         * sysdeps/ieee754/k_standard.c (__kernel_standard): Copy sign of
30401         input to result for tgamma overflow.
30402         * sysdeps/ieee754/dbl-64/e_gamma_r.c: Include <float.h>.
30403         (gamma_coeff): New variable.
30404         (NCOEFF): New macro.
30405         (gamma_positive): New function.
30406         (__ieee754_gamma_r): Handle positive infinity, NaN, overflow and
30407         underflow here.  Use gamma_positive instead of exp (lgamma) for
30408         other arguments.
30409         * sysdeps/ieee754/flt-32/e_gammaf_r.c: Include <float.h>.
30410         (gamma_coeff): New variable.
30411         (NCOEFF): New macro.
30412         (gammaf_positive): New function.
30413         (__ieee754_gammaf_r): Handle positive infinity, NaN, overflow and
30414         underflow here.  Use gamma_positive instead of exp (lgamma) for
30415         other arguments.
30416         * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Include <float.h>.
30417         (gamma_coeff): New variable.
30418         (NCOEFF): New macro.
30419         (gammal_positive): New function.
30420         (__ieee754_gammal_r): Handle positive infinity, NaN, overflow and
30421         underflow here.  Use gamma_positive instead of exp (lgamma) for
30422         other arguments.
30423         * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Include <float.h>.
30424         (gamma_coeff): New variable.
30425         (NCOEFF): New macro.
30426         (gammal_positive): New function.
30427         (__ieee754_gammal_r): Handle positive infinity, overflow and
30428         underflow here.  Handle NaN the same as positive infinity.  Remove
30429         check x < 0xffffffff for negative integers.  Use gamma_positive
30430         instead of exp (lgamma) for other arguments.
30431         * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Include <float.h>.
30432         (gamma_coeff): New variable.
30433         (NCOEFF): New macro.
30434         (gammal_positive): New function.
30435         * sysdeps/ieee754/dbl-64/gamma_product.c: New file.
30436         * sysdeps/ieee754/dbl-64/gamma_productf.c: Likewise.
30437         * sysdeps/ieee754/ldbl-128/gamma_productl.c: Likewise.
30438         * sysdeps/ieee754/ldbl-128ibm/gamma_productl.c: Likewise.
30439         * sysdeps/ieee754/ldbl-96/gamma_product.c: Likewise.
30440         * sysdeps/ieee754/ldbl-96/gamma_productl.c: Likewise.
30441         * sysdeps/generic/math_private.h (__gamma_productf): New
30442         prototype.
30443         (__gamma_product): Likewise.
30444         (__gamma_productl): Likewise.
30445         * math/Makefile (libm-calls): Add gamma_product.
30446         * math/libm-test.inc (tgamma_test): Add more tests.
30447         * sysdeps/i386/fpu/libm-test-ulps: Update.
30448         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
30450 2013-05-08  Ondřej Bílka  <neleai@seznam.cz>
30452         * benchtests/bench-skeleton.c (main): Preheat CPU.
30454 2013-05-07  Aurelien Jarno <aurelien@aurel32.net>
30456         * misc/sys/param.h (DEV_BSIZE): Define only if not already defined.
30458 2013-05-07  Roland McGrath  <roland@hack.frob.com>
30460         * sysdeps/generic/ldsodefs.h [IS_IN_rtld]: Declare _dl_skip_args
30461         and _dl_skip_args_internal.
30463 2013-05-07  Carlos O'Donell  <carlos@redhat.com>
30465         * manual/message.texi (Message Translation): Talk about users.
30466         Message to key mapping impacts design.
30468 2013-05-06  Roland McGrath  <roland@hack.frob.com>
30470         * sysdeps/unix/sysv/linux/wordsize-64/glob64.c: New file.
30472         * elf/dl-open.c: Remove declaration of _dl_sysdep_start.
30474         * sysdeps/unix/sysv/linux/wordsize-64/glob64.c: Moved to ...
30475         * sysdeps/wordsize-64/glob64.c: ... here.
30477         * sysdeps/generic/not-cancel.h (NO_CANCELLATION): New macro.
30478         (pause_not_cancel, nanosleep_not_cancel, sigsuspend_not_cancel):
30479         New macros.
30481         * debug/getlogin_r_chk.c: Moved to ...
30482         * login/getlogin_r_chk.c: ... here.
30483         * debug/Makefile (routines): Move getlogin_r_chk to ...
30484         * login/Makefile (routines): ... here.
30485         * debug/Versions (libc: GLIBC_2.4): Move getlogin_r_chk to ...
30486         * login/Versions (libc: GLIBC_2.4): ... here.
30488         * io/poll.c (__poll): Renamed from poll.
30489         Add libc_hidden_def.
30490         (poll): Define as weak alias.
30492         * debug/ptsname_r_chk.c: Moved to ...
30493         * login/ptsname_r_chk.c: ... here.
30494         * debug/Makefile (routines): Move ptsname_r_chk to ...
30495         * login/Makefile (routines): ... here.
30496         * debug/Versions (libc: GLIBC_2.4): Move __ptsname_r_chk to ...
30497         * login/Versions (libc: GLIBC_2.4): ... here.
30499         * posix/getlogin.c: Moved to ...
30500         * login/getlogin.c: ... here.
30501         * posix/getlogin_r.c: Moved to ...
30502         * login/getlogin_r.c: ... here.
30503         * posix/getlogin_r.c: Moved to ...
30504         * login/getlogin_r.c: ... here.
30505         * posix/Makefile (routines): Move getlogin, getlogin_r, setlogin to ...
30506         * login/Makefile (routines): ... here.
30507         * posix/Versions (libc: GLIBC_2.0): Move setlogin to ...
30508         * login/Versions (libc: GLIBC_2.0): ... here.
30510         * resource/setrlimit.c (__setrlimit): Renamed from setrlimit.
30511         (setrlimit): Define as weak alias.
30513         * sysdeps/posix/truncate.c (__truncate): Renamed from truncate.
30514         Call __ names for open, ftruncate, and close.
30515         For LENGTH==0 case, just use O_TRUNC rather than calling ftruncate.
30516         (truncate): Define as weak alias.
30518 2013-05-06  Joseph Myers  <joseph@codesourcery.com>
30520         * math/gen-libm-test.pl (parse_args): Initialize x before each
30521         test of frexp, modf and remquo.
30523         * math/libm-test.inc (gamma_test): Consistently use TEST_f_f1 to
30524         test signgam value.
30526 2013-05-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
30528         [BZ #15418]
30529         [BZ #15419]
30530         * sysdeps/powerpc/fpu/e_hypot.c: Fix spurious FP exception generated by
30531         internal tests.
30532         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
30534 2013-05-06  Roland McGrath  <roland@hack.frob.com>
30536         * elf/dl-writev.h: New file.
30537         * elf/dl-misc.c: Include it.
30538         (_dl_debug_vdprintf): Call _dl_writev instead of __writev et al.
30539         * sysdeps/unix/sysv/linux/dl-writev.h: New file.
30541 2013-05-04  Joseph Myers  <joseph@codesourcery.com>
30543         * math/libm-test.inc (noXFails): Remove variable.
30544         (noXPasses): Likewise.
30545         (BUILD_COMPLEX_INT): Remove macro.
30546         (print_screen): Remove xfail argument.
30547         (print_screen_max_error): Likewise.
30548         (update_stats): Likewise.
30549         (print_max_error): Likewise.  Update calls to other affected
30550         functions.
30551         (print_complex_max_error): Likewise.
30552         (test_single_exception): Update calls to print_screen.
30553         (test_single_errno): Likewise.
30554         (check_float_internal): Remove xfail argument.  Update calls to
30555         other affected functions.
30556         (check_float): Likewise.
30557         (check_complex): Likewise.
30558         (check_int): Likewise.
30559         (check_long): Likewise.
30560         (check_bool): Likewise.
30561         (check_longlong): Likewise.
30562         (main): Don't print noXFails and noXPasses.
30563         * math/gen-libm-test.pl (top level): Don't mention expected
30564         failure handling in comment.
30565         (new_test): Don't handle expected failures.
30566         (parse_args): Don't mention expected failure handling in comment.
30567         (generate_testfile): Don't handle expected failures.
30568         (parse_ulps): Likewise.
30569         (print_ulps_file): Likewise.
30570         (get_failure): Remove function.
30571         (output_test): Don't handle expected failures.
30572         * make/README.libm-test: Don't mention expected failure handling.
30574         * math/libm-test.inc (plus_zero): Make const.  Add initializer.
30575         (minus_zero): Likewise.
30576         (plus_infty): Likewise.
30577         (minus_infty): Likewise.
30578         (qnan_value): Likewise.
30579         (max_value): Likewise.
30580         (min_value): Likewise.
30581         (min_subnorm_value): Likewise.
30582         (initialize): Do not initialize those variables dynamically.
30584 2013-05-03  Roland McGrath  <roland@hack.frob.com>
30586         * io/open.c (__open_2): Moved to ...
30587         * io/open_2.c: ... this new file.
30588         * io/open64.c (__open64_2): Moved to ...
30589         * io/open64_2.c: ... this new file.
30590         * io/openat.c (__openat_2): Moved to ...
30591         * io/openat_2.c: ... this new file.
30592         * io/openat64.c (__openat64_2): Moved to ...
30593         * io/openat64_2.c: ... this new file.
30594         * io/Makefile (routines): Add them.
30595         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Remove them.
30596         * sysdeps/unix/sysv/linux/open_2.c: File removed.
30597         * sysdeps/unix/sysv/linux/open64_2.c: File removed.
30598         * sysdeps/unix/sysv/linux/openat.c (__OPENAT_2): Removed.
30599         * sysdeps/unix/sysv/linux/openat64.c (__OPENAT_2): Removed.
30600         * sysdeps/unix/sysv/linux/wordsize-64/openat.c (__openat_2): Removed.
30601         (__openat64): Add hidden_ver.
30602         * sysdeps/mach/hurd/open.c (__open_2, __open64_2): Removed.
30603         * sysdeps/mach/hurd/openat.c (__openat_2): Removed.
30605         * elf/dl-sysdep.c (_dl_sysdep_start) [NEED_DL_SYSINFO]:
30606         Separately conditionalize setting of GLRO(dl_sysinfo) so
30607         that the GLRO(dl_sysinfo_dso) test is under [NEED_DL_SYSINFO_DSO]
30608         as well, but the actual setting is only under [NEED_DL_SYSINFO].
30610 2013-04-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
30612         * sysdeps/unix/sysv/linux/powerpc/Versions: Add __vdso_time symbol.
30613         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Add __vdso_time
30614         definition.
30615         (VDSO_IFUNC_RET): Cast to void * to silence compiler warning.
30616         * sysdeps/unix/sysv/linux/powerpc/init-first.c
30617         (_libc_vdso_platform_setup): Add __vdso_time initialization.
30618         * sysdeps/unix/sysv/linux/powerpc/time.c: New file: time implementation
30619         for PowerPC using vDSO where is avaliable or gettimeofday as a fallback.
30621 2013-05-03  Joseph Myers  <joseph@codesourcery.com>
30623         * math/libm-test.inc (lgamma_test): Consistently use TEST_f_f1 to
30624         test signgam value.
30626         * math/libm-test.inc (hypot_test): Do not use
30627         IGNORE_ZERO_INF_SIGN.
30629 2013-05-03  Andreas Jaeger  <aj@suse.de>
30631         * sysdeps/gnu/netinet/tcp.h (TCP_TIMESTAMP): New value, from
30632         Linux 3.9.
30633         * sysdeps/unix/sysv/linux/bits/socket.h (PF_VSOCK, AF_VSOCK): Add.
30634         (PF_MAX): Adjust for VSOCK change.
30636 2013-05-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
30638         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
30640 2013-05-02  Carlos O'Donell  <carlos@redhat.com>
30642         [BZ #15264]
30643         * localedata/locales/en_CA (LC_MESSAGES): Define yesstr and nostr.
30644         * localedata/locales/es_AR (LC_MESSAGES): Copy es_ES.
30645         * localedata/locales/es_ES (LC_MESSAGES): Define yesstr and nostr.
30647 2013-05-02  David S. Miller  <davem@davemloft.net>
30649         * sysdeps/sparc/fpu/libm-test-ulps: Update.
30651 2013-05-01  Ondřej Bílka  <neleai@seznam.cz>
30653         * string/bits/string2.h (__strcmp_cg): Call __strcmp_gc.
30655 2013-05-01  Roland McGrath  <roland@hack.frob.com>
30657         * sysdeps/posix/opendir.c: Include <sys/param.h> to get MIN/MAX macros.
30659 2013-05-01  Richard Smith  <richard@metafoo.co.uk>
30661         [BZ #14952]
30662         * misc/sys/cdefs.h (__extern_inline, __extern_always_inline)
30663         [__GNUC__ && (__GNUC_STDC_INLINE__ || __GNUC_GNU_INLINE__)]:
30664         Use __attribute__ ((__gnu_inline__)).
30665         [__GNUC__ && !(__GNUC_STDC_INLINE__ || __GNUC_GNU_INLINE__)]:
30666         Don't use __attribute__ ((__gnu_inline__)).
30668 2013-05-01  Joseph Myers  <joseph@codesourcery.com>
30670         [BZ #15423]
30671         * math/s_catan.c (__catan): Handle small real or imaginary part of
30672         input specially to avoid spurious underflow.
30673         * math/s_catanf.c (__catanf): Likewise.
30674         * math/s_catanh.c (__catanh): Likewise.
30675         * math/s_catanhf.c (__catanhf): Likewise.
30676         * math/s_catanhl.c (__catanhl): Likewise.
30677         * math/s_catanl.c (__catanl): Likewise.
30678         * math/libm-test.inc (catan_test): Add more tests.
30679         (catanh_test): Likewise.
30680         * sysdeps/i386/fpu/libm-test-ulps: Update.
30681         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
30683 2013-04-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
30685         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
30687 2013-04-30  Joseph Myers  <joseph@codesourcery.com>
30689         [BZ #15416]
30690         * math/s_catan.c (__catan): Compute expressions 1 - x^2 - y^2 more
30691         accurately for denominator in atan2.
30692         * math/s_catanf.c (__catanf): Likewise.
30693         * math/s_catanh.c (__catanh): Likewise.
30694         * math/s_catanhf.c (__catanhf): Likewise.
30695         * math/s_catanhl.c (__catanhl): Likewise.
30696         * math/s_catanl.c (__catanl): Likewise.
30697         * math/libm-test.inc (catan_test): Add more tests.
30698         (catanh_test): Likewise.
30699         * sysdeps/i386/fpu/libm-test-ulps: Update.
30700         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
30702 2013-04-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
30704         * sysdeps/ieee754/dbl-64/s_sin.c: Format code.
30706         * benchtests/Makefile (bench): Remove slow benchmarks.
30707         * benchtests/atan-inputs: Add slow benchmark inputs.
30708         * benchtests/bench-modf.c (NUM_VARIANTS): Define.
30709         (BENCH_FUNC): Accept variant offset.
30710         (VARIANT): Define.
30711         * benchtests/bench-skeleton.c (main): Run benchmark for each
30712         variant.
30713         * benchtests/cos-inputs: Add slow benchmark inputs.
30714         * benchtests/exp-inputs: Likewise.
30715         * benchtests/pow-inputs: Likewise.
30716         * benchtests/sin-inputs: Likewise.
30717         * benchtests/slowatan-inputs: Remove.
30718         * benchtests/slowatan.c: Remove.
30719         * benchtests/slowcos-inputs: Remove.
30720         * benchtests/slowcos.c: Remove.
30721         * benchtests/slowexp-inputs: Remove.
30722         * benchtests/slowexp.c: Remove.
30723         * benchtests/slowpow-inputs: Remove.
30724         * benchtests/slowpow.c: Remove.
30725         * benchtests/slowsin-inputs: Remove.
30726         * benchtests/slowsin.c: Remove.
30727         * benchtests/slowtan-inputs: Remove.
30728         * benchtests/slowtan.c: Remove.
30729         * benchtests/tan-inputs: Add slow benchmark inputs.
30730         * scripts/bench.pl: Parse comments and directives.
30732         * benchtests/Makefile: Remove *-ITER.  Define BENCH_DURATION
30733         in CPPFLAGS.
30734         ($(objpfx)bench-%.c): Remove *-ITER.
30735         * benchtests/bench-modf.c: Remove definition of ITER.
30736         * benchtests/bench-skeleton.c (TIMESPEC_AFTER): New macro.
30737         (main): Loop for DURATION seconds instead of fixed number of
30738         iterations.
30739         * scripts/bench.pl: Don't expect iterations in parameters.
30741 2013-04-29  Roland McGrath  <roland@hack.frob.com>
30743         * io/fchdir.c (__fchdir): Renamed from fchdir.
30744         (fchdir): Define as weak alias.
30746 2013-04-29  Joseph Myers  <joseph@codesourcery.com>
30748         * math/libm-test.inc (ERRNO_UNCHANGED): New macro.
30749         (ERRNO_EDOM): Likewise.
30750         (ERRNO_ERANGE): Likewise.
30751         (noErrnoTests): New variable.
30752         (init_max_error): Set errno to 0.
30753         (test_single_errno): New function.
30754         (test_errno): Likewise.
30755         (check_float_internal): Call test_errno.  Set errno to 0.
30756         (check_complex): Refer to errno tests in comment.
30757         (check_int): Call test_errno.  Set errno to 0.
30758         (check_long): Likewise.
30759         (check_bool): Likewise.
30760         (check_longlong): Likewise.
30761         (cos_test): Use ERRNO_* flags for errno tests instead of
30762         check_int.
30763         (expm1_test): Likewise.
30764         (fmod_test): Likewise.
30765         (ilogb_test): Likewise.
30766         (lgamma_test): Likewise.
30767         (pow_test): Likewise.
30768         (remainder_test): Likewise.
30769         (sin_test): Likewise.
30770         (tan_test): Likewise.
30771         (yn_test): Likewise.
30772         (initialize): Set errno to 0.
30773         (main): Print number of errno tests.
30774         * math/gen-libm-test.pl (parse_args): Allow ERRNO flags on tests.
30776 2013-04-29  Andreas Jaeger  <aj@suse.de>
30778         [BZ #15084]
30779         * resolv/res_debug.c (p_option): Fix strings for RES_USEBSTRING
30780         and RES_USEVC.
30782         [BZ #15085]
30783         * resolv/resolv.h (RES_NOCHECKNAME): Mark as unimplemented.
30784         * resolv/res_debug.c (p_option): Mark RES_NOCHECKNAME as
30785         unimplemented.
30787         [BZ #15380]
30788         * stdlib/random.c (__initstate): Return NULL if
30789         __initstate fails.
30791         [BZ #15086]
30792         * resolv/res_debug.c (p_option): Handle RES_NOALIASES,
30793         RES_KEEPTSIG, RES_BLAST, RES_NOIP6DOTINT, RES_SNGLKUP,
30794         RES_SNGLKUPREOP.
30796 2013-04-29  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
30798         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
30800 2013-04-29  Joseph Myers  <joseph@codesourcery.com>
30802         * math/libm-test.inc (cacos_test): Add missing semicolons at ends
30803         of individual tests.
30804         (casin_test): Likewise.
30805         (casinh_test): Likewise.
30807 2013-04-27  Joseph Myers  <joseph@codesourcery.com>
30809         [BZ #15409]
30810         * math/s_catan.c (__catan): Handle arguments with large real or
30811         imaginary part separately without squaring.
30812         * math/s_catanf.c (__catanf): Likewise.
30813         * math/s_catanh.c (__catanh): Likewise.
30814         * math/s_catanhf.c (__catanhf): Likewise.
30815         * math/s_catanhl.c [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine
30816         and redefine.
30817         (__catanhl): Handle arguments with large real or imaginary part
30818         separately without squaring.
30819         * math/s_catanl.c [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine
30820         and redefine.
30821         (__catanl): Handle arguments with large real or imaginary part
30822         separately without squaring.
30823         * math/libm-test.inc (catan_test): Add more tests.
30824         (catanh_test): Likewise.
30825         * sysdeps/i386/fpu/libm-test-ulps: Update.
30826         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
30828 2013-04-27  Andreas Jaeger  <aj@suse.de>
30830         [BZ #15007]
30831         * stdlib/stdlib.h: Update guards for qecvt.
30832         * stdlib/bits/stdlib-ldbl.h: Sync guards for qecvt etc with
30833         <stdlib.h>.
30835 2013-04-27  Allan McRae  <allan@archlinux.org>
30837         * sysdeps/i386/fpu/libm-test-ulps: Update.
30839 2013-04-26  Joseph Myers  <joseph@codesourcery.com>
30841         [BZ #15406]
30842         * math/s_catan.c: Include <float.h>.
30843         (__catan): Ensure underflow exception occurs for underflowed
30844         result.
30845         * math/s_catanf.c: Include <float.h>.
30846         (__catanf): Ensure underflow exception occurs for underflowed
30847         result.
30848         * math/s_catanh.c: Include <float.h>.
30849         (__catanh): Ensure underflow exception occurs for underflowed
30850         result.
30851         * math/s_catanhf.c: Include <float.h>.
30852         (__catanhf): Ensure underflow exception occurs for underflowed
30853         result.
30854         * math/s_catanhl.c: Include <float.h>.
30855         (__catanhl): Ensure underflow exception occurs for underflowed
30856         result.
30857         * math/s_catanl.c: Include <float.h>.
30858         (__catanl): Ensure underflow exception occurs for underflowed
30859         result.
30860         * math/libm-test.inc (catan_test): Add more tests.
30861         (catanh_test): Likewise.
30863         [BZ #15405]
30864         * math/s_ccosh.c (__ccosh): Ensure underflow exception occurs for
30865         underflowed result.
30866         * math/s_ccoshf.c (__ccoshf): Likewise.
30867         * math/s_ccoshl.c (__ccoshl): Likewise.
30868         * math/s_csin.c (__csin): Likewise.
30869         * math/s_csinf.c (__csinf): Likewise.
30870         * math/s_csinh.c (__csinh): Likewise.
30871         * math/s_csinhf.c (__csinhf): Likewise.
30872         * math/s_csinhl.c (__csinhl): Likewise.
30873         * math/s_csinl.c (__csinl): Likewise.
30874         * math/libm-test.inc (ccos_test): Add more tests.
30875         (ccosh_test): Likewise.
30876         (csin_test): Likewise.
30877         (csinh_test): Likewise.
30879 2013-04-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
30881         * sysdeps/powerpc/power5/fpu/s_modf.c: Moved to ...
30882         * sysdeps/powerpc/power5+/fpu/s_modf.c: ... this.
30883         * sysdeps/powerpc/power5/fpu/s_modff.c: Moved to ...
30884         * sysdeps/powerpc/power5+/fpu/s_modff.c: ... this.
30885         * sysdeps/powerpc/powerpc32/power5+/Implies: Add powerpc/power5+ and
30886         powerpc/power5+/fpu folders.
30887         * sysdeps/powerpc/powerpc64/power5+/Implies: Likewise.
30890 2013-04-26  Markus Trippelsdorf  <markus@trippelsdorf.de>
30892         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
30894 2013-04-25  Joseph Myers  <joseph@codesourcery.com>
30896         * elf/Makefile [$(config-machine) = x86_64] (tests): Remove
30897         additions to variable.
30898         [$(config-machine) = x86_64] (modules-names): Likewise.
30899         ($(objpfx)tst-audit3): Remove dependency.
30900         ($(objpfx)tst-audit3.out): Likewise.
30901         ($(objpfx)tst-audit4): Likewise.
30902         ($(objpfx)tst-audit4.out): Likewise.
30903         ($(objpfx)tst-audit5): Likewise.
30904         ($(objpfx)tst-audit5.out): Likewise.
30905         ($(objpfx)tst-audit6): Likewise.
30906         ($(objpfx)tst-audit6.out): Likewise.
30907         ($(objpfx)tst-audit7): Likewise.
30908         ($(objpfx)tst-audit7.out): Likewise.
30909         (tst-audit3-ENV): Remove variable.
30910         (tst-audit4-ENV): Likewise.
30911         (tst-audit5-ENV): Likewise.
30912         (tst-audit6-ENV): Likewise.
30913         (tst-audit7-ENV): Likewise.
30914         [$(config-cflags-avx) = yes] (AVX-CFLAGS): Likewise.
30915         [$(config-cflags-avx) = yes] (CFLAGS-tst-audit4.c): Remove
30916         addition to variable.
30917         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod4a.c): Likewise.
30918         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod4b.c): Likewise.
30919         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod6b.c): Likewise.
30920         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod6c.c): Likewise.
30921         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod7b.c): Likewise.
30922         * sysdeps/x86_64/Makefile [$(subdir) = elf] (tests): Add
30923         tst-audit3, tst-audit4 and tst-audit5.
30924         [$(subdir) = elf && $(config-cflags-avx) = yes] (tests): Add
30925         tst-audit6 and tst-audit7.
30926         [$(subdir) = elf] (modules-names): Add audit modules for those
30927         tests.
30928         [$(subdir) = elf] ($(objpfx)tst-audit3): New dependency.
30929         [$(subdir) = elf] ($(objpfx)tst-audit3.out): Likewise.
30930         [$(subdir) = elf] ($(objpfx)tst-audit4): Likewise.
30931         [$(subdir) = elf] ($(objpfx)tst-audit4.out): Likewise.
30932         [$(subdir) = elf] ($(objpfx)tst-audit5): Likewise.
30933         [$(subdir) = elf] ($(objpfx)tst-audit5.out): Likewise.
30934         [$(subdir) = elf] ($(objpfx)tst-audit6): Likewise.
30935         [$(subdir) = elf] ($(objpfx)tst-audit6.out): Likewise.
30936         [$(subdir) = elf] ($(objpfx)tst-audit7): Likewise.
30937         [$(subdir) = elf] ($(objpfx)tst-audit7.out): Likewise.
30938         [$(subdir) = elf] (tst-audit3-ENV): New variable.
30939         [$(subdir) = elf] (tst-audit4-ENV): Likewise.
30940         [$(subdir) = elf] (tst-audit5-ENV): Likewise.
30941         [$(subdir) = elf] (tst-audit6-ENV): Likewise.
30942         [$(subdir) = elf] (tst-audit7-ENV): Likewise.
30943         [$(subdir) = elf && $(config-cflags-avx) = yes] (AVX-CFLAGS):
30944         Likewise.
30945         [$(subdir) = elf && $(config-cflags-avx) = yes]
30946         (CFLAGS-tst-audit4.c): Append $(AVX-CFLAGS).
30947         [$(subdir) = elf && $(config-cflags-avx) = yes]
30948         (CFLAGS-tst-auditmod4a.c): Likewise.
30949         [$(subdir) = elf && $(config-cflags-avx) = yes]
30950         (CFLAGS-tst-auditmod4b.c): Likewise.
30951         [$(subdir) = elf && $(config-cflags-avx) = yes]
30952         (CFLAGS-tst-auditmod6b.c): Likewise.
30953         [$(subdir) = elf && $(config-cflags-avx) = yes]
30954         (CFLAGS-tst-auditmod6c.c): Likewise.
30955         [$(subdir) = elf && $(config-cflags-avx) = yes]
30956         (CFLAGS-tst-auditmod7b.c): Likewise.
30957         * elf/tst-audit3.c: Move to ...
30958         * sysdeps/x86_64/tst-audit3.c: ... here.
30959         * elf/tst-audit4.c: Move to ...
30960         * sysdeps/x86_64/tst-audit4.c: ... here.
30961         * elf/tst-audit5.c: Move to ...
30962         * sysdeps/x86_64/tst-audit5.c: ... here.
30963         * elf/tst-audit6.c: Move to ...
30964         * sysdeps/x86_64/tst-audit6.c: ... here.
30965         * elf/tst-audit7.c: Move to ...
30966         * sysdeps/x86_64/tst-audit7.c: ... here.
30967         * elf/tst-auditmod3a.c: Move to ...
30968         * sysdeps/x86_64/tst-auditmod3a.c: ... here.
30969         * elf/tst-auditmod3b.c: Move to ...
30970         * sysdeps/x86_64/tst-auditmod3b.c: ... here.
30971         * elf/tst-auditmod4a.c: Move to ...
30972         * sysdeps/x86_64/tst-auditmod4a.c: ... here.
30973         * elf/tst-auditmod4b.c: Move to ...
30974         * sysdeps/x86_64/tst-auditmod4b.c: ... here.
30975         * elf/tst-auditmod5a.c: Move to ...
30976         * sysdeps/x86_64/tst-auditmod5a.c: ... here.
30977         * elf/tst-auditmod5b.c: Move to ...
30978         * sysdeps/x86_64/tst-auditmod5b.c: ... here.
30979         * elf/tst-auditmod6a.c: Move to ...
30980         * sysdeps/x86_64/tst-auditmod6a.c: ... here.
30981         * elf/tst-auditmod6b.c: Move to ...
30982         * sysdeps/x86_64/tst-auditmod6b.c: ... here.
30983         * elf/tst-auditmod6c.c: Move to ...
30984         * sysdeps/x86_64/tst-auditmod6c.c: ... here.
30985         * elf/tst-auditmod7a.c: Move to ...
30986         * sysdeps/x86_64/tst-auditmod7a.c: ... here.
30987         * elf/tst-auditmod7b.c: Move to ...
30988         * sysdeps/x86_64/tst-auditmod7b.c: ... here.
30990 2013-04-25  Paul Pluzhnikov  <ppluzhnikov@google.com>
30992         [BZ #15366]
30993         * sysdeps/generic/inttypes.h (PRId8, PRId16, etc.):
30994         define unconditionally.
30995         * sysdeps/generic/stdint.h (INT8_MIN, INT16_MIN, etc.):
30996         define unconditionally.
30997         (INT8_C, INT16_C, etc.): Likewise.
30999 2013-04-25  Maciej W. Rozycki  <macro@codesourcery.com>
31001         * csu/libc-start.c (__libc_start_main) [!SHARED]: Declare
31002         __ehdr_start with hidden visibility.
31004         * soft-fp/op-common.h (_FP_SQRT): s/sNAN/NAN/ in a comment.
31006 2013-04-24  Carlos O'Donell  <carlos@redhat.com>
31008         * math/libm-test.inc (cos_test): Use accurate hex constants.
31009         (sincost_test): Likewise.
31011 2013-04-24  Joseph Myers  <joseph@codesourcery.com>
31013         * math/libm-test.inc (catan_test): Add more tests.
31014         (catanh_test): Likewise.
31016         * math/s_catanf.c (__catanf): Use suffixed floating-point
31017         constants.
31018         * math/s_catanhf.c (__catanhf): Likewise.
31019         * math/s_catanhl.c (__catanhl): Likewise.
31020         * math/s_catanl.c (__catanl): Likewise.
31022         [BZ #15394]
31023         * math/s_catan.c (__catan): Calculate imaginary part of result
31024         with log1p not log unless computing log of number close to 0.
31025         * math/s_catanf.c (__catanf): Likewise.
31026         * math/s_catanl.c (__catanl): Likewise.
31027         * math/s_catanh.c (__catanh): Calculate real part of result with
31028         log1p not log unless computing log of number close to 0.
31029         * math/s_catanhf.c (__catanhf): Likewise.
31030         * math/s_catanhl.c (__catanhl): Likewise.
31031         * math/libm-test.inc (catan_test): Add more tests.
31032         (catanh_test): Likewise.
31033         * sysdeps/i386/fpu/libm-test-ulps: Update.
31034         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
31036 2013-04-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
31038         * benchtests/Makefile: Mention files in which fast and slow
31039         paths of math functions are implemented.
31041 2013-04-23  Roland McGrath  <roland@hack.frob.com>
31043         * sysdeps/posix/timespec_get.c: New file.
31045 2013-04-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
31047         * sysdeps/powerpc/power5/fpu/s_modf.c: New file: modf optimization for
31048         POWER.
31049         * sysdeps/powerpc/power5/fpu/s_modff.c: New file: modff optimization
31050         for POWER.
31051         * sysdeps/powerpc/powerpc64/power5/Implies: Add powerpc/power5 and
31052         powerpc/power5/fpu folders.
31053         * sysdeps/powerpc/powerpc32/power5/Implies: Likewise.
31054         * benchtests/Makefile: Add modf testcase.
31055         * benchtests/bench-modf.c: New file: Benchmark test for mo
31057 2013-04-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
31059         [BZ #14888]
31060         * time/Makefile (tests): Add tst-strptime-whitespace.
31061         * time/strptime_l.c (get_number): Use ISSPACE.
31062         (__strptime_internal): Likewise.
31063         * time/tst-strptime-whitespace.c: New test case.
31065 2013-04-23  Andreas Schwab  <schwab@linux-m68k.org>
31067         * nss/nss_files/files-init.c (TF): Don't initialize flexible array
31068         member.
31069         (_nss_files_init): Set it here.
31071 2013-04-23  Heiko Carstens  <heiko.carstens@de.ibm.com>
31073         * sysdeps/unix/sysv/linux/s390/bits/statfs.h: Change types of
31074         f_type, f_bsize, f_namelen, f_frsize, f_flags,and f_spare to
31075         unsigned.
31077 2013-04-22  Jan-Benedict Glaw  <jbglaw@getslash.de>
31079         * nss/getent.c (shadow_keys): Call endspent, not endpwent.
31081 2013-04-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
31083         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Compute results
31084         size just once.
31086 2013-04-21  David S. Miller  <davem@davemloft.net>
31088         * po/ru.po: Update Russion translation from translation project.
31090 2013-04-17  Adam Conrad  <adconrad@0c3.net>
31092         * sysdeps/unix/sysv/linux/sys/fsuid.h: Remove __wur from setfsuid
31093         and setfsgid.
31095 2013-04-17  Carlos O'Donell  <carlos@redhat.com>
31097         * configure.in: Remove i386 configure warning. Remove i386 case.
31098         * configure: Regenerate.
31099         * sysdeps/i386/configure.in: Raise error if config_machine is i386.
31100         Add example to error message.
31101         * sysdeps/i386/configure: Regenerate.
31103 2013-04-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
31105         * benchtests/Makefile (bench): Add cos, tan, slowcos and
31106         slowtan.
31107         * benchtests/cos-inputs: New file.
31108         * benchtests/slowcos-inputs: New file.
31109         * benchtests/slowcos.c: New file.
31110         * benchtests/slowtan-inputs: New file.
31111         * benchtests/slowtan.c: New file.
31112         * benchtests/tan-inputs: New file.
31114 2013-04-16  Roland McGrath  <roland@hack.frob.com>
31116         * rt/tst-aio7.c (do_test): Don't test O_RDONLY fd case, which is now
31117         considered kosher.
31119 2013-04-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
31121         * benchtests/Makefile: Include cppflags-iterator.mk to add
31122         -DNOT_IN_libc=1 to CPPFLAGS of all benchmark programs.
31124         * Makefile.in (bench-clean): New target.
31125         * benchtests/Makefile (bench-clean): Likewise.
31127 2013-04-16  David Holsgrove  <david.holsgrove@xilinx.com>
31129         * elf/elf.h: Add EM_MICROBLAZE and MicroBlaze relocations.
31131 2013-04-15  Thomas Schwinge  <thomas@codesourcery.com>
31133         * stdio-common/tstdiomisc.c: Fix coding-style violation.
31135 2013-04-15  Andreas Schwab  <schwab@suse.de>
31137         * nscd/grpcache.c (cache_addgr): Properly check for short write.
31138         * nscd/initgrcache.c (addinitgroupsX): Likewise.
31139         * nscd/pwdcache.c (cache_addpw): Likewise.
31140         * nscd/servicescache.c (cache_addserv): Likewise.  Don't write
31141         more than recsize.
31143 2013-04-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
31145         * benchtests/Makefile (bench): Write all output to
31146         bench-out.tmp together.
31148 2013-04-15  Andreas Schwab  <schwab@suse.de>
31150         * nscd/nscd.c (main): Don't fork again after closing files.
31152 2013-04-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
31154         * libio/tst-fwrite-error.c (do_test): Fix BUF array definition.
31156         * benchtests/Rules (bench-deps): Collect dependencies into a
31157         single variable.  Add Makefile to dependencies.
31158         ($(objpfx)bench-%.c): Depend on bench-deps.
31160 2013-04-12  Roland McGrath  <roland@hack.frob.com>
31161             Xavier Roche  <roche+kml2@exalead.com>
31163         [BZ #15361]
31164         * sysdeps/pthread/aio_fsync.c (aio_fsync): Don't check open modes,
31165         just that it's a file descriptor.
31166         * manual/llio.texi (Synchronizing AIO Operations): Update description
31167         for EBADF error from aio_fsync.
31169 2013-04-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
31171         * Rules (bench): Move target definition...
31172         * benchtests/Makefile: ... here.
31174 2013-04-11  Carlos O'Donell  <carlos@redhat.com>
31176         * math/libm-test.inc (cos_test): Fix PI/2 test.
31177         (sincos_test): Likewise.
31178         * sysdeps/x86_64/fpu/libm-test-ulps: Regenerate.
31179         * sysdeps/i386/fpu/libm-test-ulps: Regenerate.
31181 2013-04-11  Andreas Schwab  <schwab@suse.de>
31183         [BZ #13988]
31184         * stdio-common/vfscanf.c (_IO_vfwscanf): When parsing a float
31185         accept exponent character only when digits were seen.
31186         * stdio-common/Makefile (tests): Add bug26.
31187         * stdio-common/bug26.c: New file.
31189         [BZ #14293]
31190         * elf/dl-load.c (_dl_init_paths): Mark decomposed RUNPATH as
31191         non-freeable.
31193 2013-04-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
31195         * Makeconfig (rtld-prefix): Define built linker prefix.
31196         * Rules (run-bench): Use it.
31197         * math/Makefile (run-regen-ulps): Likewise.
31199         * Rules (bench): Remove eval.
31201 2013-04-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
31202             Roland McGrath  <roland@hack.frob.com>
31203             Ondrej Bilka  <neleai@seznam.cz>
31205         [BZ #15346]
31206         * time/getdate.c: Include ctype.h and alloca.h.
31207         (__getdate_r): Trim leading and trailing spaces of input.
31208         * time/tst-getdate.c (tests): Add tests with leading and
31209         trailing spaces.
31211 2013-04-08  Roland McGrath  <roland@hack.frob.com>
31213         [BZ #14280]
31214         * sysdeps/mach/hurd/bits/ioctls.h (_IOTS): Cast to enum __ioctl_datum
31215         when computing value.
31217 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
31219         * math/README.libm-test (How can I generate "libm-test-ulps"?):
31220         Use testrun.sh to run libm tests.
31222         [BZ #15309]
31223         * elf/dl-open.c (dl_open_worker): memset all of seen array.
31225 2013-04-06  Marko Myllynen  <myllynen@redhat.com>
31227         [BZ #15264]
31228         * locales/fi_FI (LC_MESSAGES): Define yesstr and nostr.
31230 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
31232         * Makefile.in (regen-ulps): New target.
31233         * math/Makefile [ifneq (no,$(PERL)]: Declare regen-ulps with .PHONY.
31234         [ifneq (no,$(PERL)] (run-regen-ulps): New variable.
31235         [ifneq (no,$(PERL)] (regen-ulps): New target.
31236         [ifeq (no,$(PERL)] (regen-ulps): New target.
31237         * math/libm-test.inc (ulps_file_name): Define.
31238         (output_dir): New variable.
31239         (options): Add "output-dir" option.
31240         (parse_opt): Handle 'o' case.
31241         (main): If output_dir is non-NULL use it as a prefix
31242         otherwise use "".
31243         * math/README.libm-test: Update `How can I generate "libm-test-ulps"?'
31245 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
31247         [BZ #10060, #10062]
31248         * aclocal.m4 (LIBC_COMPILER_BUILTIN_INLINED): New macro.
31249         * sysdeps/i386/configure.in: Use LIBC_COMPILER_BUILTIN_INLINED and
31250         fail configure if __sync_val_compare_and_swap is not inlined.
31251         * sysdeps/i386/configure: Regenerate.
31252         * configure.in: Build for i686 when configured for i386.
31253         * configure: Regenerate.
31254         * README: Remove i386 reference.
31256 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
31258         * sysdeps/s390/s390-32/sysdep.h: Undefine PSEUDO before redefinition.
31259         * sysdeps/s390/s390-64/sysdep.h: Likewise.
31261 2013-04-05  Thomas Schwinge  <thomas@codesourcery.com>
31263         * stdio-common/tstdiomisc.c (snanval, msnanval, lsnanval)
31264         (lmsnanval): New variables.
31265         (F): Add conversion tests.
31266         * stdlib/tst-strtod6.c (do_test): Add issignaling tests.
31267         * stdlib/Makefile ($(objpfx)tst-strtod6): Depend on $(link-libm).
31269         * stdio-common/tstdiomisc.c (F): Properly collect individual
31270         tests' results.
31272         [BZ #14686, #15336]
31273         * sysdeps/ieee754/dbl-64/urem.h (nNAN, NAN): Remove definitions.
31274         * sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder):
31275         Instead, use input NaN values or generate a qNaN by arithmetic
31276         operation.  Also fix bugs to comply with the standard.
31277         * math/libm-test.inc (remainder_test): Add more tests.
31279         [BZ #15335, #15342]
31280         * sysdeps/ieee754/dbl-64/upow.h (NaNQ): Remove definitions.
31281         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Instead, use
31282         input NaN values or generate a qNaN by arithmetic operation.
31284         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Remove
31285         unreachable code.
31287         * sysdeps/ieee754/dbl-64/usncs.h (NAN): Removed unused
31288         definitions.
31290 2013-04-03  Joseph Myers  <joseph@codesourcery.com>
31292         [BZ #14478]
31293         * math/s_cexp.c (__cexp): Ensure underflow exception occurs for
31294         underflowed result.
31295         * math/s_cexpf.c (__cexpf): Likewise.
31296         * math/s_cexpl.c (__cexpl): Likewise.
31297         * math/libm-test.inc (cexp_test): Add more tests.
31299 2013-04-03  Andreas Schwab  <schwab@suse.de>
31301         [BZ #15330]
31302         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Allocate results and
31303         order arrays from heap if bigger than alloca cutoff.
31305 2013-04-03  Thomas Schwinge  <thomas@codesourcery.com>
31307         * sysdeps/i386/fpu/math-tests.h (SNAN_TESTS_float)
31308         (SNAN_TESTS_double): Refer to GCC PR56831.
31309         * sysdeps/powerpc/math-tests.h (SNAN_TESTS_TYPE_CAST): Refer to
31310         GCC PR56828.
31312 2013-04-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
31314         * Rules (bench): Move bench.out after the run is complete.
31316         * Rules (bench): Echo currently running benchmark.
31318         * benchtests/Makefile (bench): Add atan and slowatan.
31319         * benchtests/atan-inputs: New file.
31320         * benchtests/slowatan-inputs: New file.
31321         * benchtests/slowatan.c: New file.
31323         * sysdeps/ieee754/dbl-64/mpa.h (TWO): Remove definition.
31324         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Replace TWO with
31325         its value.
31327         [BZ #15305]
31328         * sysdeps/unix/sysv/linux/kernel-features.h
31329         [__LINUX_KERNEL_VERSION >= 0x02061d]: Define
31330         __ASSUME_XFS_RESTRICTED_CHOWN.
31331         * sysdeps/unix/sysv/linux/pathconf.c
31332         (__statfs_chown_restricted) [!__ASSUME_XFS_RESTRICTED_CHOWN]:
31333         Save and restore errno.
31335 2013-04-02  Joseph Myers  <joseph@codesourcery.com>
31337         [BZ #15327]
31338         * math/s_cacosh.c (__cacosh): Implement for finite nonzero
31339         arguments using __kernel_casinh.
31340         * math/s_cacoshf.c (__cacoshf): Implement for finite nonzero
31341         arguments using __kernel_casinhf.
31342         * math/s_cacoshl.c (__cacoshl): Implement for finite nonzero
31343         arguments using __kernel_casinhl.
31344         * math/libm-test.inc (cacosh_test): Add more tests.
31345         * sysdeps/i386/fpu/libm-test-ulps: Update.
31346         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
31348 2013-04-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
31350         * sysdeps/ieee754/dbl-64/mpa.h (HALFRAD): Define as TWO23.
31351         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Use mantissa_t.
31353         * bench/Makefile (bench): Add sin and slowsin.
31354         * benchtests/sin-inputs: New file.
31355         * benchtests/slowsin-inputs: New file.
31356         * benchtests/slowsin.c: New file.
31358         * benchtests/Makefile: Add benchmarks for slowpow and slowexp.
31359         (bench): Add slowexp and slowpow.
31360         (exp-ITER): Increase iterations.
31361         (pow-ITER): Likewise.
31362         * benchtests/exp-inputs: Change input.
31363         * benchtests/pow-inputs: Likewise.
31364         * benchtests/slowexp-inputs: New file.
31365         * benchtests/slowexp.c: New file.
31366         * benchtests/slowpow-inputs: New file.
31367         * benchtests/slowpow.c: New file.
31369 2013-04-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
31371         * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Remove branch prediction
31372         instructions.
31373         * sysdeps/powerpc/powerpc32/fpu/s_rintf.S: Likewise.
31374         * sysdeps/powerpc/powerpc64/fpu/s_rint.S: Likewise.
31375         * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
31376         * benchtests/Makefile: Add rint benchtest.
31377         * benchtests/rint-inputs: Input for rint benchtest.
31379 2013-04-02  Thomas Schwinge  <thomas@codesourcery.com>
31381         * Versions.def (libm): Add GLIBC_2.18.
31382         * include/math.h [!_ISOMAC] (__issignaling, __issignalingf): Add
31383         hidden libm prototypes.
31384         [!_ISOMAC && !__NO_LONG_DOUBLE_MATH] (__issignalingl): Likewise.
31385         * math/Makefile (libm-calls): Add s_issignaling.
31386         * math/Versions (libm: GLIBC_2.18): Add __issignaling,
31387         __issignalingf, __issignalingl.  Adjust all libm.abilist files.
31388         * math/bits/mathcalls.h [__USE_GNU] (__issignaling): New prototype
31389         declaration.
31390         * math/math.h [__USE_GNU] (issignaling): New macro.
31391         * sysdeps/ieee754/flt-32/s_issignalingf.c: New file.
31392         * sysdeps/ieee754/dbl-64/s_issignaling.c: Likewise.
31393         * sysdeps/ieee754/dbl-64/wordsize-64/s_issignaling.c: Likewise.
31394         * sysdeps/ieee754/ldbl-96/s_issignalingl.c: Likewise.
31395         * sysdeps/ieee754/ldbl-128/s_issignalingl.c: Likewise.
31396         * sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c: Likewise.
31397         * manual/arith.texi (issignaling): New section.
31398         * manual/libm-err-tab.pl (@all_functions): Update comment.
31399         * math/gen-libm-test.pl (parse_args): Apply special handling for
31400         issignaling.
31401         * math/libm-test.inc (print_float, issignaling_test): New
31402         functions.
31403         (check_float_internal): Add issignaling checks.
31404         * sysdeps/generic/math-tests.h (SNAN_TESTS_TYPE_CAST): Provide
31405         default definition.
31406         * sysdeps/powerpc/math-tests.h: New file.
31407         * math/basic-test.c (TEST_FUNC, TEST_TRUNC): Add issignaling
31408         tests.
31409         * math/test-snan.c (TEST_FUNC): Likewise.
31411 2013-03-30  David S. Miller  <davem@davemloft.net>
31413         * po/de.po: Update from translation team.
31415 2013-03-30  Joseph Myers  <joseph@codesourcery.com>
31417         [BZ #10357]
31418         * math/k_casinh.c (__kernel_casinh): Handle arguments with
31419         imaginary part less than 1.0 and real part less than 0.5
31420         specially.
31421         * math/k_casinhf.c (__kernel_casinhf): Likewise.
31422         * math/k_casinhl.c (__kernel_casinhl): Likewise.
31423         * math/libm-test.inc (UNDERFLOW_EXCEPTION_OK_DOUBLE): New macro.
31424         (cacos_test): Add more tests.
31425         (casin_test): Likewise.
31426         (casinh_test): Likewise.
31427         * sysdeps/i386/fpu/libm-test-ulps: Update.
31428         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
31430 2013-03-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
31432         * sysdeps/powerpc/power4/fpu/mpa-arch.h (INTEGER_OF): Replace
31433         ONE with its value.
31435         * sysdeps/ieee754/dbl-64/mpa.h (ONE, MONE): Remove defines.
31436         (__pow_mp): Replace ONE and MONE with their values.
31437         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
31438         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Likewise.
31439         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
31440         * sysdeps/ieee754/dbl-64/mptan.c (__mptan): Likewise.
31441         * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
31442         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
31444         * sysdeps/ieee754/dbl-64/s_tan.c: Fix formatting.
31446         * sysdeps/ieee754/dbl-64/mpa.h (ZERO, MZERO): Remove defines.
31447         (__pow_mp): Replace ZERO and MZERO with their values.
31448         * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Likewise.
31449         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
31450         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
31451         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
31452         * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
31453         * sysdeps/powerpc/power4/fpu/mpa.c (__mul): Likewise.
31454         (__sqr): Likewise.
31456         * sysdeps/ieee754/dbl-64/s_atan.c: Fix formatting.
31458         * sysdeps/ieee754/dbl-64/e_log.c: Fix formatting.
31460 2013-03-28  Roland McGrath  <roland@hack.frob.com>
31462         * include/stdlib.h [!SHARED] (__call_tls_dtors):
31463         Declare with __attribute__ ((weak)).
31464         * stdlib/exit.c (__libc_atexit) [!SHARED]:
31465         Call __call_tls_dtors only if it's not NULL.
31467 2013-03-28  Roland McGrath  <roland@hack.frob.com>
31469         * csu/libc-start.c (__libc_start_main) [!SHARED]: If _dl_aux_init
31470         didn't do it already, then set _dl_phdr and _dl_phnum based on the
31471         magic __ehdr_start linker symbol if it's defined.
31472         * sysdeps/mach/hurd/i386/init-first.c (init1) [!SHARED]: Don't set
31473         them up here if it was already done.
31475         * elf/dl-support.c (_dl_phdr): Make pointer to const.
31476         (_dl_aux_init): Use const in cast when setting it.
31477         * sysdeps/mach/hurd/i386/init-first.c (init1): Remove superfluous cast.
31478         * sysdeps/generic/ldsodefs.h [!SHARED] (_dl_phdr): Update decl.
31479         * csu/libc-tls.c (__libc_setup_tls): Make PHDR pointer to const.
31481         * sysdeps/generic/ldsodefs.h [!SHARED] (_dl_phdr, _dl_phnum):
31482         Declare them here.
31483         * elf/dl-iteratephdr.c [!SHARED] (_dl_phdr, _dl_phnum): Not here.
31484         * csu/libc-tls.c: Nor here.
31485         * sysdeps/mach/hurd/i386/init-first.c (init1): Nor here.
31487         * sysdeps/posix/libc_fatal.c: Don't include <sys/syslog.h>.
31488         (__libc_message): Never call vsyslog.
31490 2013-03-28  Alan Modra  <amodra@gmail.com>
31492         * sysdeps/powerpc/powerpc32/start.S (cfi_startproc, cfi_endproc):
31493         Define as empty.
31494         * sysdeps/powerpc/powerpc64/start.S (cfi_startproc, cfi_endproc):
31495         Likewise.
31497 2013-03-28  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
31499         [BZ #15214]
31500         * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Fix spurious
31501         underflow.
31502         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
31504 2013-03-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
31506         [BZ #15304]
31507         * hesiod/nss_hesiod/hesiod-grp.c (_nss_hesiod_initgroups_dyn):
31508         Don't add gid passed as argument.
31510         * sysdeps/ieee-754/dbl-64/e_atan2.c: Reformat.
31512 2013-03-27  Joseph Myers  <joseph@codesourcery.com>
31514         [BZ #15307]
31515         * math/k_casinh.c (__kernel_casinh): Handle arguments with
31516         imaginary part between 1.0 and 1.5 and real part less than 0.5
31517         specially.
31518         * math/k_casinhf.c (__kernel_casinhf): Likewise.
31519         * math/k_casinhl.c (__kernel_casinhl): Likewise.
31520         * math/libm-test.inc (cacos_test): Add more tests.
31521         (casin_test): Likewise.
31522         (casinh_test): Likewise.
31523         * sysdeps/i386/fpu/libm-test-ulps: Update.
31524         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
31526 2013-03-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
31528         * sysdeps/ieee754/dbl-64/mpa.c (__acr): Use integral
31529         constants.
31530         (norm): Likewise.
31531         (denorm): Likewise.
31532         (__dbl_mp): Likewise.
31533         (add_magnitudes): Likewise.
31534         (sub_magnitudes): Likewise.
31535         (__add): Likewise.
31536         (__sub): Likewise.
31537         (__mul): Likewise.
31538         (__sqr): Likewise.
31539         (__inv): Likewise.
31540         (__dvd): Likewise.
31542         * sysdeps/ieee754/dbl-64/branred.c (__branred): Remove
31543         commented code.
31544         * sysdeps/ieee754/dbl-64/dosincos.c (__dubsin): Likewise.
31545         (__dubcos): Likewise.
31546         * sysdeps/ieee754/dbl-64/e_asin.c (__ieee754_asin): Likewise.
31547         (__ieee754_acos): Likewise.
31548         * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Likewise.
31549         * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Likewise.
31550         (__exp1): Likewise.
31551         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
31552         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Likewise.
31553         (log1): Likewise.
31554         (my_log2): Likewise.
31555         (checkint): Likewise.
31556         * sysdeps/ieee754/dbl-64/e_remainder.c
31557         (__ieee754_remainder): Likewise.
31558         * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
31559         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Likewise.
31560         (bsloww): Likewise.
31561         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
31563         * sysdeps/ieee754/dbl-64/mpa-arch.h: New file.
31564         * sysdeps/ieee754/dbl-64/mpa.c (norm): Use MANTISSA_T and
31565         MANTISSA_STORE_T to store computations on mantissa.  Use
31566         macros for rounding and division.
31567         (denorm): Likewise.
31568         (__dbl_mp): Likewise.
31569         (add_magnitudes): Likewise.
31570         (sub_magnitudes): Likewise.
31571         (__mul): Likewise.
31572         (__sqr): Likewise.
31573         * sysdeps/ieee754/dbl-64/mpa.h: Include mpa-arch.h.  Define
31574         powers of two in terms of TWOPOW macro.
31575         (mp_no): Make type of mantissa as MANTISSA_T.
31576         [!RADIXI]: Define RADIXI.
31577         [!TWO52]: Define TWO52.
31578         * sysdeps/powerpc/power4/fpu/mpa-arch.h: New file.
31580 2013-03-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
31582         * sysdeps/powerpc/fpu/s_llround.c: Fix libm ABI issue with missing
31583         llroundl symbol when building for PPC32.
31585 2013-03-24  Mark H Weaver  <mhw@netris.org>
31587         * manual/arith.texi (Normalization Functions): Fix prototypes for
31588         scalbn, scalbnf, scalbnl, scalbln, scalblnf, and scalblnl.
31590 2013-03-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
31592         [BZ #13889]
31593         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Increase the
31594         high value to check if expl overflow.
31595         * sysdeps/ieee754/ldbl-128ibm/w_expl.c (__expl): Fix threshold constants
31596         to check for underflow and overflow.
31597         * math/libm-test.inc: Add exp test.
31599 2013-03-21  Dmitry V. Levin  <ldv@altlinux.org>
31601         [BZ #11120]
31602         * sysdeps/x86_64/strcmp.S: Replace all occurrences of NOT_IN_lib
31603         with NOT_IN_libc.
31605 2013-03-21  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
31607         * sysdeps/powerpc/fpu/w_sqrt.c (compat_symbol): Add sqrtl compat
31608         symbol.
31610 2013-03-21  Thomas Schwinge  <thomas@codesourcery.com>
31612         * math/gen-libm-test.pl (parse_args, special_functions): Properly
31613         wrap blocks consisting of several statements.
31615         * sysdeps/generic/math-tests.h: New file.
31616         * sysdeps/i386/fpu/math-tests.h: Likewise.
31617         * math/test-snan.c: Include it.
31618         (TEST_FUNC): Use SNAN_TESTS to short-circuit certain tests.
31620 2013-03-21  Joseph Myers  <joseph@codesourcery.com>
31622         [BZ #15285]
31623         * sysdeps/ieee754/ldbl-128/e_j0l.c: Include <float.h>.
31624         (__ieee754_j0l): Do not improve calculations using cos of twice
31625         input for inputs above LDBL_MAX / 2.0L.
31626         (__ieee754_y0l): Likewise.
31627         * sysdeps/ieee754/ldbl-128/e_j1l.c: Include <float.h>.
31628         (__ieee754_j1l): Do not improve calculations using cos of twice
31629         input for inputs above LDBL_MAX / 2.0L.
31630         (__ieee754_y1l): Likewise.
31631         * math/libm-test.inc (j0_test): Add another test.
31632         (j1_test): Likewise.
31633         (y0_test): Likewise.
31634         (y1_test): Likewise.
31635         * sysdeps/i386/fpu/libm-test-ulps: Update.
31637 2013-03-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
31639         * Rules ($(objpfx)bench-%.c): Include code from a C source
31640         file.
31642 2013-03-21  Joseph Myers  <joseph@codesourcery.com>
31644         [BZ #15287]
31645         * math/k_casinh.c (__kernel_casinh): Handle arguments with
31646         imaginary part 1.0 and real part less than 0.5 specially.
31647         * math/k_casinhf.c (__kernel_casinhf): Likewise.
31648         * math/k_casinhl.c (__kernel_casinhl): Likewise.
31649         * math/libm-test.inc (cacos_test): Add more tests.
31650         (casin_test): Likewise.
31651         (casinh_test): Likewise.
31652         * sysdeps/i386/fpu/libm-test-ulps: Update.
31653         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
31655 2013-03-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
31657         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Use HALFRAD.
31658         * sysdeps/ieee754/dbl-64/sincos32.c (__mpranred): Likewise.
31660 2013-03-20  Joseph Myers  <joseph@codesourcery.com>
31662         * aclocal.m4 (LIBC_CONFIG_VAR): New autoconf macro.
31663         * config.make.in (config-cflags-sse4): Remove variable.
31664         (config-cflags-avx): Likewise.
31665         (config-cflags-sse2avx): Likewise.
31666         (config-cflags-novzeroupper): Likewise.
31667         (config-asflags-i686): Likewise.
31668         (have-mfma4): Likewise.
31669         (have-as-vis3): Likewise.
31670         (MIG): Likewise.
31671         * configure.in (MIG): Do not AC_SUBST.
31672         (libc_cv_cc_nofma): Move AC_SUBST next to configure test.
31673         (libc_cv_cc_sse4): Do not AC_SUBST.
31674         (libc_cv_cc_avx): Likewise.
31675         (libc_cv_cc_sse2avx): Likewise.
31676         (libc_cv_cc_novzeroupper): Likewise.
31677         (libc_cv_cc_fma4): Likewise.
31678         (libc_cv_as_i686): Likewise.
31679         (libc_cv_sparc_as_vis3): Likewise.
31680         * sysdeps/i386/configure.in (config-cflags-sse4): Set using
31681         LIBC_CONFIG_VAR.
31682         (config-asflags-i686): Likewise.
31683         (config-cflags-avx): Likewise.
31684         (config-cflags-sse2avx): Likewise.
31685         (have-mfma4): Likewise.
31686         (config-cflags-novzeroupper): Likewise.
31687         * sysdeps/mach/configure.in (MIG): Likewise.
31688         * sysdeps/sparc/configure.in (have-as-vis3): Likewise.
31689         * sysdeps/x86_64/configure.in (config-cflags-sse4): Set using
31690         LIBC_CONFIG_VAR.
31691         (config-cflags-avx): Likewise.
31692         (config-cflags-sse2avx): Likewise.
31693         (have-mfma4): Likewise.
31694         (config-cflags-novzeroupper): Likewise.
31695         * configure: Regenerated.
31696         * sysdeps/i386/configure: Likewise.
31697         * sysdeps/mach/configure: Likewise.
31698         * sysdeps/sparc/configure: Likewise.
31699         * sysdeps/x86_64/configure: Likewise.
31701 2013-03-20  Roland McGrath  <roland@hack.frob.com>
31703         [BZ #14812]
31704         * locale/programs/localedef.c (options): Put N_ translation marker
31705         on argument names, not just descriptions.
31707 2013-03-20  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
31709         * Makerules ($(inst_libdir)/libc.so): Use $(rtlddir).
31711 2013-03-20  Ondřej Bílka  <neleai@seznam.cz>
31713         [BZ #14176]
31714         * stdlib/stdlib.h (mblen, mbtowc, wctomb): Remove __wur.
31716 2013-03-19  Roland McGrath  <roland@hack.frob.com>
31718         * sysdeps/posix/libc_fatal.c: Include <sys/mman.h>.
31719         [!WRITEV_FOR_FATAL] (writev_for_fatal): New function.
31720         [!WRITEV_FOR_FATAL] (WRITEV_FOR_FATAL): New macro; call that.
31721         [!BEFORE_ABORT] (before_abort): New function.
31722         [!BEFORE_ABORT] (BEFORE_ABORT): New macro; call that.
31723         * sysdeps/unix/sysv/linux/libc_fatal.c: Trim includes.
31724         (writev_for_fatal): New function.
31725         (WRITEV_FOR_FATAL): New macro; call that.
31726         (backtrace_and_maps): New function.
31727         (BEFORE_ABORT): New macro; call that.
31728         (struct str_list): Type removed.
31729         (__libc_message, __libc_fatal): Functions removed.
31730         Include <sysdeps/posix/libc_fatal.c> instead.
31732 2013-03-19  Joseph Myers  <joseph@codesourcery.com>
31734         * math/k_casinhf.c (__kernel_casinhf): Consistently use float
31735         constants.
31736         * math/k_casinhl.c (__kernel_casinhl): Consistently use long
31737         double constants.
31739 2013-03-19  Andreas Schwab  <schwab@suse.de>
31741         * sysdeps/gnu/configure.in: Set libc_cv_rtldir for s390x.
31742         * sysdeps/gnu/configure: Regenerate.
31744         * configure.in: Substitute libc_cv_rtlddir.
31745         * configure: Regenerate.
31746         * config.make.in (rtlddir): Set from libc_cv_rtlddir.
31747         * Makeconfig (rtlddir, inst_rtlddir): New variables.
31748         (rtld-LDFLAGS): Use them with $(rtld-installed-name).
31749         * elf/Makefile (install-others, CFLAGS-interp.c)
31750         (ldso_install, common-ldd-rewrite): Likewise.
31751         ($(inst_rtlddir)/$(rtld-installed-name)): Renamed from
31752         $(inst_slibdir)/$(rtld-installed-name).
31753         * scripts/rellns-sh: Add -p option.
31754         * Makerules (make-shlib-link): Use rellns-sh to get relative name
31755         for source.
31757 2013-03-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
31759         * manual/nptl.texi: Renamed to ...
31760         * manual/threads.texi: ... this.
31761         * manual/Makefile (chapters): Update.
31763 2013-03-18  Roland McGrath  <roland@hack.frob.com>
31765         [BZ #14812]
31766         * argp/argp-parse.c (argp_default_options): Put N_ translation marker
31767         on argument names, not just descriptions.
31768         * malloc/memusagestat.c (options): Likewise.
31769         * nss/getent.c (options): Likewise.
31771 2013-03-18  Benno Schulenberg  <bensberg@justemail.net>
31773         [BZ #14812]
31774         * iconv/iconv_prog.c (options): Put N_ translation marker
31775         on argument names, not just descriptions.
31776         * iconv/iconvconfig.c (options): Likewise.
31778 2013-03-18  Ondrej Bilka  <neleai@seznam.cz>
31780         * sysdeps/x86_64/strlen.S: Replace with new SSE2 based
31781         implementation which is faster on all x86_64 architectures.
31782         Tested on AMD, Intel Nehalem, SNB, IVB.
31783         * sysdeps/x86_64/strnlen.S: Likewise.
31785         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
31786         Remove all multiarch strlen and strnlen versions.
31787         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update.
31788         Remove strlen and strnlen related parts.
31790         * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: Update.
31791         Inline strlen part.
31792         * sysdeps/x86_64/multiarch/strcat-ssse3.S: Likewise.
31794         * sysdeps/x86_64/multiarch/strlen.S: Remove.
31795         * sysdeps/x86_64/multiarch/strlen-sse2-no-bsf.S: Likewise.
31796         * sysdeps/x86_64/multiarch/strlen-sse2-pminub.S: Likewise.
31797         * sysdeps/x86_64/multiarch/strlen-sse4.S: Likewise.
31798         * sysdeps/x86_64/multiarch/strnlen.S: Likewise.
31799         * sysdeps/x86_64/multiarch/strnlen-sse2-no-bsf.S: Likewise.
31801 2013-03-17  Carlos O'Donell  <carlos@redhat.com>
31803         * manual/memory.texi (Malloc Tunable Parameters):
31804         Sort parameters alphabetically. Add comments for missing entries.
31806 2013-03-17  David S. Miller  <davem@davemloft.net>
31808         * sysdeps/sparc/fpu/libm-test-ulps: Update.
31810 2013-03-16  Joseph Myers  <joseph@codesourcery.com>
31812         [BZ #15283]
31813         * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_y1l): Correct test
31814         for arguments at most half maximum finite value.
31815         * math/libm-test.inc (j0_test): Add more tests.
31816         (j1_test): Likewise.
31817         (y0_test): Likewise.
31818         (y1_test): Likewise.
31819         * sysdeps/i386/fpu/libm-test-ulps: Update.
31820         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
31822         [BZ #14155]
31823         * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee754_j0l): Do not compute
31824         1 / x and functions P and Q for arguments above 0x1p256L.
31825         (__ieee754_y0l): Likewise.
31826         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise.
31827         (__ieee754_y1l): Likewise.
31828         * math/libm-test.inc (j0_test): Do not allow spurious underflows.
31829         (j1_test): Likewise.
31830         (y0_test): Likewise.
31831         (y1_test): Likewise.
31833 2013-03-16  Thomas Schwinge  <thomas@codesourcery.com>
31835         * math/test-snan.c (TEST_FUNC): Add and use minus_sNaN_var
31836         variable.
31838 2013-03-15  Roland McGrath  <roland@hack.frob.com>
31840         * elf/dl-support.c (_dl_aux_init): Ignore zero value for AT_PAGESZ.
31841         (_dl_non_dynamic_init): Don't set _dl_pagesize; it will never be
31842         zero since it's initialized to EXEC_PAGESIZE.
31844         * sysdeps/unix/sysv/linux/ldsodefs.h
31845         (_dl_non_dynamic_init, _dl_aux_init): Move declarations to ...
31846         * sysdeps/generic/ldsodefs.h: ... here.
31848 2013-03-15  Thomas Schwinge  <thomas@codesourcery.com>
31850         * math/libm-test.inc (ldexp_test): Add missing START/END markers.
31852         * sysdeps/powerpc/fpu/test-powerpc-snan.c: Rename to
31853         math/test-snan.c.
31854         * math/test-snan.c: Renamed from
31855         sysdeps/powerpc/fpu/test-powerpc-snan.c.
31856         * math/Makefile (tests): Add test-snan.
31857         * sysdeps/powerpc/fpu/Makefile (libm-tests): Don't add
31858         test-powerpc-snan.
31860         * math/basic-test.c (TEST_FUNC): Replace NANFUNC argument with
31861         SUFFIX.  Initialize qNaN_var with __builtin_nan family of
31862         functions.
31863         (TEST_TRUNC): Add SUFFIX argument.  Initialize qNaN_var with
31864         __builtin_nan family of functions.
31865         * math/libm-test.inc (initialize): Initialize qnan_value with
31866         __builtin_nan family of functions.
31867         * sysdeps/powerpc/fpu/test-powerpc-snan.c (SNANf, SNAN, SNANl):
31868         Remove variables.
31869         (init_signaling_nan, snan_float, snan_double, snan_ldouble):
31870         Remove functions.
31871         (TEST_FUNC): Add SUFFIX argument.  Move sNaN_var into static
31872         storage class.  Initialize qNaN_var and sNaN_var with
31873         __builtin_nan and __builtin_nans families of functions,
31874         respectively.
31876         * math/libm-test.inc (acosh_test): Also test with qNaN input.
31877         (sqrt_test): Remove duplicate test with qNaN input.
31878         (lrint_test, llrint_test, lround_test, llround_test, rint_test)
31879         (round_test, signbit_test, significand_test): Note missing +/-Inf
31880         as well as qNaN tests.
31882         * math/basic-test.c (TEST_FUNC, TEST_TRUNC): Rename NaN_var to
31883         qNaN_var.  Fix a few strings, too.
31884         * math/libm-test.inc (nan_value): Rename to qnan_value.
31885         * math/gen-libm-test.pl (%beautify): Adjust to that.
31886         * math/bits/mathcalls.h (nan): Refer to qNaN instead of NaN.
31887         * math/test-misc.c (main): Likewise.
31888         * sysdeps/ieee754/bits/nan.h (__nan_bytes, __nan_union): Rename
31889         to __qnan_bytes, and __qnan_union, respectively.
31890         * ports/sysdeps/mips/bits/nan.h (__nan_bytes, __nan_union):
31891         Likewise.
31892         * stdio-common/tstdiomisc.c (nanval, lnanval): Rename to qnanval,
31893         and lqnanval, respectively.
31894         * sysdeps/powerpc/bits/fenv.h: Fix usage of NaN/qNaN/sNaN.
31895         * sysdeps/powerpc/fpu/fenv_libc.h: Likewise.
31896         * sysdeps/powerpc/fpu/test-powerpc-snan.c (TEST_FUNC): Likewise,
31897         and rename NaN_var to qNaN_var, and SNaN_var to sNaN_var.
31899         * math/libm-test.inc (fpstack_test) [__x86_64__]: Enable test.
31900         * math/test-misc.c (main) [__x86_64__]: Enable test for long
31901         doubles.
31903         * math/test-misc.c (main): Fix copy'n'pastos.
31904         * misc/tst-efgcvt.c (special): Likewise.
31906         * stdio-common/printf_fp.c (__isinfl_internal, __isnanl_internal):
31907         Remove declarations.
31909 2013-03-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
31911         * sysdeps/ieee754/dbl-64/mpa-arch.h: Remove.
31912         * sysdeps/ieee754/dbl-64/mpa.c: Revert last change.
31913         * sysdeps/ieee754/dbl-64/mpa.h: Revert last change.
31914         * sysdeps/powerpc/power4/fpu/mpa-arch.h: Remove.
31916 2013-03-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
31918         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET): Add
31919         macro to return vdso values correctly in IFUNC implementations.
31920         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c (__gettimeofday):
31921         Optimization by using IFUNC.
31923 2013-03-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
31924             Richard Henderson  <rth@redhat.com>
31925             Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
31927         * Makefile.in (bench): New target.
31928         * NEWS: Mention the benchmark framework.
31929         * Rules (bench): Likewise.
31930         (binaries-bench): Generate binaries for functions to
31931         benchmark.
31932         * benchtests/Makefile: New makefile for benchmark tests.
31933         * benchtests/bench-skeleton.c: New skeleton file for benchmark
31934         programs.
31935         * benchtests/exp-inputs: New input file for EXP function.
31936         * benchtests/pow-inputs: New input file for POW function.
31937         * scripts/bench.pl: New script to generate source files for
31938         benchmark programs.
31940 2013-03-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
31942         * sysdeps/ieee754/dbl-64/mpa-arch.h: New file.
31943         * sysdeps/ieee754/dbl-64/mpa.c (norm): Use MANTISSA_T to store
31944         computations on mantissa.  Use macros for rounding and
31945         division.
31946         (denorm): Likewise.
31947         (__dbl_mp): Likewise.
31948         (add_magnitudes): Likewise.
31949         (sub_magnitudes): Likewise.
31950         (__mul): Likewise.
31951         (__sqr): Likewise.
31952         * sysdeps/ieee754/dbl-64/mpa.h: Include mpa-arch.h.  Define
31953         powers of two in terms of TWOPOW macro.
31954         (mp_no): Make type of mantissa as MANTISSA_T.
31955         [!RADIXI]: Define RADIXI.
31956         [!TWO52]: Define TWO52.
31957         * sysdeps/powerpc/power4/fpu/mpa-arch.h: New file.
31959         * manual/nptl.texi (cindex): Modify threads to pthreads.
31961 2013-03-15  Joseph Myers  <joseph@codesourcery.com>
31963         * sysdeps/x86_64/preconfigure: Regenerated.
31965 2013-03-14  Joseph Myers  <joseph@codesourcery.com>
31967         [BZ #14155]
31968         * sysdeps/ieee754/dbl-64/e_j0.c (pzero): Return 1.0 for arguments
31969         0x1p28 and above.
31970         (qzero): Return -0.125 / x for arguments 0x1p28 and above.
31971         * sysdeps/ieee754/dbl-64/e_j1.c (pzero): Return 1.0 for arguments
31972         0x1p28 and above.
31973         (qzero): Return 0.375 / x for arguments 0x1p28 and above.
31974         * math/libm-test.inc (j0_test): Do not allow one spurious
31975         underflow exception.
31976         (y1_test): Likewise.
31978 2013-03-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
31980         * manual/Makefile (chapters): Add nptl.
31981         * manual/debug.texi (Debugging Support): Add link to Threads
31982         chapter.
31983         * manual/nptl.texi: New file.
31985         * sysdeps/unix/sysv/linux/times.c (__times): Fix formatting.
31987 2013-03-14  Petr Baudis  <pasky@ucw.cz>
31989         * sysdeps/unix/sysv/linux/times.c (__times): On EFAULT, test
31990         for non-NULL pointer before the memory validity test. Pointed
31991         out by Holger Brunck <holger.brunck@keymile.com>.
31993 2013-03-13  Andreas Schwab  <schwab@suse.de>
31995         * extra-lib.mk (extra-objs): Add static-only-routines as .oS
31996         instead of .os.
31998 2013-03-13  Joseph Myers  <joseph@codesourcery.com>
32000         * timezone/zic.c: Update from tzcode 2013b.
32002 2013-03-12  Carlos O'Donell  <carlos@redhat.com>
32004         * manual/install.texi (Configuring and compiling):
32005         Mention i686 and i586.
32006         * INSTALL: Regenerate.
32008 2013-03-12  Roland McGrath  <roland@hack.frob.com>
32010         * sysdeps/init_array/elf-init.c: New file.
32011         * csu/elf-init.c
32012         (__libc_csu_init) [!NO_INITFINI]: Conditionalize _init call on this.
32013         (__libc_csu_fini) [!NO_INITFINI]: Conditionalize _fini call on this.
32015         * csu/gmon-start.c [GMON_START_ARRAY_SECTION]: Don't define
32016         __gmon_start__ as global, but as static with a .preinit_array pointer.
32017         * sysdeps/init_array/gmon-start.c: New file.  Use that.
32018         * sysdeps/init_array/crti.S: New file, empty except for comments.
32019         * sysdeps/init_array/crtn.S: Likewise.
32021 2013-03-11  Ondřej Bílka  <neleai@seznam.cz>
32023         * sysdeps/x86_64/memset.S: Remove USE_MULTIARCH conditional for
32024         definining bcopy.
32025         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
32026         Remove Prefer_SSE_for_memop.
32027         * sysdeps/x86_64/multiarch/init-arch.h: Remove
32028         bit_Prefer_SSE_for_memop, index_Prefer_SSE_for_memop,
32029         HAS_PREFER_SSE_FOR_MEMOP.
32030         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Remove
32031         memset-x86-64.
32032         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
32033         Remove bzero, memset ifunc support.
32034         * sysdeps/x86_64/multiarch/bzero.S: Remove file.
32035         * sysdeps/x86_64/multiarch/memset-x86-64.S: Likewise.
32036         * sysdeps/x86_64/multiarch/memset.S: Likewise.
32037         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
32039 2013-03-11  Andreas Schwab  <schwab@suse.de>
32041         [BZ #15234]
32042         * Versions.def (libpthread): Add GLIBC_2.3, so that it can be used
32043         by SHLIB_COMPAT.
32044         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist
32045         (GLIBC_2.16): Remove pthread_atfork.
32047 2013-03-08  Paul Pluzhnikov  <ppluzhnikov@google.com>
32049         * posix/Makefile (testcases.h): Set LC_ALL=C before sed.
32050         (ptestcases.h): Likewise.
32052 2013-03-08  Roland McGrath  <roland@hack.frob.com>
32054         * Makeconfig ($(common-objpfx)config.status): Depend on
32055         sysdeps/*/preconfigure{,.in} too.
32057 2013-03-08  Joseph Myers  <joseph@codesourcery.com>
32059         * malloc/malloc.h (__malloc_ptr_t): Remove macro.
32060         (__free_hook): Use void * instead of __malloc_ptr_t.
32061         (__malloc_hook): Likewise.
32062         (__realloc_hook): Likewise.
32063         (__memalign_hook): Likewise.
32064         (__after_morecore_hook): Likewise.
32065         * malloc/arena.c (save_malloc_hook): Likewise.
32066         (save_free_hook): Likewise.
32067         * malloc/hooks.c (malloc_hook_ini): Likewise.
32068         (realloc_hook_ini): Likewise.
32069         (memalign_hook_ini): Likewise.
32070         * malloc/malloc.c (malloc_hook_ini): Likewise.
32071         (realloc_hook_ini): Likewise.
32072         (memalign_hook_ini): Likewise.
32073         (__free_hook): Likewise.
32074         (__malloc_hook): Likewise.
32075         (__realloc_hook): Likewise.
32076         (__memalign_hook): Likewise.
32077         (__libc_malloc): Likewise.
32078         (__libc_free): Likewise.
32079         (__libc_realloc): Likewise.
32080         (__libc_memalign): Likewise.
32081         (__libc_valloc): Likewise.
32082         (__libc_pvalloc): Likewise.
32083         (__libc_calloc): Likewise.
32084         (__posix_memalign): Likewise.
32085         * malloc/morecore.c (__sbrk): Likewise.
32086         (__default_morecore): Likewise.
32088         * malloc/morecore.c (__default_morecore): Use ISO C prototype.
32090         * malloc/malloc.h (__malloc_ptrdiff_t): Remove macro.
32091         * malloc/morecore.c (__default_morecore): Use ptrdiff_t instead of
32092         __malloc_ptrdiff_t.
32094         * malloc/malloc.h (__malloc_size_t): Remove macro.
32095         * malloc/mcheck.c (old_malloc_hook): Use size_t instead of
32096         __malloc_size_t.
32097         (old_memalign_hook): Likewise.
32098         (old_realloc_hook): Likewise.
32099         (struct hdr): Likewise.
32100         (flood): Likewise.
32101         (mallochook): Likewise.
32102         (memalignhook): Likewise.
32103         (reallochook): Likewise.
32104         * malloc/mtrace.c (tr_old_malloc_hook): Likewise.
32105         (tr_old_realloc_hook): Likewise.
32106         (tr_old_memalign_hook): Likewise.
32107         (tr_mallochook): Likewise.
32108         (tr_reallochook): Likewise.
32109         (tr_memalignhook): Likewise.
32111 2013-03-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
32113         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_pack): Rename to
32114         default_ldbl_pack and using as default implementation.
32115         (ldbl_unpack): Rename to default_ldbl_unpack and using as default
32116         implementation.
32117         * sysdeps/powerpc/fpu/math_ldbl.h (ldbl_extract_mantissa): Remove
32118         redundant definition.
32119         (ldbl_insert_mantissa): Likewise.
32120         (ldbl_canonicalize): Likewise.
32121         (ldbl_nearbyint): Likewise.
32122         (ldbl_pack): Rename to ldbl_pack_ppc.
32123         (ldbl_unpack): Rename to ldbl_unpack_ppc.
32124         * sysdeps/unix/sysv/linux/powerpc/Implies: Remove file.
32125         * sysdeps/powerpc/Implies: Add ieee754/ldbl-opt after ieee754/ldbl-128ibm.
32127 2013-03-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
32129         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Move file...
32130         * sysdeps/powerpc/power4/fpu/mpa.c: ... here.
32131         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile: Move file...
32132         * sysdeps/powerpc/power4/fpu/Makefile: ... here.
32133         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Remove file.
32134         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile: Remove file.
32135         * sysdeps/powerpc/powerpc32/power4/Implies: New file.
32136         * sysdeps/powerpc/powerpc64/power4/Implies: New file.
32138 2013-03-07  Andreas Jaeger  <aj@suse.de>
32140         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
32141         bits/mman-linux.h.
32143 2013-03-07  Siddhesh Poyarekar  <siddhesh@redhat.com>
32145         * sysdeps/ieee754/dbl-64/slowexp.c [!USE_LONG_DOUBLE_FOR_MP]:
32146         Include mpa.h and declare __MPEXP.
32147         [USE_LONG_DOUBLE_FOR_MP] (__slowexp): Call __IEEE754_EXPL.
32148         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile
32149         (CPPFLAGS-slowexp.c): Define USE_LONG_DOUBLE_FOR_MP.
32150         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Remove.
32151         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile
32152         (CPPFLAGS-slowexp.c): Define USE_LONG_DOUBLE_FOR_MP.
32153         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Remove.
32155         * sysdeps/ieee754/dbl-64/slowpow.c [USE_LONG_DOUBLE_FOR_MP]
32156         (__slowpow): Use long double EXPL and LOGL functions to
32157         compute POW.
32158         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile
32159         (CPPFLAGS-slowpow.c): Define USE_LONG_DOUBLE_FOR_MP.
32160         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Remove.
32161         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile
32162         (CPPFLAGS-slowpow.c): Define USE_LONG_DOUBLE_FOR_MP.
32163         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Remove.
32165         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Use
32166         intermediate variable to calculate exponent.
32167         (__sqr): Likewise.
32168         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul):
32169         Likewise.
32170         (__sqr): Likewise.
32172         * sysdeps/ieee754/dbl-64/mpa.c [!NO__MUL]: Define __mul.
32173         [!NO__SQR]: Define __sqr.
32174         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: define NO__MUL
32175         and NO__SQR.  Remove all code except __mul and __sqr.  Include
32176         sysdeps/ieee754/dbl-64/mpa.c.
32177         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
32179         [BZ #12723]
32180         * posix/Makefile (tests): Add tst-pathconf.
32181         * posix/tst-pathconf.c: New test case.
32182         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Remove
32183         _PC_PIPE_BUF.
32184         * sysdeps/unix/sysv/linux/pathconf.c (__pathconf): Likewise.
32186 2013-03-06  Patsy Franklin  <pfrankli@redhat.com>
32188         * io/fcntl.h: Added a comment about AT_EACCESS and AT_REMOVEDIR.
32190 2013-03-06  Andreas Jaeger  <aj@suse.de>
32192         * sysdeps/unix/sysv/linux/bits/mman-linux.h (MAP_ANONYMOUS): Allow
32193         definition via __MAP_ANONYMOUS.
32195         * sysdeps/unix/sysv/linux/s390/bits/mman.h (MAP_GROWSUP): Remove,
32196         it's not part of Linux headers.
32198         * sysdeps/unix/sysv/linux/bits/mman-linux.h (MAP_HUGE_SHIFT): Define.
32199         (MAP_HUGE_MASK): Define.
32201         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (PTRACE_O_EXIT_KILL):
32202         Define.
32203         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
32204         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h (PTRACE_O_EXIT_KILL):
32205         Define.
32206         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
32207         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_O_EXIT_KILL):
32208         Define.
32209         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
32210         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h (PTRACE_O_EXITKILL):
32211         Define.
32212         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
32214         * sysdeps/unix/sysv/linux/x86/bits/msq.h (MSG_COPY): Likewise.
32215         * sysdeps/unix/sysv/linux/generic/bits/msq.h (MSG_COPY): Define.
32216         * sysdeps/unix/sysv/linux/powerpc/bits/msq.h (MSG_COPY): Likewise.
32217         * sysdeps/unix/sysv/linux/bits/msq.h (MSG_COPY): Likewise.
32218         * sysdeps/unix/sysv/linux/s390/bits/msq.h (MSG_COPY): Likewise.
32219         * sysdeps/unix/sysv/linux/sparc/bits/msq.h (MSG_COPY): Define.
32221         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_filesize_max):
32222         Handle f2fs.
32224         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
32225         Handle f2fs and efivarfs.
32227         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_link_max): Handle
32228         f2fs.
32230         * sysdeps/unix/sysv/linux/linux_fsinfo.h (F2FS_SUPER_MAGIC): Add.
32231         (EFIVARFS_MAGIC): Add.
32232         (F2FS_LINK_MAX): Add.
32234 2013-03-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
32236         * stdio-common/vfprintf.c: Replace __builtin_expect with
32237         __glibc_unlikely.
32239 2013-03-06  Joseph Myers  <joseph@codesourcery.com>
32241         [BZ #13550]
32242         * sysdeps/generic/bp-sym.h: Remove file.
32243         * sysdeps/powerpc/powerpc64/bp-asm.h: Likewise.
32244         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Don't include
32245         <bp-sym.h> and <bp-asm.h>.
32246         (__longjmp): Don't use BP_SYM.
32247         * sysdeps/powerpc/powerpc64/a2/memcpy.S: Don't include <bp-sym.h>
32248         and <bp-asm.h>.
32249         (memcpy): Don't use BP_SYM.
32250         * sysdeps/powerpc/powerpc64/cell/memcpy.S: Don't include
32251         <bp-sym.h> and <bp-asm.h>.
32252         (memcpy): Don't use BP_SYM.
32253         * sysdeps/powerpc/powerpc64/memcpy.S: Don't include <bp-sym.h> and
32254         <bp-asm.h>.
32255         (memcpy): Don't use BP_SYM.
32256         * sysdeps/powerpc/powerpc64/memset.S: Don't include <bp-sym.h> and
32257         <bp-asm.h>.
32258         (memset): Don't use BP_SYM.
32259         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
32260         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
32261         (__bzero): Don't use BP_SYM.
32262         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
32263         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
32264         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Don't include
32265         <bp-sym.h> and <bp-asm.h>.
32266         (memcmp): Don't use BP_SYM.  Remove comment about bounded
32267         pointers.
32268         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Don't include
32269         <bp-sym.h> and <bp-asm.h>.
32270         (memcpy): Don't use BP_SYM.
32271         * sysdeps/powerpc/powerpc64/power4/memset.S: Don't include
32272         <bp-sym.h> and <bp-asm.h>.
32273         (memset): Don't use BP_SYM.
32274         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
32275         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
32276         (__bzero): Don't use BP_SYM.
32277         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
32278         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
32279         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Don't include
32280         <bp-sym.h> and <bp-asm.h>.
32281         (strncmp): Don't use BP_SYM.  Remove comment about bounded
32282         pointers.
32283         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Don't include
32284         <bp-sym.h> and <bp-asm.h>.
32285         (memcpy): Don't use BP_SYM.
32286         * sysdeps/powerpc/powerpc64/power6/memset.S: Don't include
32287         <bp-sym.h> and <bp-asm.h>.
32288         (memset): Don't use BP_SYM.
32289         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
32290         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
32291         (__bzero): Don't use BP_SYM.
32292         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
32293         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
32294         * sysdeps/powerpc/powerpc64/power7/memchr.S: Don't include
32295         <bp-sym.h> and <bp-asm.h>.
32296         (__memchr): Don't use BP_SYM.
32297         * sysdeps/powerpc/powerpc64/power7/memcmp.S: Don't include
32298         <bp-sym.h> and <bp-asm.h>.
32299         (memcmp): Don't use BP_SYM.  Remove comment about bounded
32300         pointers.
32301         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Don't include
32302         <bp-sym.h> and <bp-asm.h>.
32303         (memcpy): Don't use BP_SYM.
32304         * sysdeps/powerpc/powerpc64/power7/mempcpy.S: Don't include
32305         <bp-sym.h> and <bp-asm.h>.
32306         (__mempcpy): Don't use BP_SYM.
32307         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Don't include
32308         <bp-sym.h> and <bp-asm.h>.
32309         (__memrchr): Don't use BP_SYM.
32310         * sysdeps/powerpc/powerpc64/power7/memset.S: Don't include
32311         <bp-sym.h> and <bp-asm.h>.
32312         (memset): Don't use BP_SYM.
32313         (__bzero): Likewise.
32314         * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: Don't include
32315         <bp-sym.h> and <bp-asm.h>.
32316         (__rawmemchr): Don't use BP_SYM.
32317         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: Don't include
32318         <bp-sym.h> and <bp-asm.h>.
32319         (__STRCMP): Don't use BP_SYM.
32320         * sysdeps/powerpc/powerpc64/power7/strchr.S: Don't include
32321         <bp-sym.h> and <bp-asm.h>.
32322         (strchr): Don't use BP_SYM.
32323         * sysdeps/powerpc/powerpc64/power7/strchrnul.S: Don't include
32324         <bp-sym.h> and <bp-asm.h>.
32325         (__strchrnul): Don't use BP_SYM.
32326         * sysdeps/powerpc/powerpc64/power7/strlen.S: Don't include
32327         <bp-sym.h> and <bp-asm.h>.
32328         (strlen): Don't use BP_SYM.
32329         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Don't include
32330         <bp-sym.h> and <bp-asm.h>.
32331         (strncmp): Don't use BP_SYM.  Remove comment about bounded
32332         pointers.
32333         * sysdeps/powerpc/powerpc64/power7/strnlen.S: Don't include
32334         <bp-sym.h> and <bp-asm.h>.
32335         (__strnlen): Don't use BP_SYM.
32336         * sysdeps/powerpc/powerpc64/setjmp-common.S: Don't include
32337         <bp-sym.h> and <bp-asm.h>.
32338         (__GI__setjmp): Don't use BP_SYM.
32339         (_setjmp): Likewise.
32340         (__sigsetjmp): Likewise.
32341         * sysdeps/powerpc/powerpc64/start.S: Don't include "bp-sym.h".
32342         (L(start_addresses)): Don't use BP_SYM.
32343         (_start): Likewise.
32344         * sysdeps/powerpc/powerpc64/stpcpy.S: Don't include <bp-sym.h> and
32345         <bp-asm.h>.
32346         (__stpcpy): Don't use BP_SYM, CHECK_BOUNDS_LOW,
32347         STORE_RETURN_BOUNDS, CHECK_BOUNDS_HIGH and STORE_RETURN_VALUE.
32348         (__stpcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
32349         (__stpcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
32350         * sysdeps/powerpc/powerpc64/strchr.S: Don't include <bp-sym.h> and
32351         <bp-asm.h>.
32352         (strchr): Don't use BP_SYM, CHECK_BOUNDS_LOW, STORE_RETURN_BOUNDS,
32353         CHECK_BOUNDS_HIGH_RTN and STORE_RETURN_VALUE.  Remove comment
32354         about bounded pointers.
32355         (strchr) [__BOUNDED_POINTERS__]: Remove conditional code.
32356         (strchr) [!__BOUNDED_POINTERS__]: Make code unconditional.
32357         * sysdeps/powerpc/powerpc64/strcmp.S: Don't include <bp-sym.h> and
32358         <bp-asm.h>.
32359         (strcmp): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove comment
32360         about bounded pointers.  Remove GKM FIXME comments.
32361         (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
32362         * sysdeps/powerpc/powerpc64/strcpy.S: Don't include <bp-sym.h> and
32363         <bp-asm.h>.
32364         (strcpy): Don't use BP_SYM, CHECK_BOUNDS_LOW and
32365         STORE_RETURN_BOUNDS.  Remove comment about bounded pointers.
32366         Remove GKM FIXME comments.
32367         (strcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
32368         (strcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
32369         * sysdeps/powerpc/powerpc64/strlen.S: Don't include <bp-sym.h> and
32370         <bp-asm.h>.
32371         (strlen): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove comment
32372         about bounded pointers.  Remove GKM FIXME comment.
32373         * sysdeps/powerpc/powerpc64/strncmp.S: Don't include <bp-sym.h>
32374         and <bp-asm.h>.
32375         (strncmp): Don't use BP_SYM.  Remove comment about bounded
32376         pointers.
32377         * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S: Don't include
32378         <bp-sym.h> and <bp-asm.h>.
32379         (__brk): Don't use BP_SYM and DISCARD_BOUNDS.
32380         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Don't include
32381         <bp-sym.h> and <bp-asm.h>.
32382         (__clone): Don't use BP_SYM and DISCARD_BOUNDS.  Remove GKM FIXME
32383         comment.
32385 2013-03-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
32387         * stdio-common/vfprintf.c (vfprintf): Check malloc return; don't
32388         call free(NULL).
32390 2013-03-05  David S. Miller  <davem@davemloft.net>
32392         * po/es.po: Update from translation team.
32394 2013-03-05  Andreas Jaeger  <aj@suse.de>
32396         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Include
32397         <bits/mman-linux.h>.
32398         (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
32399         is fine.
32400         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Move include of
32401         <bits/mman-linux.h> to end of file.
32402         (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
32403         is fine.
32404         * sysdeps/unix/sysv/linux/x86/bits/mman.h: Move include of
32405         <bits/mman-linux.h> to end of file.
32406         (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
32407         is fine.
32408         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Move include of
32409         <bits/mman-linux.h> to end of file.
32411         * sysdeps/unix/sysv/linux/bits/mman-linux.h [!MCL_CURRENT]
32412         (MCL_CURRENT, MCL_FUTURE): Define here.
32414 2013-03-05  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
32416         [BZ #15232]
32417         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Use
32418         attribute_hidden.
32419         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
32421 2013-03-05  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
32423         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Set the
32424         fourth parameter needed for rt_sigprocmask syscall.
32425         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S:
32426         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Likewise.
32427         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
32428         * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
32429         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
32430         * sysdeps/unix/sysv/linux/s390/ucontext_i.sym: Define _NSIG8.
32432 2013-03-04  Joseph Myers  <joseph@codesourcery.com>
32434         [BZ #13550]
32435         * sysdeps/powerpc/powerpc32/power4/strncmp.S (strncmp): Remove
32436         comment about bounded pointers.
32437         * sysdeps/powerpc/powerpc32/power7/strncmp.S (strncmp): Likewise.
32438         * sysdeps/powerpc/powerpc32/strncmp.S (strncmp): Likewise.
32440 2013-03-04  Andreas Jaeger  <aj@suse.de>
32442         * sysdeps/unix/sysv/linux/bits/mman-linux.h: New file, with Linux
32443         common definitions.
32445         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Remove all defines
32446         provided by bits/mman-linux.h and include <bits/mman-linux.h>.
32447         * sysdeps/unix/sysv/linux/x86/bits/mman.h: Likewise.
32448         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
32449         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
32450         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
32452 2013-03-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
32454         [BZ #15055]
32455         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Use
32456         __ieee754_sqrl instead of __sqrl.
32458 2013-03-01  Joseph Myers  <joseph@codesourcery.com>
32460         * sysdeps/powerpc/fpu/fpu_control.h: Move to ...
32461         * sysdeps/powerpc/fpu_control.h: ... here.
32462         * sysdeps/powerpc/fpu/bits/fenvinline.h: Move to ...
32463         * sysdeps/powerpc/bits/fenvinline.h: ... here.
32464         * sysdeps/powerpc/fpu/bits/mathinline.h: Move to ...
32465         * sysdeps/powerpc/bits/mathinline.h: ... here.
32467 2013-03-01  Roland McGrath  <roland@hack.frob.com>
32469         * elf/dl-hwcaps.c (_dl_important_hwcaps):
32470         Change [NEED_DL_SYSINFO || NEED_DL_SYSINFO_DSO] conditionals
32471         to just [NEED_DL_SYSINFO_DSO].
32472         * elf/dl-support.c: Likewise.
32473         * elf/dl-sysdep.c (_dl_sysdep_start): Likewise.
32474         * elf/rtld.c (dl_main): Likewise.
32475         * elf/setup-vdso.h (setup_vdso): Likewise.
32476         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Likewise.
32477         * sysdeps/unix/sysv/linux/dl-sysdep.c
32478         (_dl_discover_osversion): Likewise.
32480 2013-03-01  Carlos O'Donell  <carlos@redhat.com>
32482         * csu/libc-start.c (__pthread_initialize_minimal): Revert last change.
32483         * csu/libc-tls.c (__pthread_initialize_minimal): Likewise.
32485 2013-03-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
32487         * NEWS: Mention libm performance improvements and non-x86 PI
32488         futex support.
32490         * csu/libc-start.c (__pthread_initialize_minimal): Change
32491         function arguments.
32492         * csu/libc-tls.c (__pthread_initialize_minimal): Likewise.
32494 2013-02-28  Joseph Myers  <joseph@codesourcery.com>
32496         [BZ #13550]
32497         * sysdeps/powerpc/powerpc32/bp-asm.h: Remove file.
32498         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Don't include
32499         <bp-sym.h> and <bp-asm.h>.
32500         (__longjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
32501         * sysdeps/powerpc/powerpc32/a2/memcpy.S: Don't include <bp-sym.h>
32502         and <bp-asm.h>.
32503         (memcpy): Don't use BP_SYM.
32504         * sysdeps/powerpc/powerpc32/add_n.S: Don't include <bp-sym.h> and
32505         <bp-asm.h>.
32506         (__mpn_add_n): Don't use BP_SYM.
32507         (__mpn_add_n) [__BOUNDED_POINTERS_]: Remove conditional code.
32508         * sysdeps/powerpc/powerpc32/addmul_1.S: Don't include <bp-sym.h>
32509         and <bp-asm.h>.
32510         (__mpn_addmul_1): Don't use BP_SYM.
32511         (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
32512         * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Don't include
32513         <bp-sym.h>.
32514         (_setjmp): Don't use BP_SYM.
32515         (__novmx_setjmp): Likewise.
32516         (__GI__setjmp): Likewise.
32517         (__vmx_setjmp): Likewise.
32518         * sysdeps/powerpc/powerpc32/bsd-setjmp.S: Don't include
32519         <bp-sym.h>.
32520         * sysdeps/powerpc/powerpc32/bzero.S: Don't include <bp-sym.h>.
32521         (__bzero): Don't use BP_SYM.
32522         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
32523         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
32524         * sysdeps/powerpc/powerpc32/cell/memcpy.S: Don't include
32525         <bp-sym.h> and <bp-asm.h>.
32526         (memcpy): Don't use BP_SYM.
32527         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Don't include
32528         <bp-sym.h> and <bp-asm.h>.
32529         (__longjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
32530         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Don't include
32531         <bp-sym.h> and <bp-asm.h>.
32532         (__sigsetjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
32533         * sysdeps/powerpc/powerpc32/lshift.S: Don't include <bp-sym.h> and
32534         <bp-asm.h>.
32535         (__mpn_lshift): Don't use BP_SYM.
32536         (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
32537         * sysdeps/powerpc/powerpc32/memset.S: Don't include <bp-sym.h> and
32538         <bp-asm.h>.
32539         (memset): Don't use BP_SYM.
32540         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
32541         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
32542         * sysdeps/powerpc/powerpc32/mul_1.S: Don't include <bp-sym.h> and
32543         <bp-asm.h>.
32544         (__mpn_mul_1): Don't use BP_SYM.
32545         (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
32546         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Don't include
32547         <bp-sym.h> and <bp-asm.h>.
32548         (memcmp): Don't use BP_SYM.
32549         * sysdeps/powerpc/powerpc32/power4/memcpy.S: Don't include
32550         <bp-sym.h> and <bp-asm.h>.
32551         (memcpy): Don't use BP_SYM.
32552         * sysdeps/powerpc/powerpc32/power4/memset.S: Don't include
32553         <bp-sym.h> and <bp-asm.h>.
32554         (memset): Don't use BP_SYM.
32555         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Don't include
32556         <bp-sym.h> and <bp-asm.h>.
32557         (strncmp): Don't use BP_SYM.
32558         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Don't include
32559         <bp-sym.h> and <bp-asm.h>.
32560         (memcpy): Don't use BP_SYM.
32561         * sysdeps/powerpc/powerpc32/power6/memset.S: Don't include
32562         <bp-sym.h> and <bp-asm.h>.
32563         (memset): Don't use BP_SYM.
32564         * sysdeps/powerpc/powerpc32/power7/memchr.S: Don't include
32565         <bp-sym.h> and <bp-asm.h>.
32566         (__memchr): Don't use BP_SYM.
32567         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Don't include
32568         <bp-sym.h> and <bp-asm.h>.
32569         (memcmp): Don't use BP_SYM.
32570         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Don't include
32571         <bp-sym.h> and <bp-asm.h>.
32572         (memcpy): Don't use BP_SYM.
32573         * sysdeps/powerpc/powerpc32/power7/mempcpy.S: Don't include
32574         <bp-sym.h> and <bp-asm.h>.
32575         (__mempcpy): Don't use BP_SYM.
32576         * sysdeps/powerpc/powerpc32/power7/memrchr.S: Don't include
32577         <bp-sym.h> and <bp-asm.h>.
32578         (__memrchr): Don't use BP_SYM.
32579         * sysdeps/powerpc/powerpc32/power7/memset.S: Don't include
32580         <bp-sym.h> and <bp-asm.h>.
32581         (memset): Don't use BP_SYM.
32582         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: Don't include
32583         <bp-sym.h> and <bp-asm.h>.
32584         (__rawmemchr): Don't use BP_SYM.
32585         * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: Don't include
32586         <bp-sym.h> and <bp-asm.h>.
32587         (__STRCMP): Don't use BP_SYM.
32588         * sysdeps/powerpc/powerpc32/power7/strchr.S: Don't include
32589         <bp-sym.h> and <bp-asm.h>.
32590         (strchr): Don't use BP_SYM.
32591         * sysdeps/powerpc/powerpc32/power7/strchrnul.S: Don't include
32592         <bp-sym.h> and <bp-asm.h>.
32593         (__strchrnul): Don't use BP_SYM.
32594         * sysdeps/powerpc/powerpc32/power7/strlen.S: Don't include
32595         <bp-sym.h> and <bp-asm.h>.
32596         (strlen): Don't use BP_SYM.
32597         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Don't include
32598         <bp-sym.h> and <bp-asm.h>.
32599         (strncmp): Don't use BP_SYM.
32600         * sysdeps/powerpc/powerpc32/power7/strnlen.S: Don't include
32601         <bp-sym.h> and <bp-asm.h>.
32602         (__strnlen): Don't use BP_SYM.
32603         * sysdeps/powerpc/powerpc32/rshift.S: Don't include <bp-sym.h> and
32604         <bp-asm.h>.
32605         (__mpn_rshift): Don't use BP_SYM.
32606         (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
32607         * sysdeps/powerpc/powerpc32/setjmp-common.S: Don't include
32608         <bp-sym.h> and <bp-asm.h>.
32609         (__sigsetjmp): Don't use BP_SYM.
32610         * sysdeps/powerpc/powerpc32/start.S: Don't include "bp-sym.h".
32611         (L(start_addresses)): Don't use BP_SYM.
32612         (_start): Likewise.
32613         * sysdeps/powerpc/powerpc32/stpcpy.S: Don't include <bp-sym.h> and
32614         <bp-asm.h>.
32615         (__stpcpy): Don't use BP_SYM and macros from bp-asm.h.
32616         (__stpcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
32617         (__stpcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
32618         * sysdeps/powerpc/powerpc32/strchr.S: Don't include <bp-sym.h> and
32619         <bp-asm.h>.
32620         (strchr): Don't use BP_SYM.h and macros from bp-asm.h.
32621         (strchr) [__BOUNDED_POINTERS__]: Remove conditional code.
32622         (strchr) [!__BOUNDED_POINTERS__]: Make code unconditional.
32623         * sysdeps/powerpc/powerpc32/strcmp.S: Don't include <bp-sym.h> and
32624         <bp-asm.h>.
32625         (strcmp): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove GKM FIXME
32626         comments.
32627         (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
32628         * sysdeps/powerpc/powerpc32/strcpy.S: Don't include <bp-sym.h> and
32629         <bp-asm.h>.
32630         (strcpy): Don't use BP_SYM and macros from bp-asm.h.  Remove GKM
32631         FIXME comments.
32632         (strcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
32633         (strcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
32634         * sysdeps/powerpc/powerpc32/strlen.S: Don't include <bp-sym.h> and
32635         <bp-asm.h>.
32636         (strlen): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove GKM FIXME
32637         comment.
32638         * sysdeps/powerpc/powerpc32/strncmp.S: Don't include <bp-sym.h>
32639         and <bp-asm.h>.
32640         (strncmp): Don't use BP_SYM,
32641         * sysdeps/powerpc/powerpc32/sub_n.S: Don't include <bp-sym.h> and
32642         <bp-asm.h>.
32643         (__mpn_sub_n): Don't use BP_SYM.
32644         (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
32645         * sysdeps/powerpc/powerpc32/submul_1.S: Don't include <bp-sym.h>
32646         and <bp-asm.h>.
32647         (__mpn_submul_1): Don't use BP_SYM.
32648         (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
32649         * sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S: Don't include
32650         <bp-sym.h> and <bp-asm.h>.
32651         (__brk): Don't use BP_SYM and DISCARD_BOUNDS.
32652         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Don't include
32653         <bp-sym.h> and <bp-asm.h>.
32654         (__clone): Don't use BP_SYM and DISCARD_BOUNDS.  Remove GKM FIXME
32655         comment.
32657 2013-02-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
32659         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (add_magnitudes):
32660         Use ZK to minimize writes to Z.
32661         (sub_magnitudes): Simplify code a bit.
32662         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (add_magnitudes):
32663         Use ZK to minimize writes to Z.
32664         (sub_magnitudes): Simplify code a bit.
32666 2013-02-27  Roland McGrath  <roland@hack.frob.com>
32668         * csu/gmon-start.c: Add special exception to license text.
32670 2013-02-27  Richard Henderson  <rth@redhat.com>
32672         * scripts/config.guess: Update from config.git.
32673         * scripts/config.sub: Likewise.
32675 2013-02-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
32677         * sysdeps/ieee754/dbl-64/mpsqrt.c: Reformat.
32679         * sysdeps/ieee754/dbl-64/mpatan2.c: Reformat.
32681         * sysdeps/ieee754/dbl-64/mpatan.c: Reformat.
32683         * sysdeps/ieee754/dbl-64/mptan.c: Reformat.
32685         * sysdeps/ieee754/dbl-64/mplog.c: Reformat.
32687 2013-02-26  Roland McGrath  <roland@hack.frob.com>
32689         * Makeconfig (%.v.i, %.v): Move these pattern rules outside of
32690         [$(build-shared = yes].
32692 2013-02-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
32694         * sysdeps/ieee754/dbl-64/mpa.c: Include alloca.h.
32695         (__mul): Reduce iterations for calculating mantissa.
32697         * sysdeps/ieee754/dbl-64/sincos32.c (__c32): Use MPONE and
32698         MPTWO.
32699         (__mpranred): Likewise.
32701         [BZ #15160]
32702         * malloc/memusagestat.c (main): Draw graphs for heap and stack
32703         only if MAXSIZE_HEAP and MAXSIZE_STACK are non-zero.
32705 2013-02-26  Paul Eggert  <eggert@cs.ucla.edu>
32707         * posix/regex_internal.h [__GNUC__ < 3 + (__GNUC_MINOR__ < 1]:
32708         Define __attribute__.
32710 2013-02-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
32712         * locale/elem-hash.h (elem_hash): Mark as pure and possibly
32713         unused.
32714         * posix/regex_internal.h (__attribute): Remove.
32715         [!_LIBC && __i386__]: Use __attribute__ instead of __attribute.
32716         (re_string_context_at): Likewise.
32717         (bitset_not): Use __attribute__ and mark function as possibly
32718         unused.
32719         (bitset_merge): Likewise.
32720         (bitset_mask): Likewise.
32721         (re_string_char_size_at): Likewise.
32722         (re_string_wchar_at): Likewise.
32723         (re_string_elem_size_at): Likewise.
32725 2013-02-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
32727         * sysdeps/ieee754/dbl-64/sincos32.c (ss32): Remove commented
32728         code.
32729         (cc32): Likewise.
32731         * sysdeps/ieee754/dbl-64/mpa.c (mcr): Use long instead of int.
32732         (__acr): Likewise.
32733         (__cpy): Likewise.
32734         (norm): Likewise.
32735         (denorm): Likewise.
32736         (__dbl_mp): Likewise.
32737         (add_magnitudes): Likewise.
32738         (sub_magnitudes): Likewise.
32739         (__mul): Likewise.
32740         (__inv): Likewise.
32742         * sysdeps/ieee754/dbl-64/slowexp.c: Reformat in GNU coding
32743         style.
32745         * sysdeps/ieee754/dbl-64/slowpow.c: Reformat in GNU coding
32746         style.
32748         * sysdeps/ieee754/dbl-64/slowexp.c (__slowexp): Remove commented
32749         code.
32751         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mp_dbl): Sync
32752         up changes with default code.
32753         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mp_dbl):
32754         Likewise.
32756 2013-02-24  Allan McRae  <allan@archlinux.org>
32758         * manual/socket.texi (The Internet Namespace): Order menu items
32759         to match that in the file.
32761         * manual/libc-texinfo.sh: Use @detailmenu around the detailed
32762         node listing of the info page menu.
32764 2013-02-21  Joseph Myers  <joseph@codesourcery.com>
32766         [BZ #13550]
32767         * sysdeps/i386/bp-asm.h: Remove file.
32768         * sysdeps/i386/add_n.S: Do not include "bp-sym.h" and "bp-asm.h".
32769         (PARMS): Do not use macros from bp-asm.h.
32770         (S1): Likewise.
32771         (S2): Likewise.
32772         (SIZE): Likewise.
32773         (__mpn_add_n): Do not use BP_SYM
32774         * sysdeps/i386/addmul_1.S: Do not include "bp-sym.h" and
32775         "bp-asm.h".
32776         (PARMS): Do not use macros from bp-asm.h.
32777         (S1): Likewise.
32778         (SIZE): Likewise.
32779         (__mpn_addmul_1): Do not use BP_SYM
32780         * sysdeps/i386/bsd-_setjmp.S: Do not include "bp-sym.h" and
32781         "bp-asm.h".
32782         (PARMS): Do not use macros from bp-asm.h.
32783         (SIGMSK): Likewise.
32784         (_setjmp): Likewise.  Do not use BP_SYM.
32785         * sysdeps/i386/bsd-setjmp.S: Do not include "bp-sym.h" and
32786         "bp-asm.h".
32787         (PARMS): Do not use macros from bp-asm.h.
32788         (SIGMSK): Likewise.
32789         (setjmp): Likewise.  Do not use BP_SYM.
32790         * sysdeps/i386/fpu/s_frexp.S: Do not include "bp-sym.h" and
32791         "bp-asm.h".
32792         (PARMS): Do not use macros from bp-asm.h.
32793         (__frexp): Do not use BP_SYM.
32794         (frexp): Likewise.
32795         * sysdeps/i386/fpu/s_frexpf.S: Do not include "bp-sym.h" and
32796         "bp-asm.h".
32797         (PARMS): Do not use macros from bp-asm.h.
32798         (__frexpf): Do not use BP_SYM.
32799         (frexpf): Likewise.
32800         * sysdeps/i386/fpu/s_frexpl.S: Do not include "bp-sym.h" and
32801         "bp-asm.h".
32802         (PARMS): Do not use macros from bp-asm.h.
32803         (__frexpl): Do not use BP_SYM.
32804         (frexpl): Likewise.
32805         * sysdeps/i386/fpu/s_remquo.S: Do not include "bp-sym.h" and
32806         "bp-asm.h".
32807         (PARMS): Do not use macros from bp-asm.h.
32808         (__remquo): Do not use BP_SYM.
32809         (remquo): Likewise.
32810         * sysdeps/i386/fpu/s_remquof.S: Do not include "bp-sym.h" and
32811         "bp-asm.h".
32812         (PARMS): Do not use macros from bp-asm.h.
32813         (__remquof): Do not use BP_SYM.
32814         (remquof): Likewise.
32815         * sysdeps/i386/fpu/s_remquol.S: Do not include "bp-sym.h" and
32816         "bp-asm.h".
32817         (PARMS): Do not use macros from bp-asm.h.
32818         (__remquol): Do not use BP_SYM.
32819         (remquol): Likewise.
32820         * sysdeps/i386/i486/strcat.S: Do not include "bp-sym.h" and
32821         "bp-asm.h".
32822         (PARMS): Do not use macros from bp-asm.h.
32823         (DEST): Likewise.
32824         (SRC): Likewise.
32825         (strcat): Remove GKM FIXME comment.  Do not use BP_SYM.
32826         * sysdeps/i386/i486/strlen.S: Do not include "bp-sym.h" and
32827         "bp-asm.h".
32828         (PARMS): Do not use macros from bp-asm.h.
32829         (strlen): Do not use BP_SYM.
32830         * sysdeps/i386/i586/add_n.S: Do not include "bp-sym.h" and
32831         "bp-asm.h".
32832         (PARMS): Do not use macros from bp-asm.h.
32833         (S1): Likewise.
32834         (S2): Likewise.
32835         (SIZE): Likewise.
32836         (__mpn_add_n): Do not use BP_SYM.
32837         * sysdeps/i386/i586/addmul_1.S: Do not include "bp-sym.h" and
32838         "bp-asm.h".
32839         (PARMS): Do not use macros from bp-asm.h.
32840         (S1): Likewise.
32841         (SIZE): Likewise.
32842         (__mpn_addmul_1): Do not use BP_SYM.
32843         * sysdeps/i386/i586/bzero.S (__bzero): Do not use BP_SYM in
32844         weak_alias.
32845         (bzero): Likewise.
32846         * sysdeps/i386/i586/lshift.S: Do not include "bp-sym.h" and
32847         "bp-asm.h".
32848         (PARMS): Do not use macros from bp-asm.h.
32849         (S): Likewise.
32850         (SIZE): Likewise.
32851         (__mpn_lshift): Do not use BP_SYM.
32852         * sysdeps/i386/i586/memcpy.S: Do not include "bp-sym.h" and
32853         "bp-asm.h".
32854         (PARMS): Do not use macros from bp-asm.h.
32855         (DEST): Likewise.
32856         (SRC): Likewise.
32857         (LEN): Likewise.
32858         (memcpy): Likewise.  Do not use BP_SYM.
32859         * sysdeps/i386/i586/mempcpy.S (__mempcpy): Do not use BP_SYM in
32860         libc_hidden_def and weak_alias.
32861         (mempcpy): Do not use BP_SYM in weak_alias.
32862         * sysdeps/i386/i586/memset.S: Do not include "bp-sym.h" and
32863         "bp-asm.h".
32864         (PARMS): Do not use macros from bp-asm.h.
32865         (DEST): Likewise.
32866         (LEN): Likewise.
32867         [!BZERO_P] (CHR): Likewise.
32868         (memset): Likewise.  Do not use BP_SYM.
32869         * sysdeps/i386/i586/mul_1.S: Do not include "bp-sym.h" and
32870         "bp-asm.h".
32871         (PARMS): Do not use macros from bp-asm.h.
32872         (S1): Likewise.
32873         (SIZE): Likewise.
32874         (__mpn_mul_1): Do not use BP_SYM.
32875         * sysdeps/i386/i586/rshift.S: Do not include "bp-sym.h" and
32876         "bp-asm.h".
32877         (PARMS): Do not use macros from bp-asm.h.
32878         (S): Likewise.
32879         (SIZE): Likewise.
32880         (__mpn_rshift): Do not use BP_SYM.
32881         * sysdeps/i386/i586/strchr.S: Do not include "bp-sym.h" and
32882         "bp-asm.h".
32883         (PARMS): Do not use macros from bp-asm.h.
32884         (STR): Likewise.
32885         (CHR): Likewise.
32886         (strchr): Likewise.  Do not use BP_SYM.
32887         (index): Do not use BP_SYM in weak_alias.
32888         * sysdeps/i386/i586/strcpy.S: Do not include "bp-sym.h" and
32889         "bp-asm.h".
32890         (PARMS): Do not use macros from bp-asm.h.
32891         (DEST): Likewise.
32892         (SRC): Likewise.
32893         (STRCPY): Likewise.  Remove GKM FIXME comment.  Do not use BP_SYM.
32894         * sysdeps/i386/i586/strlen.S: Do not include "bp-sym.h" and
32895         "bp-asm.h".
32896         (PARMS): Do not use macros from bp-asm.h.
32897         (strlen): Do not use BP_SYM.
32898         * sysdeps/i386/i586/sub_n.S: Do not include "bp-sym.h" and
32899         "bp-asm.h".
32900         (PARMS): Do not use macros from bp-asm.h.
32901         (S1): Likewise.
32902         (S2): Likewise.
32903         (SIZE): Likewise.
32904         (__mpn_sub_n): Do not use BP_SYM.
32905         * sysdeps/i386/i586/submul_1.S: Do not include "bp-sym.h" and
32906         "bp-asm.h".
32907         (PARMS): Do not use macros from bp-asm.h.
32908         (S1): Likewise.
32909         (SIZE): Likewise.
32910         (__mpn_submul_1): Do not use BP_SYM.
32911         * sysdeps/i386/i686/add_n.S: Do not include "bp-sym.h" and
32912         "bp-asm.h".
32913         (PARMS): Do not use macros from bp-asm.h.
32914         (S1): Likewise.
32915         (S2): Likewise.
32916         (SIZE): Likewise.
32917         (__mpn_add_n): Do not use BP_SYM.
32918         * sysdeps/i386/i686/bzero.S (__bzero): Do not use BP_SYM in
32919         weak_alias.
32920         (bzero): Likewise.
32921         * sysdeps/i386/i686/memcmp.S: Do not include "bp-sym.h" and
32922         "bp-asm.h".
32923         (PARMS): Do not use macros from bp-asm.h.
32924         (BLK2): Likewise.
32925         (LEN): Likewise.
32926         (memcmp): Do not use BP_SYM.
32927         (bcmp): Do not use BP_SYM in weak_alias.
32928         * sysdeps/i386/i686/memcpy.S: Do not include "bp-sym.h" and
32929         "bp-asm.h".
32930         (PARMS): Do not use macros from bp-asm.h.
32931         (DEST): Likewise.
32932         (SRC): Likewise.
32933         (LEN): Likewise.
32934         (memcpy): Likewise.  Do not use BP_SYM.
32935         * sysdeps/i386/i686/memmove.S: Do not include "bp-sym.h" and
32936         "bp-asm.h".
32937         (PARMS): Do not use macros from bp-asm.h.
32938         (DEST): Likewise.
32939         (SRC): Likewise.
32940         (LEN): Likewise.
32941         (memmove): Likewise.  Do not use BP_SYM.
32942         * sysdeps/i386/i686/mempcpy.S: Do not include "bp-sym.h" and
32943         "bp-asm.h".
32944         (PARMS): Do not use macros from bp-asm.h.
32945         (DEST): Likewise.
32946         (SRC): Likewise.
32947         (LEN): Likewise.
32948         (__mempcpy): Likewise.  Do not use BP_SYM.
32949         (mempcpy): Do not use BP_SYM in weak_alias.
32950         * sysdeps/i386/i686/memset.S: Do not include "bp-sym.h" and
32951         "bp-asm.h".
32952         (PARMS): Do not use macros from bp-asm.h.
32953         (DEST): Likewise.
32954         (LEN): Likewise.
32955         [!BZERO_P] (CHR): Likewise.
32956         (memset): Likewise.  Do not use BP_SYM.
32957         * sysdeps/i386/i686/strcmp.S: Do not include "bp-sym.h" and
32958         "bp-asm.h".
32959         (PARMS): Do not use macros from bp-asm.h.
32960         (STR2): Likewise.
32961         (strcmp): Do not use BP_SYM.
32962         * sysdeps/i386/i686/strtok.S: Do not include "bp-sym.h" and
32963         "bp-asm.h".
32964         (PARMS): Do not use macros from bp-asm.h.
32965         (STR): Likewise.
32966         (DELIM): Likewise.
32967         [USE_AS_STRTOK_R] (SAVE): Likewise.
32968         (FUNCTION): Likewise.  Do not use BP_SYM.
32969         * sysdeps/i386/i686/strtok_r.S (__strtok_r): Do not use BP_SYM in
32970         aliases.
32971         (strtok_r): Likewise.
32972         (__GI___strtok_r): Likewise.
32973         * sysdeps/i386/lshift.S: Do not include "bp-sym.h" and "bp-asm.h".
32974         (PARMS): Do not use macros from bp-asm.h.
32975         (S): Likewise.
32976         (SIZE): Likewise.
32977         (__mpn_lshift): Do not use BP_SYM.
32978         * sysdeps/i386/memchr.S: Do not include "bp-sym.h" and "bp-asm.h".
32979         (PARMS): Do not use macros from bp-asm.h.
32980         (STR): Likewise.
32981         (CHR): Likewise.
32982         (__memchr): Do not use BP_SYM.
32983         (memchr): Do not use BP_SYM in weak_alias.
32984         * sysdeps/i386/memcmp.S: Do not include "bp-sym.h" and "bp-asm.h".
32985         (PARMS): Do not use macros from bp-asm.h.
32986         (BLK2): Likewise.
32987         (LEN): Likewise.
32988         (memcmp): Do not use BP_SYM.
32989         (bcmp): Do not use BP_SYM in weak_alias.
32990         * sysdeps/i386/mul_1.S: Do not include "bp-sym.h" and "bp-asm.h".
32991         (PARMS): Do not use macros from bp-asm.h.
32992         (S1): Likewise.
32993         (SIZE): Likewise.
32994         (__mpn_mul_1): Do not use BP_SYM.
32995         * sysdeps/i386/rawmemchr.S: Do not include "bp-sym.h" and
32996         "bp-asm.h".
32997         (PARMS): Do not use macros from bp-asm.h.
32998         (STR): Likewise.
32999         (CHR): Likewise.
33000         (__rawmemchr): Do not use BP_SYM.
33001         (rawmemchr): Do not use BP_SYM in weak_alias.
33002         * sysdeps/i386/rshift.S: Do not include "bp-sym.h" and "bp-asm.h".
33003         (PARMS): Do not use macros from bp-asm.h.
33004         (S): Likewise.
33005         (SIZE): Likewise.
33006         (__mpn_rshift): Do not use BP_SYM.
33007         * sysdeps/i386/setjmp.S: Do not include "bp-sym.h" and "bp-asm.h".
33008         (PARMS): Do not use macros from bp-asm.h.
33009         (SIGMSK): Likewise.
33010         (__sigsetjmp): Likewise.  Do not use BP_SYM.
33011         * sysdeps/i386/start.S: Do not include "bp-sym.h".
33012         (_start): Do not use BP_SYM.
33013         * sysdeps/i386/stpcpy.S: Do not include "bp-sym.h" and "bp-asm.h".
33014         (PARMS): Do not use macros from bp-asm.h.
33015         (DEST): Likewise.
33016         (SRC): Likewise.
33017         (__stpcpy): Likewise.  Do not use BP_SYM.
33018         (stpcpy): Do not use BP_SYM in weak_alias.
33019         * sysdeps/i386/stpncpy.S: Do not include "bp-sym.h" and
33020         "bp-asm.h".
33021         (PARMS): Do not use macros from bp-asm.h.
33022         (DEST): Likewise.
33023         (SRC): Likewise.
33024         (LEN): Likewise.
33025         (__stpncpy): Likewise.  Do not use BP_SYM.
33026         (stpncpy): Do not use BP_SYM in weak_alias.
33027         * sysdeps/i386/strchr.S: Do not include "bp-sym.h" and "bp-asm.h".
33028         (PARMS): Do not use macros from bp-asm.h.
33029         (STR): Likewise.
33030         (CHR): Likewise.
33031         (strchr): Likewise.  Do not use BP_SYM.
33032         * sysdeps/i386/strchrnul.S: Do not include "bp-sym.h" and
33033         "bp-asm.h".
33034         (PARMS): Do not use macros from bp-asm.h.
33035         (STR): Likewise.
33036         (CHR): Likewise.
33037         (__strchrnul): Likewise.  Do not use BP_SYM.
33038         (strchrnul): Do not use BP_SYM in weak_alias.
33039         * sysdeps/i386/strcspn.S: Do not include "bp-sym.h" and
33040         "bp-asm.h".
33041         (PARMS): Do not use macros from bp-asm.h.
33042         (STOP): Likewise.
33043         (strcspn): Do not use BP_SYM.
33044         * sysdeps/i386/strpbrk.S: Do not include "bp-sym.h" and
33045         "bp-asm.h".
33046         (PARMS): Do not use macros from bp-asm.h.
33047         (STR): Likewise.
33048         (STOP): Likewise.
33049         (strpbrk): Likewise.  Do not use BP_SYM.
33050         * sysdeps/i386/strrchr.S: Do not include "bp-sym.h" and
33051         "bp-asm.h".
33052         (PARMS): Do not use macros from bp-asm.h.
33053         (STR): Likewise.
33054         (CHR): Likewise.
33055         (strrchr): Likewise.  Do not use BP_SYM.
33056         * sysdeps/i386/strspn.S: Do not include "bp-sym.h" and "bp-asm.h".
33057         (PARMS): Do not use macros from bp-asm.h.
33058         (SKIP): Likewise.
33059         (strspn): Do not use BP_SYM.
33060         * sysdeps/i386/strtok.S: Do not include "bp-sym.h" and "bp-asm.h".
33061         (PARMS): Do not use macros from bp-asm.h.
33062         (STR): Likewise.
33063         (DELIM): Likewise.
33064         (SAVE): Likewise.
33065         (FUNCTION): Likewise.  Do not use BP_SYM.
33066         * sysdeps/i386/strtok_r.S (__strtok_r): Do not use BP_SYM in
33067         aliases.
33068         (strtok_r): Likewise.
33069         (__GI___strtok_r): Likewise.
33070         * sysdeps/i386/sub_n.S: Do not include "bp-sym.h" and "bp-asm.h".
33071         (PARMS): Do not use macros from bp-asm.h.
33072         (S1): Likewise.
33073         (S2): Likewise.
33074         (SIZE): Likewise.
33075         (__mpn_sub_n): Do not use BP_SYM.
33076         * sysdeps/i386/submul_1.S: Do not include "bp-sym.h" and
33077         "bp-asm.h".
33078         (PARMS): Do not use macros from bp-asm.h.
33079         (S1): Likewise.
33080         (SIZE): Likewise.
33081         (__mpn_submul_1): Do not use BP_SYM.
33082         * sysdeps/unix/i386/sysdep.S: Do not include <bp-asm.h> and
33083         <bp-sym.h>.
33084         * sysdeps/unix/sysv/linux/i386/clone.S: Do not include <bp-sym.h>
33085         and <bp-asm.h>.
33086         (PARMS): Do not use macros from bp-asm.h.
33087         (FLAGS): Likewise.
33088         (PTID): Likewise.
33089         (TLS): Likewise.
33090         (CTID): Likewise.
33091         (__clone): Do not use BP_SYM.
33092         (clone): Do not use BP_SYM in weak_alias.
33093         * sysdeps/unix/sysv/linux/i386/mmap64.S: Do not include <bp-sym.h>
33094         and <bp-asm.h>.
33095         (PARMS): Do not use macros from bp-asm.h.
33096         (LEN): Likewise.
33097         (__mmap64): Do not use BP_SYM.
33098         (mmap64): Do not use BP_SYM in weak_alias.
33099         * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Do not include
33100         <bp-sym.h> and <bp-asm.h>.
33101         (PARMS): Do not use macros from bp-asm.h.
33102         (__posix_fadvise64_l64): Do not use BP_SYM.
33103         * sysdeps/unix/sysv/linux/i386/semtimedop.S
33104         (PARMS): Do not use macros from bp-asm.h.
33105         (NSOPS): Likewise.
33106         (semtimedop): Do not use BP_SYM.
33107         * sysdeps/unix/sysv/linux/i386/sysdep.h: Do not include <bp-sym.h>
33108         and <bp-asm.h>.
33110 2013-02-21  Allan McRae  <allan@archlinux.org>
33112         * manual/message.texi (Charset conversion in gettext):
33113         Move @end statement to beginning of line.
33115 2013-02-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
33117         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__inv): Mark as
33118         static.
33119         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__inv):
33120         Likewise.
33122         * sysdeps/ieee754/dbl-64/mpa.c (norm): Fix whitespace.
33123         (denorm): Likewise.
33124         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (norm): Likewise.
33125         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (norm): Likewise.
33127 2013-02-21  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
33129         * sysdeps/s390/s390-32/dl-trampoline.S (_dl_runtime_profile): Do a
33130         tail-call to the resolved function if pltexit isn't needed.
33132 2013-02-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
33134         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Mark X
33135         or Y being zero as being unlikely.
33136         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul):
33137         Likewise.
33139 2013-02-20  Carlos O'Donell  <carlos@redhat.com>
33141         * manual/nss.texi (System Databases and Name Service Switch):
33142         Remove frobnicate @pxref.
33144 2013-02-20  Thomas Schwinge  <thomas@codesourcery.com>
33146         * sysdeps/ieee754/bits/nan.h [!__GNUC__] (__nan_union): Change
33147         __attribute__ ((unused)) to __attribute__ ((__unused__)).
33149 2013-02-20  Petr Machata  <pmachata@redhat.com>
33151         * elf/elf.h (R_ARM_TARGET1): New macro.
33152         (R_ARM_SBREL31, R_ARM_V4BX, R_ARM_TARGET2): Likewise.
33153         (R_ARM_PREL31, R_ARM_MOVW_ABS_NC, R_ARM_MOVT_ABS): Likewise.
33154         (R_ARM_MOVW_PREL_NC, R_ARM_MOVT_PREL): Likewise.
33155         (R_ARM_THM_MOVW_ABS_NC, R_ARM_THM_MOVT_ABS): Likewise.
33156         (R_ARM_THM_MOVW_PREL_NC, R_ARM_THM_MOVT_PREL): Likewise.
33157         (R_ARM_THM_JUMP19, R_ARM_THM_JUMP6): Likewise.
33158         (R_ARM_THM_ALU_PREL_11_0, R_ARM_THM_PC12): Likewise.
33159         (R_ARM_ABS32_NOI, R_ARM_REL32_NOI): Likewise.
33160         (R_ARM_ALU_PC_G0_NC, R_ARM_ALU_PC_G0): Likewise.
33161         (R_ARM_ALU_PC_G1_NC, R_ARM_ALU_PC_G1): Likewise.
33162         (R_ARM_ALU_PC_G2, R_ARM_LDR_PC_G1, R_ARM_LDR_PC_G2): Likewise.
33163         (R_ARM_LDRS_PC_G0, R_ARM_LDRS_PC_G1): Likewise.
33164         (R_ARM_LDRS_PC_G2, R_ARM_LDC_PC_G0): Likewise.
33165         (R_ARM_LDC_PC_G1, R_ARM_LDC_PC_G2): Likewise.
33166         (R_ARM_ALU_SB_G0_NC, R_ARM_ALU_SB_G0): Likewise.
33167         (R_ARM_ALU_SB_G1_NC, R_ARM_ALU_SB_G1): Likewise.
33168         (R_ARM_ALU_SB_G2, R_ARM_LDR_SB_G0, R_ARM_LDR_SB_G1): Likewise.
33169         (R_ARM_LDR_SB_G2, R_ARM_LDRS_SB_G0): Likewise.
33170         (R_ARM_LDRS_SB_G1, R_ARM_LDRS_SB_G2): Likewise.
33171         (R_ARM_LDC_SB_G0, R_ARM_LDC_SB_G1, R_ARM_LDC_SB_G2): Likewise.
33172         (R_ARM_MOVW_BREL_NC, R_ARM_MOVT_BREL): Likewise.
33173         (R_ARM_MOVW_BREL, R_ARM_THM_MOVW_BREL_NC): Likewise.
33174         (R_ARM_THM_MOVT_BREL, R_ARM_THM_MOVW_BREL): Likewise.
33175         (R_ARM_PLT32_ABS, R_ARM_GOT_ABS, R_ARM_GOT_PREL): Likewise.
33176         (R_ARM_GOT_BREL12, R_ARM_GOTOFF12, R_ARM_GOTRELAX): Likewise.
33177         (R_ARM_TLS_LDO12, R_ARM_TLS_LE12, R_ARM_TLS_IE12GP): Likewise.
33178         (R_ARM_PRIVATE_0, R_ARM_PRIVATE_1, R_ARM_PRIVATE_2): Likewise.
33179         (R_ARM_PRIVATE_3, R_ARM_PRIVATE_4, R_ARM_PRIVATE_5): Likewise.
33180         (R_ARM_PRIVATE_6, R_ARM_PRIVATE_7, R_ARM_PRIVATE_8): Likewise.
33181         (R_ARM_PRIVATE_9, R_ARM_PRIVATE_10): Likewise.
33182         (R_ARM_PRIVATE_11, R_ARM_PRIVATE_12): Likewise.
33183         (R_ARM_PRIVATE_13, R_ARM_PRIVATE_14): Likewise.
33184         (R_ARM_PRIVATE_15, R_ARM_ME_TOO): Likewise.
33185         (R_ARM_THM_TLS_DESCSEQ16, R_ARM_THM_TLS_DESCSEQ32): Likewise.
33186         (R_ARM_THM_GOT_BREL12): Likewise.
33187         (R_ARM_PC24, R_ARM_PLT32): Updated a comment at this macro.
33188         (R_ARM_THM_PC11, R_ARM_THM_PC9): Likewise.
33189         (R_ARM_THM_ABS5, R_ARM_THM_PC22): Added a comment to this macro.
33190         (R_ARM_THM_PC8, R_ARM_THM_SWI8, R_ARM_XPC25): Likewise.
33191         (R_ARM_THM_XPC22, R_ARM_ALU_PCREL_7_0): Likewise.
33192         (R_ARM_ALU_PCREL_15_8, R_ARM_ALU_PCREL_23_15): Likewise.
33193         (R_ARM_LDR_SBREL_11_0, R_ARM_ALU_SBREL_19_12): Likewise.
33194         (R_ARM_ALU_SBREL_27_20, R_ARM_TLS_DESCSEQ): Likewise.
33195         (R_ARM_THM_TLS_DESCSEQ): Fixed whitespace.
33197 2013-02-20  Thomas Schwinge  <thomas@codesourcery.com>
33199         * sysdeps/ieee754/bits/nan.h [!__GNUC__] (__nan_union): Change
33200         __attribute_used__ to __attribute__ ((unused)).
33202 2013-02-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
33204         * sysdeps/ieee754/dbl-64/mpa.c (__sqr): Copy over comment from
33205         powerpc mpa.c.
33206         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Fix
33207         comment formatting.
33208         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul): Likewise.
33210 2013-02-19  Joseph Myers  <joseph@codesourcery.com>
33212         [BZ #13550]
33213         * sysdeps/i386/bp-asm.h [__BOUNDED_POINTERS__] (BOUNDS_VIOLATED):
33214         Remove macro.
33215         (ENTER): Remove both macro definitions.
33216         (LEAVE): Likewise.
33217         (CHECK_BOUNDS_LOW): Likewise.
33218         (CHECK_BOUNDS_HIGH): Likewise.
33219         (CHECK_BOUNDS_BOTH): Likewise.
33220         (CHECK_BOUNDS_BOTH_WIDE): Likewise.
33221         (RETURN_BOUNDED_POINTER): Likewise.
33222         (RETURN_NULL_BOUNDED_POINTER): Likewise.
33223         (PUSH_ERRNO_LOCATION_RETURN): Likewise.
33224         (POP_ERRNO_LOCATION_RETURN): Likewise.
33225         * sysdeps/i386/add_n.S (__mpn_add_n): Do not use removed macros.
33226         (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
33227         * sysdeps/i386/addmul_1.S (__mpn_addmul_1): Do not use removed
33228         macros.
33229         (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
33230         * sysdeps/i386/bsd-_setjmp.S (_setjmp): Do not use removed macros.
33231         * sysdeps/i386/bsd-setjmp.S (setjmp): Likewise.
33232         * sysdeps/i386/fpu/s_frexp.S (__frexp): Likewise.
33233         * sysdeps/i386/fpu/s_frexpf.S (__frexpf): Likewise.
33234         * sysdeps/i386/fpu/s_frexpl.S (__frexpl): Likewise.
33235         * sysdeps/i386/fpu/s_remquo.S (__remquo): Likewise.
33236         * sysdeps/i386/fpu/s_remquof.S (__remquof): Likewise.
33237         * sysdeps/i386/fpu/s_remquol.S (__remquol): Likewise.
33238         * sysdeps/i386/i486/strcat.S (strcat): Likewise.
33239         * sysdeps/i386/i486/strlen.S (strlen): Likewise.
33240         * sysdeps/i386/i586/add_n.S (__mpn_add_n): Likewise.
33241         (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
33242         * sysdeps/i386/i586/addmul_1.S (__mpn_addmul_1): Do not use
33243         removed macros.
33244         (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
33245         * sysdeps/i386/i586/lshift.S (__mpn_lshift): Do not use removed
33246         macros.
33247         (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
33248         * sysdeps/i386/i586/memcpy.S (memcpy): Do not use removed macros.
33249         * sysdeps/i386/i586/memset.S (memset): Likewise.
33250         * sysdeps/i386/i586/mul_1.S (__mpn_mul_1): Likewise.
33251         (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
33252         * sysdeps/i386/i586/rshift.S (__mpn_rshift): Do not use removed
33253         macros.
33254         (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
33255         * sysdeps/i386/i586/strchr.S (strchr): Do not use removed macros.
33256         Change uses of L(2) to L(out).
33257         * sysdeps/i386/i586/strcpy.S (STRCPY): Do not use removed macros.
33258         * sysdeps/i386/i586/strlen.S (strlen): Likewise.
33259         * sysdeps/i386/i586/sub_n.S (__mpn_sub_n): Likewise.
33260         (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
33261         * sysdeps/i386/i586/submul_1.S (__mpn_submul_1): Do not use
33262         removed macros.
33263         (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
33264         * sysdeps/i386/i686/add_n.S (__mpn_add_n): Do not use removed
33265         macros.
33266         (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
33267         * sysdeps/i386/i686/memcmp.S (ENTRANCE): Do not use macro ENTER.
33268         (RETURN): Do not use macro LEAVE.
33269         * sysdeps/i386/i686/memcpy.S (memcpy): Do not use removed macros.
33270         * sysdeps/i386/i686/memmove.S (memmove): Likewise.
33271         * sysdeps/i386/i686/mempcpy.S (mempcpy): Likewise.
33272         * sysdeps/i386/i686/memset.S (memset): Likewise.
33273         * sysdeps/i386/i686/strcmp.S (strcmp): Likewise.
33274         (strcmp) [!__BOUNDED_POINTERS__]: Make code unconditional.
33275         (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
33276         * sysdeps/i386/i686/strtok.S (save_ptr) [__BOUNDED_POINTERS__]:
33277         Likewise.
33278         (save_ptr) [!__BOUNDED_POINTERS__]: Make code unconditional.
33279         (FUNCTION): Do not use removed macros.  Combine labels L(1_1),
33280         L(1_2) and L(1_3) into L(1).
33281         (FUNCTION) [__BOUNDED_POINTERS__]: Remove conditional code.
33282         * sysdeps/i386/lshift.S (__mpn_lshift): Do not use removed macros.
33283         (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
33284         * sysdeps/i386/memchr.S (__memchr): Do not use removed macros.
33285         (__memchr) [__BOUNDED_POINTERS__]: Remove conditional code.
33286         * sysdeps/i386/memcmp.S (memcmp): Do not use removed macros.
33287         * sysdeps/i386/mul_1.S (__mpn_mul_1): Likewise.
33288         (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
33289         * sysdeps/i386/rawmemchr.S (__rawmemchr): Do not use removed
33290         macros.
33291         * sysdeps/i386/rshift.S (__mpn_rshift): Likewise.
33292         (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
33293         * sysdeps/i386/setjmp.S (__sigsetjmp): Do not use removed macros.
33294         * sysdeps/i386/stpcpy.S (__stpcpy): Likewise.
33295         * sysdeps/i386/stpncpy.S (__stpncpy): Likewise.
33296         (__stpncpy) [__BOUNDED_POINTERS__]: Remove conditional code.
33297         * sysdeps/i386/strchr.S (strchr): Do not use removed macros.
33298         * sysdeps/i386/strchrnul.S (__strchrnul): Likewise.
33299         * sysdeps/i386/strcspn.S (strcspn): Likewise.
33300         * sysdeps/i386/strpbrk.S (strpbrk): Likewise.
33301         * sysdeps/i386/strrchr.S (strrchr): Likewise.
33302         * sysdeps/i386/strspn.S (strspn): Likewise.
33303         * sysdeps/i386/strtok.S (save_ptr) [__BOUNDED_POINTERS__]: Remove
33304         conditional code.
33305         (save_ptr) [!__BOUNDED_POINTERS__]: Make code unconditional.
33306         (FUNCTION) [!__BOUNDED_POINTERS__]: Likewise.
33307         (FUNCTION) [__BOUNDED_POINTERS__]: Remove conditional code.
33308         (FUNCTION): Do not use removed macros.  Combine labels L(1_2) and
33309         L(1_3) into L(1_1).
33310         * sysdeps/i386/sub_n.S (__mpn_sub_n): Do not use removed macros.
33311         (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
33312         * sysdeps/i386/submul_1.S (__mpn_submul_1): Do not use removed
33313         macros.
33314         (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
33316 2013-02-19  Jakub Jelinek  <jakub@redhat.com>
33318         * stdlib/strtod_l.c (__mpn_lshift_1): Rewritten as function-like
33319         macro.
33321 2013-02-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
33323         * math/atest-exp.c (exp_mpn): Remove ROUND.
33324         * math/atest-exp2.c (exp_mpn): Likewise.
33325         * math/atest-sincos.c (sincosx_mpn): Remove ROUND and CHK.
33327         * stdlib/cxa_thread_atexit_impl.c: Fix Copyright year.
33328         * stdlib/tst-tls-atexit-lib.c: Likewise.
33329         * stdlib/tst-tls-atexit.c: Likewise.
33331 2013-02-18  Mike Frysinger  <vapier@gentoo.org>
33333         * stdlib/stdlib.h (aligned_alloc): Use __attribute_malloc__
33334         and __attribute_alloc_size__.
33336 2013-02-18  Mike Frysinger  <vapier@gentoo.org>
33338         * include/programs/xmalloc.h: Change __attribute_alloc_size to
33339         __attribute_alloc_size__.
33340         * include/sys/cdefs.h (__attribute_alloc_size): Macro removed.
33341         * misc/sys/cdefs.h (__attribute_alloc_size__): New macro.
33343 2013-02-18  Mike Frysinger  <vapier@gentoo.org>
33345         * include/programs/xmalloc.h: New file.
33346         * catgets/gencat.c: Include it.
33347         (xmalloc, xcalloc, xrealloc, xstrdup): Don't declare them.
33348         * elf/pldd.c: Likewise.
33349         * iconv/iconv_charmap.c: Likewise.
33350         * iconv/iconvconfig.c: Likewise.
33351         * iconv/strtab.c: Likewise.
33352         * locale/programs/locale.c: Likewise.
33353         * locale/programs/localedef.h: Likewise.
33354         * locale/programs/simple-hash.c: Likewise.
33355         * nscd/nscd.h: Likewise.
33356         * nss/makedb.c: Likewise.
33357         * sysdeps/generic/ldconfig.h: Likewise.
33359 2013-02-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
33361         * Versions.def: Add GLIBC_2.18.
33362         * include/link.h (struct link_map): New member l_tls_dtor_count.
33363         * include/stdlib.h (__cxa_thread_atexit_impl): Declare.
33364         (__call_tls_dtors): Likewise.
33365         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Add
33366         __cxa_thread_atexit_impl.
33367         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
33368         Likewise.
33369         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
33370         Likewise.
33371         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
33372         Likewise.
33373         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
33374         Likewise.
33375         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
33376         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist:
33377         Likewise.
33378         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist:
33379         Likewise.
33380         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
33381         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist:
33382         Likewise.
33383         * stdlib/Makefile (routines): Add __cxa_thread_atexit_impl.
33384         (tests): Add test case tst-tls-atexit.
33385         (modules-names): Add shared library for tst-tls-atexit.
33386         * stdlib/Versions (GLIBC_2.18): Add __cxa_thread_atexit_impl.
33387         (GLIBC_PRIVATE): Add __call_tls_dtors.
33388         * stdlib/cxa_thread_atexit_impl.c: New file with helper function
33389         for libstdc++.
33390         * stdlib/exit.c (__run_exit_handlers): Call __call_tls_dtors.
33391         * stdlib/tst-tls-atexit.c: New test case.
33392         * stdlib/tst-tls-atexit-lib.c: New test case.
33394         * misc/tst-pselect.c: Include stdlib.h for declaration of exit.
33396         * elf/Versions (ld): Add _dl_find_dso_for_object.
33397         * elf/dl-addr.c (_dl_addr): Use _dl_find_dso_for_object.
33398         * elf/dl-open.c (_dl_find_dso_for_object): New function.
33399         (dl_open_worker): Use _dl_find_dso_for_object.
33400         * elf/dl-sym.c (do_sym): Likewise.
33401         * sysdeps/generic/ldsodefs.h: Declare _dl_find_dso_for_object.
33403 2013-02-18  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
33405         * sysdeps/s390/s390-64/dl-trampoline.S (_dl_runtime_resolve):
33406         Syntactic changes only.
33407         (_dl_runtime_profile): Do a tail-call to the resolved function.
33409 2013-02-17  Joseph Myers  <joseph@codesourcery.com>
33411         [BZ #13550]
33412         * sysdeps/x86_64/bp-asm.h: Remove file.
33413         * sysdeps/unix/sysv/linux/x86_64/clone.S: Do not include
33414         <bp-sym.h> and <bp-asm.h>.
33415         (__clone): Do not use BP_SYM.
33416         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Do not include
33417         <bp-sym.h> and <bp-asm.h>.
33418         * sysdeps/unix/x86_64/sysdep.S: Likewise.
33419         * sysdeps/x86_64/bsd-_setjmp.S: Do not include "bp-sym.h" and
33420         "bp-asm.h".
33421         (_setjmp): Do not use BP_SYM.
33422         * sysdeps/x86_64/bsd-setjmp.S: Do not include "bp-sym.h" and
33423         "bp-asm.h".
33424         (setjmp): Do not use BP_SYM.
33425         * sysdeps/x86_64/mempcpy.S (__mempcpy): Do not use BP_SYM in
33426         libc_hidden_def.
33427         (mempcpy): Do not use BP_SYM in weak_alias.
33428         * sysdeps/x86_64/rtld-strchr.S: Do not include "bp-sym.h" and
33429         "bp-asm.h".
33430         (strchr): Do not use BP_SYM.
33431         * sysdeps/x86_64/rtld-strlen.S: Do not include "bp-sym.h" and
33432         "bp-asm.h".
33433         * sysdeps/x86_64/setjmp.S (__sigsetjmp): Do not use BP_SYM.
33434         * sysdeps/x86_64/start.S: Do not include "bp-sym.h".
33435         (_start): Do not use BP_SYM.
33436         * sysdeps/x86_64/strcat.S: Do not include "bp-sym.h" and
33437         "bp-asm.h".
33438         (strcat): Do not use BP_SYM.
33439         * sysdeps/x86_64/strcmp.S: Do not include "bp-sym.h" and
33440         "bp-asm.h".
33441         (STRCMP): Do not use BP_SYM.
33442         * sysdeps/x86_64/strcpy.S: Do not include "bp-sym.h" and
33443         "bp-asm.h".
33444         (STRCPY): Do not use BP_SYM.
33445         * sysdeps/x86_64/strcpy_chk.S: Do not include "bp-sym.h" and
33446         "bp-asm.h".
33447         * sysdeps/x86_64/strtok.S: Do not include "bp-sym.h" and
33448         "bp-asm.h".
33449         (FUNCTION): Do not use BP_SYM.
33450         * sysdeps/x86_64/strtok_r.S (strtok_r): Do not use BP_SYM in
33451         weak_alias.
33452         (__GI___strtok_r): Do not use BP_SYM in strong_alias.
33454 2013-02-17  Andreas Jaeger  <aj@suse.de>
33456         * time/Versions: Sort entries.
33457         * string/Versions: Likewise.
33458         * resolv/Versions: Likewise.
33459         * posix/Versions: Likewise.
33460         * iconv/Versions: Likewise.
33461         * elf/Versions: Likewise.
33462         * wcsmbs/Versions: Likewise.
33464 2013-02-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
33466         * sysdeps/ieee754/dbl-64/mpa.c (__sqr): Avoid using LIM in
33467         loop termination condition.
33469         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Use intermediate
33470         variable to calculate EZ.
33471         (__sqr): Likewise.
33473         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Fix determination of
33474         the lower precision input.
33476 2013-02-15  Joseph Myers  <joseph@codesourcery.com>
33478         [BZ #13550]
33479         * Makeconfig [!+link-bounded] (+link-bounded): Remove variable.
33480         [!link-extra-libs] (link-extra-libs-bounded): Likewise.
33481         (run-via-rtld-prefix): Do not handle %-bp tests.
33482         (test-via-rtld-prefix): Do not mention %-bp tests in comment.
33483         (all-object-suffixes): Remove .ob.
33484         (bppfx): Remove variable.
33485         [$(build-bounded) = yes] (object-suffixes): Do not add .ob.
33486         [$(build-bounded) = yes] (CPPFLAGS-.ob): Remove variable.
33487         [$(build-bounded) = yes] (CFLAGS-.ob): Likewise.
33488         [$(build-bounded) = yes] (libtype.ob): Likewise.
33489         * Makerules (elide-routines.ob): Remove variable.
33490         (do-tests-clean): Do not handle *-bp.out.
33491         (common-mostlyclean): Do not handle *-bp and *-bp.out.
33492         * Rules [$(build-bounded) = yes] (tests-bp.out): Remove variable.
33493         [$(build-bounded) = yes] (xtests-bp.out): Likewise.
33494         (tests): Do not include $(tests-bp.out).
33495         (xtests): Do not include $(xtests-bp.out).
33496         [$(build-bounded) = yes] (binaries-bounded): Remove variable.
33497         [$(build-bounded) = yes] ($(addprefix
33498         $(objpfx),$(binaries-bounded))): Remove rule.
33499         ($(objpfx)%-bp.out): Remove rule.
33500         * config.make.in (build-bounded): Remove variable.
33501         * crypt/Makefile [$(build-bounded) = yes]
33502         ($(tests:%=$(objpfx)%-bp)): Remove dependency.
33503         * csu/Makefile [$(build-bounded) = yes] (extra-objs): Do not
33504         append to variable.
33505         [$(build-bounded) = yes] (install-lib): Likewise.
33506         [$(build-bounded) = yes] (generated): Likewise.
33507         [!start-installed-name-rule] ($(objpfx)b$(start-installed-name)):
33508         Remove rule.
33509         * intl/Makefile [$(build-bounded) = yes]
33510         ($(multithread-test-srcs:%=$(objpfx)%-bp)): Remove dependency.
33511         * math/Makefile [$(build-bounded) = yes]
33512         ($(tests:%=$(objpfx)%-bp): Likewise.
33513         * misc/Makefile [$(build-bounded) = yes]
33514         ($(objpfx)tst-tsearch-bp): Likewise.
33515         * nptl/Makeconfig (bounded-thread-library): Remove variable.
33516         * rt/Makefile [$(build-bounded) = yes] ($(tests:%=$(objpfx)%-bp)):
33517         Remove dependency.
33518         * string/Makefile (o-objects.ob): Remove variable.
33519         * sysdeps/i386/i686/Makefile [$(config-asflags-i686) = yes]
33520         (CFLAGS-.ob): Remove variable.
33521         [$(config-asflags-i686) = yes] (ASFLAGS-.ob): Likewise.
33522         * sysdeps/sparc/sparc32/sparcv9/Makefile (ASFLAGS-.ob): Remove
33523         both definitions of variable.
33524         * sysdeps/sparc/sparc64/Makefile [$(have-as-vis3) = yes]
33525         (ASFLAGS-.ob): Remove variable.
33527 2013-02-14  Joseph Myers  <joseph@codesourcery.com>
33529         [BZ #13550]
33530         * config.h.in [USE_REGPARMS && !PROF && !__BOUNDED_POINTERS__]:
33531         Remove __BOUNDED_POINTERS__ from condition.
33532         * elf/dl-runtime.c [!PROF && !__BOUNDED_POINTERS__]: Likewise.
33533         * string/bits/string2.h [!__NO_STRING_INLINES &&
33534         !__BOUNDED_POINTERS__]: Likewise.
33535         * sysdeps/i386/dl-machine.h [!PROF && !__BOUNDED_POINTERS__]:
33536         Likewise.
33537         * sysdeps/unix/sysv/linux/shmat.c (shmat) [__BOUNDED_POINTERS__]:
33538         Remove conditional code.
33539         * sysdeps/x86/bits/string.h [!__NO_STRING_INLINES &&
33540         __USE_STRING_INLINES && __GNUC__ && __GNUC__ >= 2 &&
33541         !__BOUNDED_POINTERS__]: Remove __BOUNDED_POINTERS__ from
33542         condition.
33544         [BZ #13550]
33545         * csu/libc-start.c: Do not include <bp-sym.h>.
33546         [!LIBC_START_MAIN] (LIBC_START_MAIN): Do not use BP_SYM.
33547         * elf/dl-open.c: Do not include <bp-sym.h>.
33548         (_dl_sysdep_start): Do not use BP_SYM in weak_extern.
33549         * math/fegetenv.c: Do not include <bp-sym.h>.
33550         (fegetenv): Do not use BP_SYM in versioned symbols.
33551         * nptl/sysdeps/pthread/bits/libc-lockP.h
33552         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]: Do not include
33553         <bp-sym.h>.
33554         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33555         (__pthread_mutex_init): Do not use BP_SYM in weak_extern.
33556         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33557         (__pthread_mutex_destroy): Likewise.
33558         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33559         (__pthread_mutex_lock): Likewise.
33560         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33561         (__pthread_mutex_trylock): Likewise.
33562         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33563         (__pthread_mutex_unlock): Likewise.
33564         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33565         (__pthread_mutexattr_init): Likewise.
33566         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33567         (__pthread_mutexattr_destroy): Likewise.
33568         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33569         (__pthread_mutexattr_settype): Likewise.
33570         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33571         (__pthread_rwlock_init): Likewise.
33572         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33573         (__pthread_rwlock_destroy): Likewise.
33574         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33575         (__pthread_rwlock_rdlock): Likewise.
33576         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33577         (__pthread_rwlock_tryrdlock): Likewise.
33578         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33579         (__pthread_rwlock_wrlock): Likewise.
33580         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33581         (__pthread_rwlock_trywrlock): Likewise.
33582         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33583         (__pthread_rwlock_unlock): Likewise.
33584         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33585         (__pthread_key_create): Likewise.
33586         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33587         (__pthread_setspecific): Likewise.
33588         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33589         (__pthread_getspecific): Likewise.
33590         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern] (__pthread_once):
33591         Likewise.
33592         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33593         (_pthread_cleanup_push_defer): Likewise.
33594         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33595         (_pthread_cleanup_pop_restore): Likewise.
33596         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
33597         (pthread_setcancelstate): Likewise.
33598         * string/memchr.c [HAVE_BP_SYM_H || _LIBC]: Do not include
33599         <bp-sym.h>.
33600         [!(HAVE_BP_SYM_H || _LIBC)] (BP_SYM): Remove macro definition.
33601         (memchr): Do not use BP_SYM in weak_alias.
33602         * sysdeps/i386/fpu/fegetenv.c: Do not include <bp-sym.h>.
33603         (fegetenv): Do not use BP_SYM in versioned symbols.
33604         * sysdeps/i386/fpu/fesetenv.c: Do not include <bp-sym.h>.
33605         (fesetenv): Do not use BP_SYM in versioned symbols.
33606         * sysdeps/i386/fpu/feupdateenv.c: Do not include <bp-sym.h>.
33607         (feupdateenv): Do not use BP_SYM in versioned symbols.
33608         * sysdeps/i386/fpu/fsetexcptflg.c: Do not include <bp-sym.h>.
33609         (fesetexceptflag): Do not use BP_SYM in versioned symbols.
33610         * sysdeps/posix/open64.c: Do not include <bp-sym.h>.
33611         (__open64): Do not use BP_SYM in weak_alias and libc_hidden_weak.
33612         (open64): Do not use BP_SYM in weak_alias.
33613         * sysdeps/powerpc/fpu/fegetenv.c: Do not include <bp-sym.h>.
33614         (fegetenv): Do not use BP_SYM in versioned symbols.
33615         * sysdeps/powerpc/fpu/fesetenv.c: Do not include <bp-sym.h>.
33616         (fesetenv): Do not use BP_SYM in versioned symbols.
33617         * sysdeps/powerpc/fpu/feupdateenv.c: Do not include <bp-sym.h>.
33618         (feupdateenv): Do not use BP_SYM in versioned symbols.
33619         * sysdeps/powerpc/fpu/fgetexcptflg.c: Do not include <bp-sym.h>.
33620         (fegetexceptflag): Do not use BP_SYM in versioned symbols.
33621         * sysdeps/powerpc/fpu/fraiseexcpt.c: Do not include <bp-sym.h>.
33622         (feraiseexcept): Do not use BP_SYM in versioned symbols.
33623         * sysdeps/powerpc/fpu/fsetexcptflg.c: Do not include <bp-sym.h>.
33624         (fesetexceptflag): Do not use BP_SYM in versioned symbols.
33625         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Do not include
33626         <bp-sym.h>.
33627         (__libc_start_main): Do not use BP_SYM.
33629 2013-02-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
33631         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__cpy): Remove
33632         redundant return line.
33633         (norm): Likewise.
33634         (denorm): Likewise.
33635         (dbl_mp): Likewise.
33636         (sub_magnitudes): Likewise.
33637         (__add): Likewise.
33638         (__sub): Likewise.
33639         (__mul): Likewise.
33640         (__inv): Likewise.
33641         (__dvd): Likewise.
33642         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__cpy): Likewise.
33643         (norm): Likewise.
33644         (denorm): Likewise.
33645         (dbl_mp): Likewise.
33646         (sub_magnitudes): Likewise.
33647         (__add): Likewise.
33648         (__sub): Likewise.
33649         (__mul): Likewise.
33650         (__inv): Likewise.
33651         (__dvd): Likewise.
33653         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Use __sqr
33654         instead of __mul.
33655         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Likewise.
33656         * sysdeps/ieee754/dbl-64/sincos32.c (ss32): Likewise.
33657         (cc32): Likewise.
33659         * sysdeps/ieee754/dbl-64/mpa.c (__sqr): New function.
33660         * sysdeps/ieee754/dbl-64/mpa.h (__sqr): Declare.
33661         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): use __sqr instead
33662         of __mul for squares.
33663         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__sqr): New
33664         function
33665         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__sqr):
33666         Likewise.
33667         * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: Define __sqr.
33668         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
33670 2013-02-13  Joseph Myers  <joseph@codesourcery.com>
33672         [BZ #13550]
33673         * misc/sys/cdefs.h [!__BOUNDED_POINTERS__]: Remove conditional
33674         code.
33675         * csu/libc-start.c (LIBC_START_MAIN): Do not use __unbounded in
33676         prototype or function definition.  Rename ubp_* variables and
33677         parameters.  Remove argv definitions conditional on
33678         [__BOUNDED_POINTERS__].
33679         * debug/backtrace.c (__backtrace): Do not use __unbounded.
33680         * elf/dl-runtime.c (_dl_fixup): Likewise.
33681         * include/set-hooks.h (RUN_HOOK): Likewise.
33682         * stdio-common/vfprintf.c (JUMP): Do not use __unbounded in either
33683         definition.
33684         * string/strcpy.c (strcpy): Do not use __unbounded.
33685         * sysdeps/generic/frame.h (struct layout): Likewise.
33686         * sysdeps/gnu/bits/msq.h (struct msqid_ds): Likewise.
33687         * sysdeps/i386/dl-machine.h (_dl_fixup): Likewise.
33688         * sysdeps/powerpc/powerpc32/backtrace.c (struct layout): Likewise.
33689         * sysdeps/powerpc/powerpc64/backtrace.c (struct layout): Likewise.
33690         * sysdeps/sparc/backtrace.c (struct layout): Likewise.
33691         (__backtrace): Likewise.
33692         * sysdeps/unix/sysv/linux/aio_sigqueue.c (__aio_sigqueue): Do not
33693         use __ptrvalue.
33694         * sysdeps/unix/sysv/linux/fxstat.c (__fxstat): Likewise.
33695         * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Likewise.
33696         * sysdeps/unix/sysv/linux/gai_sigqueue.c (__gai_sigqueue):
33697         Likewise.
33698         * sysdeps/unix/sysv/linux/i386/brk.c (__brk): Likewise.
33699         * sysdeps/unix/sysv/linux/i386/fxstat.c (__fxstat): Likewise.
33700         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Likewise.
33701         * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Likewise.
33702         * sysdeps/unix/sysv/linux/i386/msgctl.c (struct __old_msqid_ds):
33703         Do not use __unbounded.
33704         * sysdeps/unix/sysv/linux/i386/setrlimit.c (__new_setrlimit):
33705         Rename __unboundedrlimits parameter to rlimits in prototype.
33706         * sysdeps/unix/sysv/linux/i386/shmctl.c (struct __old_shmid_ds):
33707         Do not use __unbounded.
33708         * sysdeps/unix/sysv/linux/i386/sigaction.c (__libc_sigaction): Do
33709         not use __ptrvalue.
33710         * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise.
33711         * sysdeps/unix/sysv/linux/llseek.c (__llseek): Likewise.
33712         * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Likewise.
33713         * sysdeps/unix/sysv/linux/mmap64.c (__mmap64): Do not use
33714         __ptrvalue or __unbounded.
33715         (__mmap64) [__BOUNDED_POINTERS__]: Remove conditional code.
33716         * sysdeps/unix/sysv/linux/msgctl.c (struct __old_msqid_ds): Do not
33717         use __unbounded.
33718         (__new_msgctl): Do not use __ptrvalue.
33719         * sysdeps/unix/sysv/linux/msgrcv.c (struct ipc_kludge): Do not use
33720         __unbounded.
33721         (__libc_msgrcv): Do not use __ptrvalue.
33722         * sysdeps/unix/sysv/linux/powerpc/libc-start.c (struct
33723         startup_info): Do not use __unbounded.
33724         (__libc_start_main): Likewise.  Rename ubp_* variables and
33725         parameters.  Remove argv definitions conditional on
33726         [__BOUNDED_POINTERS__].
33727         * sysdeps/unix/sysv/linux/ptrace.c (ptrace): Do not use
33728         __ptrvalue.
33729         * sysdeps/unix/sysv/linux/semctl.c (struct __old_semid_ds): Do not
33730         use __unbounded.
33731         * sysdeps/unix/sysv/linux/shmat.c (shmat): Do not use __unbounded
33732         or __ptrvalue.
33733         * sysdeps/unix/sysv/linux/shmctl.c (struct __old_shmid_ds): Do not
33734         use __unbounded.
33735         (__new_shmctl): Do not use __ptrvalue.
33736         * sysdeps/unix/sysv/linux/shmdt.c (shmdt): Likewise.
33737         * sysdeps/unix/sysv/linux/sigaction.c (__libc_sigaction):
33738         Likewise.
33739         * sysdeps/unix/sysv/linux/sigqueue.c (__sigqueue): Likewise.
33740         * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c
33741         (__libc_sigaction): Likewise.
33742         * sysdeps/unix/sysv/linux/sysctl.c (__sysctl): Likewise.
33743         * sysdeps/unix/sysv/linux/x86_64/sigaction.c (__libc_sigaction):
33744         Likewise.
33745         * sysdeps/unix/sysv/linux/xstat.c (__xstat): Likewise.
33747 2013-02-13   Ondřej Bílka  <neleai@seznam.cz>
33749         * stdlib/Makefile (headers): Add bits/stdlib-bsearch.h.
33751         * string/mempcpy.c: Implement by calling memcpy.
33753 2013-02-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
33755         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove NFA.
33757         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Faster polynomial
33758         evaluation.
33760         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Don't bother with zero
33761         values in the mantissa.
33763         * sysdeps/ieee754/dbl-64/mpa.c (add_magnitudes): Use ZK to
33764         minimize writes to Z.
33765         (sub_magnitudes): Simplify code a bit.
33767 2013-02-12  Roland McGrath  <roland@hack.frob.com>
33769         * include/libc-symbols.h (stub_warning): Remove "warning: " prefix
33770         from the message.  The linker prefixes all warnings with that already.
33772 2013-02-12  Andreas Schwab  <schwab@suse.de>
33774         [BZ #15078]
33775         * posix/regexec.c (extend_buffers): Add parameter min_len.
33776         (check_matching): Pass minimum needed length.
33777         (clean_state_log_if_needed): Likewise.
33778         (get_subexp): Likewise.
33779         * posix/Makefile (tests): Add bug-regex34.
33780         (bug-regex34-ENV): Define.
33781         * posix/bug-regex34.c: New file.
33783         [BZ #11561]
33784         * posix/regcomp.c (parse_bracket_exp): When looking up collating
33785         elements compare against the byte sequence of it, not its name.
33786         * posix/Makefile (tests): Add bug-regex35.
33787         (bug-regex35-ENV): Define.
33788         * posix/bug-regex35.c: New file.
33790 2013-02-11  Tom de Vries  <tom@codesourcery.com>
33792         * string/str-two-way.h:  Fix typo RESULT_TYPE -> RETURN_TYPE in
33793         comment.
33794         Add RET0_IF_0 and CHECK_EOL to macro list in comment.
33795         (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J): Remove superfluous undef.
33796         (CHECK_EOL): Add undef.
33798 2013-02-11   Ondřej Bílka  <neleai@seznam.cz>
33800         * bits/stdlib-bsearch.h: New file.
33801         * stdlib/bsearch.c: Include bits/stdlib-bsearch.h.
33802         * stdlib/stdlib.h: Likewise.
33804 2013-02-11  Roland McGrath  <roland@hack.frob.com>
33806         * manual/conf.texi (General Limits): Fix SSIZE_MAX type to ssize_t.
33807         * manual/errno.texi (Error Messages): Fix typo in error_print_progname
33808         declaration.
33809         * manual/search.texi (Array Search Function): Add missing const in
33810         lfind prototype.
33811         * manual/resource.texi (Limits on Resources): Fix RLIM_INFINITY
33812         declaration to use rlim_t.
33813         (Basic Scheduling Functions): Remove erroneous const from
33814         sched_getparam prototype.  Remove erroneous * from
33815         sched_get_priority_max and sched_get_priority_min prototypes.
33816         (Resource Usage): Fix summary @comment on vtimes to refer to
33817         sys/vtimes.h rather than vtimes.h.
33818         Add missing *s in vtimes prototype.
33819         (Limits on Resources): Fix ulimit prototype to return long int.
33820         * manual/math.texi (SVID Random): Fix lrand48_r and mrand48_r
33821         prototypes to use long int rather than double.
33822         (BSD Random): Fix initstate and setstate to use char *, not void *.
33823         * manual/llio.texi (Asynchronous Reads/Writes): Fix lio_listio64
33824         prototype to make second argument 'struct aiocb64 *const[]'.
33825         Fix aio_read64 and aio_write64 prototypes to use struct aiocb64.
33826         (Status of AIO Operations): Remove erroneous const in aio_return and
33827         aio_return64 prototypes.
33828         (Synchronizing I/O): Fix sync prototype to return void.
33829         * manual/startup.texi (Suboptions): Remove an erroneous const in
33830         getsubopt prototype.
33831         * manual/getopt.texi (Using Getopt): Add a const in getopt prototype.
33832         * manual/users.texi (Lookup Netgroup): Fix getnetgrent_r prototype to
33833         use size_t rather than int.
33834         (Scanning All Users): Likewise for getpwent_r.
33835         (Setting Groups): Add missing const to setgroups prototype.
33836         * manual/sysinfo.texi (mtab): Fix typo in getmntent_r prototype.
33837         * manual/socket.texi (Host Names): Fix gethostbyaddr and
33838         gethostbyaddr_r prototypes to use socklen_t rather than size_t and
33839         'const void *' rather than 'const char *'.
33840         (Host Address Functions): Likewise for inet_ntop.
33841         (Networks Database): Fix getnetbyaddr prototype to use uint32_t.
33842         (Receiving Data): Fix recv, recvfrom, recvmsg prototypes to use
33843         ssize_t for return value.
33844         (Sending Data): Likewise for send, sendto, sendmsg.
33845         (Socket Option Functions): Add a missing const in setsockopt prototype.
33846         * manual/stdio.texi (Simple Output): Fix fputwc_unlocked prototype to
33847         use wchar_t for the argument.
33848         (Formatted Input Functions): Fix swscanf prototype to use wchar_t *.
33849         * manual/arith.texi (Control Functions): Fix fegetexcept prototype to
33850         take no arguments.
33851         (Normalization Functions): Fix scalb, scalbf, scalbl prototypes to use
33852         double/float/long double for second argument.
33853         Fix return types of significand, significandf, significandl.
33854         * manual/filesys.texi (Setting Permissions): Use mode_t for second
33855         argument in fchmod prototype.
33856         (File Owner): Use uid_t and gid_t in fchown prototype.
33857         (File Times): Add const to utimes, futimes, and lutimes prototypes.
33858         (Making Special Files): Use mode_t and dev_t in mknod prototype.
33859         (Scanning Directory Content): Fix scandir and scandir64 prototypes to
33860         use 'const struct dirent **' as argument types to CMP function pointer
33861         argument.
33862         (Symbolic Links): Fix readlink prototype with ssize_t as return value.
33863         (File Times): Fix summary magic @comment for struct utimbuf and utime
33864         to refer to utime.h, not time.h.
33865         * manual/string.texi (Argz Functions): Add missing const in
33866         argz_extract and argz_next prototypes.
33867         (Finding Tokens in a String): Likewise for basename.
33868         (String/Array Comparison): Fix typo in wcscasecmp prototype.
33869         (Copying and Concatenation): Fix typo in wmemmove prototype.
33870         * manual/signal.texi (Using Pause): Use (void) in pause prototype.
33871         (Signal Stack): Remove erroneous const in sigstack prototype.
33872         * manual/time.texi (Setting an Alarm): Add missing const in setitimer
33873         prototype.
33874         (Simple Calendar Time): Likewise for stime.
33875         * manual/terminal.texi (BSD Terminal Modes): Add missing const in stty
33876         prototype.
33877         * manual/sysinfo.texi (System Parameters): Fix mentions of sysctl.h to
33878         say sys/sysctl.h instead.
33879         * manual/syslog.texi (syslog; vsyslog): Add missing const in syslog
33880         and vsyslog prototypes.
33882 2013-02-11  Tom de Vries  <tom@codesourcery.com>
33884         * string/Makefile (CFLAGS-bug-strstr1.c, CFLAGS-bug-strcasestr1.c):
33885         Remove.
33887 2013-02-11  Roland McGrath  <roland@hack.frob.com>
33889         * misc/sys/mman.h: Fix typo in mremap comment.
33891 2013-02-08  Roland McGrath  <roland@hack.frob.com>
33893         * manual/examples/mkfsock.c (make_named_socket): Don't add one for
33894         the '\0' terminator.
33896 2013-02-08  Joseph Myers  <joseph@codesourcery.com>
33898         [BZ #13550]
33899         * debug/segfault.c: Don't include <bp-checks.h>.
33900         * sysdeps/generic/bp-checks.h: Remove file.
33901         * sysdeps/unix/sysv/linux/getdents.c: Don't include <bp-checks.h>.
33902         (__GETDENTS): Don't use CHECK_N.
33903         * sysdeps/unix/sysv/linux/i386/brk.c: Don't include <bp-checks.h>.
33904         * sysdeps/unix/sysv/linux/i386/getgroups.c: Likewise.
33905         (__getgroups): Don't use CHECK_N.
33906         * sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
33907         (setgroups): Don't use CHECK_N.
33908         * sysdeps/unix/sysv/linux/mmap64.c: Don't include <bp-checks.h>.
33909         * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.
33910         (__libc_msgrcv): Don't use CHECK_N.
33911         * sysdeps/unix/sysv/linux/msgsnd.c: Don't include <bp-checks.h>.
33912         (__libc_msgsnd): Don't use CHECK_N.
33913         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c: Don't include
33914         <bp-checks.h>.
33915         (__libc_pread): Don't use CHECK_N.
33916         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c: Don't
33917         include <bp-checks.h>.
33918         (__libc_pread64): Don't use CHECK_N.
33919         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c: Don't
33920         include <bp-checks.h>.
33921         (__libc_pwrite): Don't use CHECK_N.
33922         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c: Don't
33923         include <bp-checks.h>.
33924         (__libc_pwrite64): Don't use CHECK_N.
33925         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Don't include
33926         <bp-checks.h>.
33927         (__libc_pread): Don't use CHECK_N.
33928         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Don't
33929         include <bp-checks.h>.
33930         (__libc_pread64): Don't use CHECK_N.
33931         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Don't
33932         include <bp-checks.h>.
33933         (__libc_pwrite): Don't use CHECK_N.
33934         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Don't
33935         include <bp-checks.h>.
33936         (__libc_pwrite64): Don't use CHECK_N.
33937         * sysdeps/unix/sysv/linux/pread.c: Don't include <bp-checks.h>.
33938         (do_pread): Don't use CHECK_N.
33939         * sysdeps/unix/sysv/linux/pread64.c: Don't include <bp-checks.h>.
33940         (do_pread64): Don't use CHECK_N.
33941         * sysdeps/unix/sysv/linux/pwrite.c: Don't include <bp-checks.h>.
33942         (do_pwrite): Don't use CHECK_N.
33943         * sysdeps/unix/sysv/linux/pwrite64.c: Don't include <bp-checks.h>.
33944         (do_pwrite64): Don't use CHECK_N.
33945         * sysdeps/unix/sysv/linux/readv.c: Don't include <bp-checks.h>.
33946         (__libc_readv): Don't use CHECK_N.
33947         * sysdeps/unix/sysv/linux/semop.c: Don't include <bp-checks.h>.
33948         (semop): Don't use CHECK_N.
33949         * sysdeps/unix/sysv/linux/semtimedop.c: Don't include
33950         <bp-checks.h>.
33951         (semtimedop): Don't use CHECK_N.
33952         * sysdeps/unix/sysv/linux/sh/pread.c: Don't include <bp-checks.h>.
33953         (__libc_pread): Don't use CHECK_N.
33954         * sysdeps/unix/sysv/linux/sh/pread64.c: Don't include
33955         <bp-checks.h>.
33956         (__libc_pread64): Don't use CHECK_N.
33957         * sysdeps/unix/sysv/linux/sh/pwrite.c: Don't include
33958         <bp-checks.h>.
33959         (__libc_pwrite): Don't use CHECK_N.
33960         * sysdeps/unix/sysv/linux/sh/pwrite64.c: Don't include
33961         <bp-checks.h>.
33962         (__libc_pwrite64): Don't use CHECK_N.
33963         * sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c: Don't include
33964         <bp-checks.h>.
33965         (__libc_msgrcv): Don't use CHECK_N.
33966         * sysdeps/unix/sysv/linux/sysctl.c: Don't include <bp-checks.h>.
33967         (__sysctl): Don't use CHECK_N.  Remove GKM FIXME comment.
33968         * sysdeps/unix/sysv/linux/writev.c: Don't include <bp-checks.h>.
33969         (__libc_writev): Don't use CHECK_N.
33971 2013-02-08  Roland McGrath  <roland@hack.frob.com>
33973         * string/strcpy.c: Removed unused variable.
33975         * Makeconfig (+sysdep-includes): Define with := rather than =.
33976         Use an existing include/ subdir of each sysdeps dir before it.
33978 2013-02-08  Carlos O'Donell  <carlos@redhat.com>
33980         * nscd/connection.c (register_traced_file): Comment function.
33981         [HAVE_INOTIFY] (union __inev): Define.
33982         [HAVE_INOTIFY] (inotify_check_files): New function.
33983         [HAVE_INOTIFY] (clear_db_cache): Likewise.
33984         [HAVE_INOTIFY] (main_loop_poll): Call inotify_check_files and
33985         clear_db_cache.
33986         [HAVE_INOTIFY] (main_loop_epoll): Likewise.
33988 2013-02-08  Carlos O'Donell  <carlos@redhat.com>
33990         * elf/dl-cache.c (_dl_load_cache_lookup): Comment that cache is
33991         loaded if not already and that a failure is permanent.
33993 2013-02-08  Carlos O'Donell  <carlos@redhat.com>
33995         [BZ #15006]
33996         * sysdeps/generic/ldconfig.h: Define FLAG_ARM_LIBSF.
33997         * elf/cache.c (print_entry): Add FLAG_ARM_LIBSF support.
33999 2013-02-08  Joseph Myers  <joseph@codesourcery.com>
34001         [BZ #13550]
34002         * sysdeps/generic/bp-checks.h (CHECK_1): Remove all definitions.
34003         (CHECK_1_NULL_OK): Likewise.
34004         * sysdeps/unix/sysv/linux/fxstat.c: Do not include <bp-checks.h>.
34005         (__fxstat): Do not use CHECK_1.
34006         * sysdeps/unix/sysv/linux/fxstat64.c: Do not include
34007         <bp-checks.h>.
34008         (___fxstat64): Do not use CHECK_1.
34009         * sysdeps/unix/sysv/linux/fxstatat.c: Do not include
34010         <bp-checks.h>.
34011         (__fxstatat): Do not use CHECK_1.
34012         * sysdeps/unix/sysv/linux/fxstatat64.c: Do not include
34013         <bp-checks.h>.
34014         (__fxstatat64): Do not use CHECK_1.
34015         * sysdeps/unix/sysv/linux/i386/fxstat.c: Do not include
34016         <bp-checks.h>.
34017         (__fxstat): Do not use CHECK_1.
34018         * sysdeps/unix/sysv/linux/i386/fxstatat.c: Do not include
34019         <bp-checks.h>.
34020         (__fxstatat): Do not use CHECK_1.
34021         * sysdeps/unix/sysv/linux/i386/getresgid.c: Do not include
34022         <bp-checks.h>.
34023         (__getresgid): Do not use CHECK_1.
34024         * sysdeps/unix/sysv/linux/i386/getresuid.c: Do not include
34025         <bp-checks.h>.
34026         (__getresuid): Do not use CHECK_1.
34027         * sysdeps/unix/sysv/linux/i386/lxstat.c: Do not include
34028         <bp-checks.h>.
34029         (__lxstat): Do not use CHECK_1.
34030         * sysdeps/unix/sysv/linux/i386/msgctl.c: Do not include
34031         <bp-checks.h>.
34032         (__old_msgctl): Do not use CHECK_1.
34033         (__new_msgctl): Likewise.
34034         * sysdeps/unix/sysv/linux/i386/setrlimit.c: Do not include
34035         <bp-checks.h>.
34036         (__new_setrlimit): Do not use CHECK_1.
34037         * sysdeps/unix/sysv/linux/i386/shmctl.c: Do not include
34038         <bp-checks.h>.
34039         (__old_shmctl): Do not use CHECK_1.
34040         (__new_shmctl): Likewise.
34041         * sysdeps/unix/sysv/linux/i386/xstat.c: Do not include
34042         <bp-checks.h>.
34043         (__xstat): Do not use CHECK_1.
34044         * sysdeps/unix/sysv/linux/lxstat.c: Do not include <bp-checks.h>.
34045         (__lxstat): Do not use CHECK_1.
34046         * sysdeps/unix/sysv/linux/lxstat64.c: Do not include
34047         <bp-checks.h>.
34048         (___lxstat64): Do not use CHECK_1.
34049         * sysdeps/unix/sysv/linux/msgctl.c: Do not include <bp-checks.h>.
34050         (__old_msgctl): Do not use CHECK_1.
34051         (__new_msgctl): Likewise.
34052         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Do not include
34053         <bp-checks.h>.
34054         (__gettimeofday): Do not use CHECK_1.
34055         * sysdeps/unix/sysv/linux/ptrace.c: Do not include <bp-checks.h>.
34056         (ptrace) [__BOUNDED_POINTERS__]: Remove conditional code.
34057         * sysdeps/unix/sysv/linux/s390/gettimeofday.c: Do not include
34058         <bp-checks.h>.
34059         (__gettimeofday): Do not use CHECK_1.
34060         * sysdeps/unix/sysv/linux/shmctl.c: Do not include <bp-checks.h>.
34061         (__old_shmctl): Do not use CHECK_1_NULL_OK.
34062         (__new_shmctl): Do not use CHECK_1.
34063         * sysdeps/unix/sysv/linux/sigtimedwait.c: Do not include
34064         <bp-checks.h>.
34065         (do_sigtimedwait): Do not use CHECK_1.
34066         * sysdeps/unix/sysv/linux/sigwaitinfo.c: Do not include
34067         <bp-checks.h>.
34068         (do_sigwaitinfo): Do not use CHECK_1.
34069         * sysdeps/unix/sysv/linux/sparc/sparc64/msgctl.c: Do not include
34070         <bp-checks.h>.
34071         (msgctl): Do not use CHECK_1.
34072         * sysdeps/unix/sysv/linux/sparc/sparc64/shmctl.c: Do not include
34073         <bp-checks.h>.
34074         (shmctl): Do not use CHECK_1.
34075         * sysdeps/unix/sysv/linux/ustat.c: Do not include <bp-checks.h>.
34076         (ustat): Do not use CHECK_1.
34077         * sysdeps/unix/sysv/linux/wordsize-64/fxstat.c: Do not include
34078         <bp-checks.h>.
34079         (__fxstat): Do not use CHECK_1.
34080         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Do not include
34081         <bp-checks.h>.
34082         (__fxstatat): Do not use CHECK_1.
34083         * sysdeps/unix/sysv/linux/wordsize-64/lxstat.c: Do not include
34084         <bp-checks.h>.
34085         (__lxstat): Do not use CHECK_1.
34086         * sysdeps/unix/sysv/linux/wordsize-64/xstat.c: Do not include
34087         <bp-checks.h>.
34088         (__xstat): Do not use CHECK_1.
34089         * sysdeps/unix/sysv/linux/xstat.c: Do not include <bp-checks.h>.
34090         (__xstat): Do not use CHECK_1.
34091         * sysdeps/unix/sysv/linux/xstat64.c: Do not include <bp-checks.h>.
34092         (___xstat64): Do not use CHECK_1.
34094         [BZ #13550]
34095         * sysdeps/generic/bp-checks.h (CHECK_BOUNDS_LOW): Remove all
34096         definitions.
34097         (CHECK_BOUNDS_HIGH): Likewise.
34098         * string/strcpy.c: Do not include <bp-checks.h>.
34099         (strcpy): Do not use CHECK_BOUNDS_LOW and CHECK_BOUNDS_HIGH.
34101 2013-02-07  Roland McGrath  <roland@hack.frob.com>
34103         * nscd/nscd-client.h (__nscd_drop_map_ref):
34104         Add __attribute__ ((unused)).
34105         * nis/nss-nisplus.h (niserr2nss): Likewise.
34107         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu): Define it only
34108         under [!(USE_AS_STRCASESTR && STRCASESTR_NONASCII)].
34110         * csu/libc-tls.c (init_static_tls, init_slotinfo):
34111         Remove inline keyword.
34112         * include/rounding-mode.h (round_away): Likewise.
34113         * libio/wfileops.c (adjust_wide_data): Likewise.
34114         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu): Likewise.
34115         (__m128i_strloadu_tolower): Likewise.
34116         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c
34117         (__m128i_strloadu_tolower): Likewise.
34118         * time/mktime.c (ydhms_diff): Likewise.
34119         * locale/elem-hash.h (elem_hash): Likewise.
34120         * locale/setlocale.c (setdata): Likewise.
34121         * posix/regex_internal.h (re_string_char_size_at): Likewise.
34122         (re_string_wchar_at): Likewise.
34123         (bitset_not, bitset_merge, bitset_mask): Likewise.
34124         [!(__GNUC__ > 3)] (inline): Remove macro.
34125         * nscd/nscd-client.h (__nscd_drop_map_ref): Remove inline keyword.
34126         * elf/dl-deps.c (_dl_map_object_deps: preload): Likewise.
34127         * elf/tlsdeschtab.h (_dl_tlsdesc_resolve_early_return_p): Likewise.
34128         (_dl_tlsdesc_wake_up_held_fixups): Likewise.
34129         * string/memcmp.c (memcmp_bytes): Likewise.
34130         * locale/programs/locarchive.c (compute_hashval): Likewise.
34131         * sysdeps/ieee754/dbl-64/x2y2m1.c (mul_split): Likewise.
34132         * sysdeps/unix/sysv/linux/fips-private.h (fips_enabled_p): Likewise.
34133         * resolv/res_send.c (evNowTime, evCmpTime): Likewise.
34134         * nss/getent.c (print_rpc, print_protocols): Likewise.
34135         (print_passwd, print_group, print_aliases): Likewise.
34136         * nis/nss-nisplus.h (niserr2nss): Likewise.
34137         * nscd/connections.c (restart_p): Likewise.
34138         Change return type to bool.
34140 2013-02-05  Roland McGrath  <roland@hack.frob.com>
34142         * Makeconfig (all-Depend-files): Add existing
34143         $(sorted-subdirs:=/Depend) files.
34144         (all-subdirs): Remove nss.
34145         * sysdeps/unix/inet/Subdirs: Add it here instead.
34146         * hesiod/Depend: New file.
34148         * elf/dl-hwcaps.c (_dl_important_hwcaps): Use a variable-length array
34149         instead of calling alloca.
34151         * io/lseek.c (__lseek): Rename to __libc_lseek.
34152         Define __lseek as an alias.
34154         * sysdeps/generic/malloc-sysdep.h: Include <stdbool.h> and <unistd.h>.
34156 2013-02-04  Carlos O'Donell  <carlos@redhat.com>
34158         * stdlib/getenv.c (getenv): Assume __BIG_ENDIAN in the
34159         else clause and remove check for non-standard endianness.
34161 2013-02-04  David S. Miller  <davem@davemloft.net>
34163         * sysdeps/sparc/fpu/libm-test-ulps: Update.
34165 2013-02-04  Joseph Myers  <joseph@codesourcery.com>
34167         [BZ #13550]
34168         * sysdeps/generic/bp-checks.h [__BOUNDED_POINTERS__]
34169         (__ubp_memchr): Remove prototype.
34170         [__BOUNDED_POINTERS__] (_CHECK_STRING): Remove macro.
34171         [__BOUNDED_POINTERS__] (CHECK_STRING): Likewise.
34172         [__BOUNDED_POINTERS__] (CHECK_STRING_NULL_OK): Likewise.
34173         [!__BOUNDED_POINTERS__] (CHECK_STRING): Likewise.
34174         * sysdeps/i386/memchr.S [!__BOUNDED_POINTERS__] (__ubp_memchr):
34175         Remove alias.
34176         * sysdeps/sparc/sparc32/memchr.S [!__BOUNDED_POINTERS__]
34177         (__ubp_memchr): Likewise.
34178         * sysdeps/sparc/sparc64/memchr.S [!__BOUNDED_POINTERS__]
34179         (__ubp_memchr): Likewise.
34180         * sysdeps/unix/sysv/linux/execve.c: Do not include <bp-checks.h>.
34181         (__execve) [__BOUNDED_POINTERS__]: Remove conditional code.
34182         (__execve) [!__BOUNDED_POINTERS__]: Make code unconditional.
34183         * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Do not use
34184         CHECK_STRING.
34185         * sysdeps/unix/sysv/linux/fxstatat64.c (__fxstatat64): Likewise.
34186         * sysdeps/unix/sysv/linux/getcwd.c: Do not include <bp-checks.h>.
34187         (__getcwd): Do not use CHECK_STRING.
34188         * sysdeps/unix/sysv/linux/i386/chown.c: Do not include
34189         <bp-checks.h>.
34190         (__real_chown): Do not use CHECK_STRING.
34191         * sysdeps/unix/sysv/linux/i386/fchownat.c: Do not include
34192         <bp-checks.h>.
34193         (fchownat): Do not use CHECK_STRING.
34194         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Do not use
34195         CHECK_STRING.
34196         * sysdeps/unix/sysv/linux/i386/lchown.c: Do not include
34197         <bp-checks.h>.
34198         (__lchown): Do not use CHECK_STRING.
34199         * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Likewise.
34200         * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise.
34201         * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Likewise.
34202         * sysdeps/unix/sysv/linux/lxstat64.c (___lxstat64): Likewise.
34203         * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c: Do not
34204         include <bp-checks.h>.
34205         (truncate64): Do not use CHECK_STRING.
34206         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Do not include
34207         <bp-checks.h>.
34208         (__real_chown): Do not use CHECK_STRING.
34209         * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Do not include
34210         <bp-checks.h>.
34211         (__lchown): Do not use CHECK_STRING.
34212         * sysdeps/unix/sysv/linux/sh/chown.c: Do not include
34213         <bp-checks.h>.
34214         (__chown): Do not use CHECK_STRING.
34215         * sysdeps/unix/sysv/linux/truncate64.c: Do not include
34216         <bp-checks.h>.
34217         (truncate64): Do not use CHECK_STRING.
34218         * sysdeps/unix/sysv/linux/wordsize-64/lxstat.c (__lxstat):
34219         Likewise.
34220         * sysdeps/unix/sysv/linux/xmknod.c: Do not include <bp-checks.h>.
34221         (__xmknod): Do not use CHECK_STRING.
34222         * sysdeps/unix/sysv/linux/xmknodat.c: Do not include
34223         <bp-checks.h>.
34224         (__xmknodat): Do not use CHECK_STRING.
34225         * sysdeps/unix/sysv/linux/xstat.c (__xstat): Likewise.
34226         * sysdeps/unix/sysv/linux/xstat64.c (___xstat64): Likewise.
34228 2013-02-04  Andreas Schwab  <schwab@suse.de>
34230         [BZ #14142]
34231         * include/errno.h: Redefine errno only if !NOT_IN_libc || IN_LIB.
34232         * include/netdb.h: Likewise for h_errno.
34233         * elf/tst-stackguard1.c: Include <tls.h>.
34235 2013-02-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
34237         * elf/link.h (struct link_map): Extend the l_addr comment.
34238         * include/link.h (struct link_map): Likewise.
34240 2013-02-01  Joseph Myers  <joseph@codesourcery.com>
34242         [BZ #13550]
34243         * sysdeps/generic/bp-checks.h (BOUNDED_N): Remove all definitions.
34244         (BOUNDED_1): Remove macro.
34245         * debug/backtrace.c: Don't include <bp-checks.h>.
34246         (ADVANCE_STACK_FRAME): Don't use BOUNDED_1.
34247         (__backtrace): Likewise.
34248         * sysdeps/powerpc/powerpc32/backtrace.c: Don't include
34249         <bp-checks.h>.
34250         (__backtrace): Don't use BOUNDED_1.
34251         * sysdeps/powerpc/powerpc64/backtrace.c: Don't include
34252         <bp-checks.h>.
34253         (__backtrace): Don't use BOUNDED_1.
34254         * sysdeps/sparc/backtrace.c: Don't include <bp-checks.h>.
34255         (__backtrace): Don't use BOUNDED_1.
34256         * sysdeps/unix/sysv/linux/shmat.c: Don't include <bp-checks.h>.
34257         (shmat): Don't use BOUNDED_N.
34259 2013-01-31  Joseph Myers  <joseph@codesourcery.com>
34261         [BZ #13550]
34262         * sysdeps/generic/bp-start.h: Remove file.
34263         * csu/libc-start.c: Don't include <bp-start.h>.
34264         (LIBC_START_MAIN): Set up __environ directly instead of using
34265         INIT_ARGV_and_ENVIRON.
34266         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Don't include
34267         <bp-start.h>.
34269         [BZ #13550]
34270         * sysdeps/generic/bp-checks.h (CHECK_IOCTL): Remove both
34271         definitions.
34272         (CHECK_FCNTL): Likewise.
34273         (CHECK_N_PAGES): Likewise.
34275         [BZ #13550]
34276         * sysdeps/generic/bp-checks.h (CHECK_SIGSET): Remove both
34277         definitions.
34278         (CHECK_SIGSET_NULL_OK): Likewise.
34279         * sysdeps/unix/sysv/linux/sigpending.c: Don't include
34280         <bp-checks.h>.
34281         (sigpending): Don't use CHECK_SIGSET.
34282         * sysdeps/unix/sysv/linux/sigprocmask.c: Don't include
34283         <bp-checks.h>.
34284         (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
34285         * sysdeps/unix/sysv/linux/sigsuspend.c: Don't include
34286         <bp-checks.h>.
34287         (do_sigsuspend): Don't use CHECK_SIGSET.
34288         * sysdeps/unix/sysv/linux/sigtimedwait.c (do_sigtimedwait): Don't
34289         use CHECK_SIGSET.
34290         * sysdeps/unix/sysv/linux/sigwait.c: Don't include <bp-checks.h>.
34291         (do_sigwait): Don't use CHECK_SIGSET.
34292         * sysdeps/unix/sysv/linux/sigwaitinfo.c (do_sigwaitinfo): Don't
34293         use CHECK_SIGSET.
34294         * sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c: Don't
34295         include <bp-checks.h>.
34296         (sigpending): Don't use CHECK_SIGSET.
34297         * sysdeps/unix/sysv/linux/sparc/sparc64/sigprocmask.c: Don't
34298         include <bp-checks.h>.
34299         (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
34300         * sysdeps/unix/sysv/linux/x86_64/sigpending.c: Don't include
34301         <bp-checks.h>.
34302         (sigpending): Don't use CHECK_SIGSET.
34303         * sysdeps/unix/sysv/linux/x86_64/sigprocmask.c: Don't include
34304         <bp-checks.h>.
34305         (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
34307         [BZ #13550]
34308         * sysdeps/generic/bp-semctl.h: Remove file.
34309         * sysdeps/unix/sysv/linux/i386/semctl.c: Don't include
34310         <bp-checks.h> and <bp-semctl.h>.
34311         (__old_semctl): Don't use CHECK_SEMCTL.
34312         (__new_semctl): Likewise.
34313         * sysdeps/unix/sysv/linux/semctl.c: Don't include <bp-checks.h>
34314         and <bp-semctl.h>.
34315         (__old_semctl): Don't use CHECK_SEMCTL.
34316         (__new_semctl): Likewise.
34317         * sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c: Don't include
34318         <bp-checks.h> and <bp-semctl.h>.
34319         (__old_semctl): Don't use CHECK_SEMCTL.
34320         (__new_semctl): Likewise.
34321         * sysdeps/unix/sysv/linux/sparc/sparc64/semctl.c: Don't include
34322         <bp-checks.h> and <bp-semctl.h>.
34323         (semctl): Don't use CHECK_SEMCTL.
34325         [BZ #13550]
34326         * Makerules (elide-bp-thunks): Remove variable.
34327         (elide-routines.oS): Don't use $(elide-bp-thunks).
34328         (elide-routines.os): Likewise.
34329         (elide-routines.o): Likewise.
34330         (elide-routines.op): Likewise.
34331         (elide-routines.og): Likewise.
34332         (objects): Don't use $(bp-thunks).
34333         * sysdeps/unix/Makefile ($(common-objpfx)s-proto-bp.d): Do not
34334         include.
34335         (common-generated): Do not add s-proto-bp.d.
34336         * sysdeps/unix/make-syscalls.sh (ptr): Remove variable.
34337         (int): Likewise.
34338         (typ): Likewise.
34339         Do not generate makefile rules for bounded-pointer thunks.
34340         * sysdeps/generic/bp-thunks.h: Remove file.
34341         * sysdeps/unix/sysv/linux/i386/bp-thunks.h: Likewise.
34342         * sysdeps/unix/s-proto-bp.S: Likewise.
34344         [BZ #15062]
34345         * math/k_casinh.c (__kernel_casinh): Compute real and imaginary
34346         parts of result separately when argument is not close to line from
34347         -i to i and one part of argument is small.
34348         * math/k_casinhf.c (__kernel_casinhf): Likewise.
34349         * math/k_casinhl.c (__kernel_casinhl): Likewise.
34350         * math/libm-test.inc (cacos_test): Add more tests.
34351         (casin_test): Likewise.
34352         (casinh_test): Likewise.
34353         * sysdeps/i386/fpu/libm-test-ulps: Update.
34354         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
34356 2013-01-31  David S. Miller  <davem@davemloft.net>
34358         * po/de.po: Update from translation team.
34360 2013-01-25  Maxim Kuvyrkov  <maxim.kuvyrkov@gmail.com>
34362         * time/tzfile.c: Include stdint.h for SIZE_MAX.
34364 2013-01-25  Thomas Schwinge  <thomas@codesourcery.com>
34366         * configure.in (_AC_PROG_CC_C89): New definition.
34367         * configure: Regenerate.
34369         * configure.in (AC_PROG_CPP): New definition.
34370         * configure: Regenerate.
34372 2013-01-23  Joseph Myers  <joseph@codesourcery.com>
34374         * debug/tst-backtrace.h: New file.
34375         * debug/tst-backtrace2.c: Include tst-backtrace.h.
34376         (ret): Remove variable.
34377         (x): Likewise.
34378         (FAIL): Remove macro.
34379         (NO_INLINE): Likewise.
34380         (fn1): Use match function instead of strstr.
34381         * debug/tst-backtrace3.c: Include tst-backtrace.h.
34382         (ret): Remove variable.
34383         (x): Likewise.
34384         (FAIL): Remove macro.
34385         (NO_INLINE): Likewise.
34386         (fn): Use match function instead of strstr.
34387         * debug/tst-backtrace4.c: Include tst-backtrace.h.
34388         (ret): Remove variable.
34389         (x): Likewise.
34390         (FAIL): Remove macro.
34391         (NO_INLINE): Likewise.
34392         (handle_signal): Use match function instead of strstr.
34393         * debug/tst-backtrace5.c: Include tst-backtrace.h.
34394         (ret): Remove variable.
34395         (x): Likewise.
34396         (FAIL): Remove macro.
34397         (NO_INLINE): Likewise.
34398         (handle_signal): Use match function instead of strstr.
34400 2013-01-23  Roland McGrath  <roland@hack.frob.com>
34402         * misc/sys/cdefs.h (__glibc_unlikely, __glibc_likely): Fix whitespace.
34404 2013-01-23  David S. Miller  <davem@davemloft.net>
34406         * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h
34407         (__arch_compare_and_exchange_val_32_acq): Use %g0 as second
34408         argument of CAS if possible.
34409         * sysdeps/sparc/sparc64/bits/atomic.h
34410         (__arch_compare_and_exchange_val_32_acq): Likewise.
34411         (__arch_compare_and_exchange_val_64_acq): Likewise.
34413 2013-01-23  Pino Toscano  <toscano.pino@tiscali.it>
34415         * sysdeps/unix/sysv/linux/ulimit.c: Moved to ...
34416         * sysdeps/posix/ulimit.c: ... this.
34417         Include <limits.h>.
34418         * sysdeps/unix/bsd/ulimit.c: Remove file.
34420 2013-01-23  Adam Conrad  <adconrad@0c3.net>
34422         * elf/Makefile (LDFLAGS-tst-array2): Add $(no-as-needed).
34423         (LDFLAGS-tst-array5): Likewise.
34425 2013-01-23  Joseph Myers  <joseph@codesourcery.com>
34427         [BZ #15036]
34428         * bits/wchar.h (__WCHAR_MAX): Define based on __WCHAR_MAX__, or
34429         based on [L'\0' - 1 > 0] if [!__WCHAR_MAX__].
34430         (__WCHAR_MIN): Likewise, using __WCHAR_MIN__.
34431         * sysdeps/unix/sysv/linux/x86/bits/wchar.h: Remove.
34433 2013-01-21  David S. Miller  <davem@davemloft.net>
34435         * sysdeps/sparc/backtrace.c: New file.
34436         * sysdeps/sparc/sparc32/backtrace.h: New file.
34437         * sysdeps/sparc/sparc32/sparcv9/backtrace.h: New file.
34438         * sysdeps/sparc/sparc64/backtrace.h: New file.
34439         * sysdeps/sparc/sparc64/backtrace.c: Delete.
34440         * sysdeps/sparc/Makefile (CFLAGS-backtrace.c): Add
34441         -funwind-tables.
34443 2013-01-21  Andreas Schwab  <schwab@suse.de>
34445         [BZ #15020]
34446         * posix/wordexp.c (exec_comm): Avoid busy loop when command has
34447         closed its stdout.
34449 2013-01-20  Andreas Schwab  <schwab@linux-m68k.org>
34451         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Don't include
34452         "mpa2.h".
34453         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
34455 2013-01-18  Joseph Myers  <joseph@codesourcery.com>
34456             Mark Mitchell  <mark@codesourcery.com>
34457             Tom de Vries  <tom@codesourcery.com>
34458             Paul Pluzhnikov  <ppluzhnikov@google.com>
34460         * debug/tst-backtrace2.c: New file.
34461         * debug/tst-backtrace3.c: Likewise.
34462         * debug/tst-backtrace4.c: Likewise.
34463         * debug/tst-backtrace5.c: Likewise.
34464         * debug/Makefile (CFLAGS-tst-backtrace2.c): New variable.
34465         (CFLAGS-tst-backtrace3.c): Likewise.
34466         (CFLAGS-tst-backtrace4.c): Likewise.
34467         (CFLAGS-tst-backtrace5.c): Likewise.
34468         (LDFLAGS-tst-backtrace2): Likewise.
34469         (LDFLAGS-tst-backtrace3): Likewise.
34470         (LDFLAGS-tst-backtrace4): Likewise.
34471         (LDFLAGS-tst-backtrace5): Likewise.
34472         (tests): Add new tests tst-backtrace2, tst-backtrace3,
34473         tst-backtrace4 and tst-backtrace5.
34475 2013-01-18  Anton Blanchard  <anton@samba.org>
34476             Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
34478         * sysdeps/unix/sysv/linux/powerpc/init-first.c: Rename
34479         __kernel_vdso_get_tbfreq to __kernel_get_tbfreq.
34480         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Add parameter to
34481         INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK to specify return type.
34482         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
34483         (INTERNAL_VSYSCALL_NCS): Change "=&r" in inline asm output regs list to
34484         "+r" and remove output regs list as redundant.  Add explicit inline
34485         asm to specify register of return val to work around compiler codegen
34486         bug.  Remove (int) cast on return value.  Add return type parameter to
34487         use in macro so that this macro does not truncate return value for
34488         64-bit values.
34489         (INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK): Add return type parameter and
34490         pass to INTERNAL_VSYSCALL_NCS.
34491         (INLINE_VSYSCALL): Add 'long int' as return type to
34492         INTERNAL_VSYSCALL_NCS macro invocation.
34493         (INTERNAL_VSYSCALL): Add 'long int' as return type to
34494         INTERNAL_VSYSCALL_NCS macro invocation.
34495         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
34497 2013-01-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
34499         [BZ #14496]
34500         * sysdeps/i386/fpu/fenv_private.h (libc_feupdateenv_test_sse):
34501         Fix application of SIMD FP exception mask.
34503         * sysdeps/ieee754/dbl-64/mpa.h (__pow_mp): New function to get an
34504         mp_no from a power of two.
34505         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove
34506         __mpexp_twomm1.  Use __pow_mp.
34508         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove unnecessary
34509         multiplication.
34511 2013-01-17  David S. Miller  <davem@davemloft.net>
34513         * sysdeps/sparc/fpu/libm-test-ulps: Update.
34515 2013-01-17  Joseph Myers  <joseph@codesourcery.com>
34517         [BZ #15023]
34518         * include/complex.h: Condition contents on [!_COMPLEX_H].
34519         (__kernel_casinhf): New prototype.
34520         (__kernel_casinh): Likewise.
34521         (__kernel_casinhl): Likewise.
34522         * math/Makefile (libm_calls): Add k_casinh.
34523         * math/k_casinh.c: New file.
34524         * math/k_casinhf.c: Likewise.
34525         * math/k_casinhl.c: Likewise.
34526         * math/s_cacos.c (__cacos): Implement using __kernel_casinh for
34527         finite nonzero arguments.
34528         * math/s_cacosf.c (__cacosf): Implement using __kernel_casinhf for
34529         finite nonzero arguments.
34530         * math/s_cacosl.c (__cacosl): Implement using __kernel_casinhl for
34531         finite nonzero arguments.
34532         * math/s_casinh.c: Do not include <float.h>.
34533         (__casinh): Move code for finite nonzero arguments to k_casinh.c.
34534         * math/s_casinhf.c: Do not include <float.h>.
34535         (__casinhf): Move code for finite nonzero arguments to
34536         k_casinhf.c.
34537         * math/s_casinhl.c: Do not include <float.h>.
34538         [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Do not undefine and
34539         redefine.
34540         (__casinhl): Move code for finite nonzero arguments to
34541         k_casinhl.c.
34542         * math/libm-test.inc (cacos_test): Add more tests.
34543         * sysdeps/i386/fpu/libm-test-ulps: Update.
34544         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
34546 2013-01-17  Pino Toscano  <toscano.pino@tiscali.it>
34548         * sysdeps/unix/sysv/linux/malloc-sysdep.h (HAVE_MREMAP): New define.
34549         * malloc/malloc.c: Include <unistd.h> and <malloc-sysdep.h>.
34550         [!HAVE_MREMAP]: Remove [defined linux] case.
34551         * malloc/arena.c: Do not include <malloc-sysdep.h>.
34553 2013-01-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
34555         * sysdeps/ieee754/dbl-64/mpa.c: Fix header comment.
34557 2013-01-17  H.J. Lu  <hongjiu.lu@intel.com>
34559         * elf/elf.h (R_386_SIZE32): New relocation.
34560         * sysdeps/i386/dl-machine.h (elf_machine_rel): Handle
34561         R_386_SIZE32.
34562         (elf_machine_rela): Likewise.
34563         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Handle
34564         R_X86_64_SIZE64 and R_X86_64_SIZE32.
34566 2013-01-17  Joseph Myers  <joseph@codesourcery.com>
34568         * sysdeps/powerpc/bits/mathdef.h [_SOFT_FLOAT || __NO_FPRS__]
34569         (FP_FAST_FMA): Do not define.
34570         [_SOFT_FLOAT || __NO_FPRS__] (FP_FAST_FMAF): Likewise.
34571         * sysdeps/powerpc/fpu/bits/fenvinline.h [__GNUC__ && !_SOFT_FLOAT
34572         && !__NO_MATH_INLINES]: Add [!__NO_FPRS__] condition.
34573         * sysdeps/powerpc/fpu/bits/mathinline.h [__GNUC__ &&
34574         !_SOFT_FLOAT]: Likewise.
34575         * sysdeps/powerpc/fpu/fpu_control.h [_SOFT_FLOAT || __NO_FPRS__]
34576         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_RESERVED): Define with generic
34577         value.
34578         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_DEFAULT): Likewise.
34579         [_SOFT_FLOAT || __NO_FPRS__] (fpu_control_t): Likewise.
34580         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_GETCW): Likewise.
34581         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_SETCW): Likewise.
34582         [_SOFT_FLOAT || __NO_FPRS__] (__fpu_control): Likewise.
34583         [!_SOFT_FLOAT && !__NO_FPRS__]: Condition previous contents of
34584         file.
34586 2013-01-16  Andreas Schwab  <schwab@suse.de>
34588         [BZ #14327]
34589         * include/stdlib.h (__mktemp): Add declaration.
34590         * misc/mktemp.c (__mktemp): Renamed from mktemp, add weak alias.
34591         * misc/Versions (GLIBC_PRIVATE): Add __mktemp.
34593 2013-01-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
34595         * sysdeps/ieee754/dbl-64/atnat.h: Remove constant value
34596         definitions.
34597         * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
34598         * sysdeps/ieee754/dbl-64/mpa.c: Do not include mpa2.h.
34599         * sysdeps/ieee754/dbl-64/mpa.h: Move all constant value
34600         definitions here.
34601         * sysdeps/ieee754/dbl-64/mpa2.h: Remove.
34602         * sysdeps/ieee754/dbl-64/mpatan.h: Remove constant value
34603         definitions.
34604         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Remove ZERO
34605         and ONE.
34606         * sysdeps/ieee754/dbl-64/mpexp.c: Do not include mpexp.h.
34607         * sysdeps/ieee754/dbl-64/mpexp.h: Remove.
34608         * sysdeps/ieee754/dbl-64/mpsqrt.h: Remove constant value
34609         definitions.
34610         * sysdeps/ieee754/dbl-64/mptan.c (__mptan): Remove MONE.
34611         * sysdeps/ieee754/dbl-64/ulog.h: Remove constant value
34612         definitions.
34613         * sysdeps/ieee754/dbl-64/utan.h: Likewise.
34615         * sysdeps/ieee754/dbl-64/mpa2.h: Fix the value of TWO.
34617 2013-01-15  David S. Miller  <davem@davemloft.net>
34619         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
34620         trunc{,f} to libm-sysdep_routes.
34621         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
34622         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc-vis3.S: New
34623         file.
34624         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc.S: New file.
34625         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf-vis3.S: New
34626         file.
34627         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf.S: New
34628         file.
34629         * sysdeps/sparc/sparc32/sparcv9/fpu/s_trunc.S: New file.
34630         * sysdeps/sparc/sparc32/sparcv9/fpu/s_truncf.S: New file.
34631         * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc-vis3.S: New file.
34632         * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc.S: New file.
34633         * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf-vis3.S: New file.
34634         * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf.S: New file.
34635         * sysdeps/sparc/sparc64/fpu/s_trunc.S: New file.
34636         * sysdeps/sparc/sparc64/fpu/s_truncf.S: New file.
34638         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
34639         nearbyint{,f} to libm-sysdep_routes.
34640         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
34641         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint-vis3.S:
34642         New file.
34643         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint.S: New
34644         file.
34645         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf-vis3.S:
34646         New file.
34647         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf.S: New
34648         file.
34649         * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyint.S: New file.
34650         * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyintf.S: New file.
34651         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint-vis3.S: New
34652         file.
34653         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint.S: New file.
34654         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf-vis3.S: New
34655         file.
34656         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf.S: New file.
34657         * sysdeps/sparc/sparc64/fpu/s_nearbyint.S: New file.
34658         * sysdeps/sparc/sparc64/fpu/s_nearbyintf.S: New file.
34660         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Use
34661         libc_feholdexcept and libc_fesetenv.
34663 2013-01-15  Mike Frysinger  <vapier@gentoo.org>
34665         * sysdeps/unix/sysv/linux/scsi/sg.h: Include stddef.h.
34667 2013-01-14  David S. Miller  <davem@davemloft.net>
34669         * sysdeps/sparc/sparc-ifunc.h (SPARC_ASM_IFUNC2): New macro.
34670         (SPARC_ASM_VIS2_IFUNC): Likewise.
34671         (SPARC_ASM_VIS3_VIS2_IFUNC): Likewise.
34672         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S: Make
34673         use of 'siam' instruction.
34674         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S:
34675         Likewise.
34676         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S:
34677         Likewise.
34678         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S:
34679         Likewise.
34680         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S: Likewise.
34681         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S: Likewise.
34682         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S: Likewise.
34683         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S: Likewise.
34684         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis2.S: New
34685         file.
34686         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis2.S: New
34687         file.
34688         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis2.S: New
34689         file.
34690         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis2.S: New
34691         file.
34692         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis2.S: New file.
34693         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis2.S: New file.
34694         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis2.S: New file.
34695         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis2.S: New file.
34696         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Hook in
34697         new VIS2 routines.
34698         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: Likewise.
34699         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
34700         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S:
34701         Likewise.
34702         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: Likewise.
34703         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: Likewise.
34704         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: Likewise.
34705         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: Likewise.
34706         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add new VIS2
34707         routines to libm-sysdep_routines.
34708         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
34710         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
34711         fdim/fdimf to libm-sysdep_routines.
34712         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-vis3.S: New
34713         file.
34714         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim.S: New file.
34715         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf-vis3.S: New
34716         file.
34717         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf.S: New file.
34718         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fdim.S: New file.
34719         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fdimf.S: New file.
34720         * sysdeps/sparc/sparc32/fpu/s_fdim.S: New file.
34721         * sysdeps/sparc/sparc32/fpu/s_fdimf.S: New file.
34722         * sysdeps/sparc/sparc64/fpu/s_fdim.S: New file.
34723         * sysdeps/sparc/sparc64/fpu/s_fdimf.S: New file.
34725 2013-01-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
34727         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Add a local variable
34728         to optimize copies.
34730         * sysdeps/ieee754/dbl-64/mpa.c: Fix formatting.
34731         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
34732         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
34734         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__inv): Remove
34735         local variable MPTWO.
34736         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__inv):
34737         Likewise.
34739 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
34741         * manual/pattern.texi (Flags for Globbing): Move GLOB_NOSORT after
34742         GLOB_NOESCAPE.
34744 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
34746         * manual/pattern.texi (Flags for Globbing): Highlight GNU extensions.
34748 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
34750         * manual/pattern.texi (glob_t): Document gl_flags.
34751         (glob64_t): Likewise.
34753 2013-01-11  David S. Miller  <davem@davemloft.net>
34755         * math/Makefile (gmp-objs): Use $(gmp-sysdep_routines).
34756         * sysdeps/sparc/sparc64/multiarch/Makefile [$(subdir) = math]
34757         (gmp-sysdep_routines): New variable.  Add VIS3 optimized GMP routines.
34758         * sysdeps/sparc/sparc64/multiarch/add_n-vis3.S: New file.
34759         * sysdeps/sparc/sparc64/multiarch/add_n.S: New file.
34760         * sysdeps/sparc/sparc64/multiarch/addmul_1-vis3.S: New file.
34761         * sysdeps/sparc/sparc64/multiarch/addmul_1.S: New file.
34762         * sysdeps/sparc/sparc64/multiarch/mul_1-vis3.S: New file.
34763         * sysdeps/sparc/sparc64/multiarch/mul_1.S: New file.
34764         * sysdeps/sparc/sparc64/multiarch/sub_n-vis3.S: New file.
34765         * sysdeps/sparc/sparc64/multiarch/sub_n.S: New file.
34766         * sysdeps/sparc/sparc64/multiarch/submul_1-vis3.S: New file.
34767         * sysdeps/sparc/sparc64/multiarch/submul_1.S: New file.
34769         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Properly optimize for 32-bit
34770         sparc V9 rather than using V8 code.
34771         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
34772         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
34774         * sysdeps/sparc/sparc32/sparcv9/fpu/unix/sysv/linux/multiarch/Implies:
34775         Move to...
34776         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/fpu/multiarch/Implies:
34777         Here.
34779 2013-01-11  Roland McGrath  <roland@hack.frob.com>
34781         * configure.in (sysnames): Use $multi_arch_d in setting up $mach list,
34782         not in the main loop.
34783         * configure: Regenerated.
34785 2013-01-11  Joseph Myers  <joseph@codesourcery.com>
34787         * include/features.h (__GLIBC_HAVE_LONG_LONG): Remove.
34788         * bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change #elif condition
34789         to just #else.
34790         * bits/types.h [__GLIBC_HAVE_LONG_LONG]: Likewise.  Remove
34791         [!__GLIBC_HAVE_LONG_LONG] case.
34792         * posix/sys/types.h [__GLIBC_HAVE_LONG_LONG]: Change #elif
34793         condition to just #else.
34794         * stdlib/stdlib.h [__USE_ISOC99 || (__GLIBC_HAVE_LONG_LONG &&
34795         __USE_MISC)]: Change all uses to [__USE_ISOC99 || __USE_MISC].
34796         [__GLIBC_HAVE_LONG_LONG && __USE_BSD]: Change to [__USE_BSD].
34797         * string/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Make code
34798         unconditional.
34799         * string/endian.h [__GLIBC_HAVE_LONG_LONG]: Likewise.
34800         * sysdeps/s390/bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change
34801         #elif condition to just #else.
34802         * sysdeps/unix/sysv/linux/sys/sysmacros.h
34803         [__GLIBC_HAVE_LONG_LONG]: Make code unconditional.
34804         * sysdeps/x86/bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change
34805         #elif condition to just #else.
34807 2013-01-11  Steve Ellcey  <sellcey@mips.com>
34809         * elf/elf.h (EF_MIPS_ARCH_32): Fix value.
34810         (EF_MIPS_ARCH_64): Fix value.
34811         (EF_MIPS_ARCH_32R2): New.
34812         (EF_MIPS_ARCH_64R2): New.
34814 2013-01-11  H.J. Lu  <hongjiu.lu@intel.com>
34816         * Makeconfig (+link-pie-before-libc): New.
34817         (+link-pie-after-libc): Likewise.
34818         (+link-pie-tests): Likewise.
34819         (+link-pie): Rewritten.
34820         (link-before-libc): Remove $(config-LDFLAGS).
34821         (+link): Add $(rtld-LDFLAGS) after $(+link-before-libc).
34822         (+link-tests): Add $(rtld-tests-LDFLAGS) after $(+link-before-libc).
34823         (config-LDFLAGS): Renamed to ...
34824         (rtld-LDFLAGS): This.
34825         (rtld-tests-LDFLAGS): New macro.
34826         (link-libc-rpath-link): Likewise.
34827         (link-libc-tests-rpath-link): Likewise.
34828         (link-libc-before-gnulib): Remove -Wl,-rpath-link=$(rpath-link).
34829         (link-libc): Prepand $(link-libc-rpath-link).
34830         (link-libc-tests): Prepand $(link-libc-tests-rpath-link).
34831         (test-program-prefix): New macro.
34832         (test-via-rtld-prefix): Likewise.
34833         (test-program-cmd): Likewise.
34834         (host-test-program-cmd): Likewise.
34835         * Makefile ($(common-objpfx)testrun.sh): Replace
34836         $(run-program-prefix) with $(test-program-prefix).
34837         * Makerules ($(LINK.o)): Replace $(config-LDFLAGS) with
34838         $(rtld-LDFLAGS).
34839         ($(common-objpfx)shlib.lds): Likewise.
34840         (build-module-helper): Likewise.
34841         ($(common-objpfx)format.lds): Likewise.
34842         * Rules (binaries-pie-tests): New.
34843         (binaries-pie-notests): Likewise.
34844         (binaries-pie): Rewritten.
34845         ($(addprefix $(objpfx),$(binaries-pie))): Renamed to ...
34846         ($(addprefix $(objpfx),$(binaries-pie-notests))): This.
34847         ($(addprefix $(objpfx),$(binaries-pie-tests))): New.
34848         (make-test-out): Replace $(host-built-program-cmd) with
34849         $(host-test-program-cmd).
34850         * config.make.in (build-hardcoded-path-in-tests): New variable.
34851         * configure.in (--enable-hardcoded-path-in-tests): New configure
34852         option.
34853         (hardcoded_path_in_tests): New AC_SUBST.
34854         * configure: Regenerated.
34855         * catgets/Makefile ($(objpfx)test-gencat.out): Replace
34856         $(built-program-cmd) with $(test-program-cmd).
34857         * catgets/test-gencat.sh (run_program_cmd): Renamed to ...
34858         (test_program_cmd): This.
34859         * elf/Makefile ($(objpfx)order.out): Run test with
34860         $(test-program-prefix).
34861         ($(objpfx)order2.out): Likewise.
34862         ($(objpfx)tst-initorder.out): Likewise.
34863         ($(objpfx)tst-initorder2.out): Likewise.
34864         ($(objpfx)tst-array1.out): Replace $(built-program-cmd) with
34865         $(test-program-cmd).
34866         ($(objpfx)tst-array1-static.out): Likewise.
34867         ($(objpfx)tst-array2.out): Likewise.
34868         ($(objpfx)tst-array3.out): Likewise.
34869         ($(objpfx)tst-array4.out): Likewise.
34870         ($(objpfx)tst-array5.out): Likewise.
34871         ($(objpfx)tst-array5-static.out): Likewise.
34872         (tst-stackguard1-ARGS): Replace $(built-program-cmd) with
34873         $(test-program-cmd).
34874         * grp/Makefile ($(objpfx)tst_fgetgrent.out): Replace
34875         $(run-program-prefix) with $(test-program-prefix).
34876         * grp/tst_fgetgrent.sh (run_program_prefix): Renamed to ...
34877         (test_program_prefix): This.
34878         * iconvdata/Makefile ($(objpfx)tst-tables.out): Replace
34879         $(run-program-prefix) with $(test-program-prefix).
34880         * iconvdata/tst-table.sh (run_program_prefix): Renamed to ...
34881         (test_program_prefix): This.
34882         * iconvdata/tst-tables.sh: Likewise.
34883         * intl/Makefile ($(objpfx)tst-gettext.out): Replace
34884         $(run-program-prefix) with $(test-program-prefix).
34885         ($(objpfx)tst-translit.out): Likewise.
34886         ($(objpfx)tst-gettext2.out): Likewise.
34887         ($(objpfx)tst-gettext4.out): Likewise.
34888         ($(objpfx)tst-gettext6.out): Likewise.
34889         * intl/tst-gettext.sh (run_program_prefix): Renamed to ...
34890         (test_program_prefix): This.
34891         * intl/tst-gettext2.sh: Likewise.
34892         * intl/tst-gettext4.sh  Likewise.
34893         * intl/tst-gettext6.sh: Likewise.
34894         * intl/tst-translit.sh: Likewise.
34895         * io/Makefile ($(objpfx)ftwtest.out): Replace $(run-program-cmd)
34896         with $(test-program-cmd).
34897         * libio/Makefile ($(objpfx)test-freopen.out): Replace
34898         $(run-program-prefix) with $(test-program-prefix).
34899         * libio/test-freopen.sh (run_program_prefix): Renamed to ...
34900         (test_program_prefix): This.
34901         * malloc/Makefile ($(objpfx)tst-mtrace.out): Replace
34902         $(run-program-prefix) with $(test-program-prefix).
34903         * malloc/tst-mtrace.sh (run_program_prefix): Renamed to ...
34904         (test_program_prefix): This.
34905         * manual/install.texi: Document --enable-hardcoded-path-in-tests.
34906         * posix/Makefile ($(objpfx)globtest.out): Replace
34907         $(run-via-rtld-prefix) and $(test-wrapper) with
34908         $(test-program-prefix) and $(test-via-rtld-prefix).
34909         ($(objpfx)wordexp-tst.out): Replace $(run-program-prefix) with
34910         $(test-program-prefix).
34911         (tst-exec-ARGS): Replace $(host-built-program-cmd) with
34912         $(host-test-program-cmd).
34913         (tst-spawn-ARGS): Likewise.
34914         ($(objpfx)tst-rxspencer-mem): Replace $(run-program-prefix) with
34915         $(test-program-prefix).
34916         * posix/globtest.sh (un_via_rtld_prefix): Renamed to ...
34917         (test_via_rtld_prefix): This.
34918         (test_wrapper): Renamed to ...
34919         (test_program_prefix): This.
34920         (run_program_prefix): Replaced by test_program_prefix.
34921         * posix/wordexp-tst.sh (run_program_prefix): Renamed to ...
34922         (test_program_prefix): This.
34923         * rt/Makefile (tst-mqueue7-ARGS): Replace $(host-built-program-cmd)
34924         with $(host-test-program-cmd).
34925         * stdio-common/Makefile ($(objpfx)tst-unbputc.out): Replace
34926         $(run-program-prefix) with $(test-program-prefix).
34927         ($(objpfx)tst-printf.out): Likewise.
34928         ($(objpfx)tst-setvbuf1.out): Replace $(built-program-cmd) with
34929         $(test-program-cmd).
34930         * stdio-common/tst-printf.sh (run_program_prefix): Renamed to ...
34931         (test_program_prefix): This.
34932         * stdio-common/tst-unbputc.sh: Likewise.
34933         * stdlib/Makefile ($(objpfx)tst-fmtmsg.out): Replace
34934         $(run-program-prefix) with $(test-program-prefix).
34935         * stdlib/tst-fmtmsg.sh (run_program_prefix): Renamed to ...
34936         (test_program_prefix): This.
34937         * string/Makefile ($(objpfx)tst-svc.out):  Replace
34938         $(built-program-cmd) with $(test-program-cmd).
34940 2013-01-11  Andreas Jaeger  <aj@suse.de>
34942         [BZ #15003]
34943         * sysdeps/unix/sysv/linux/bits/socket.h (MSG_FASTOPEN): New
34944         value. Sync with Linux 3.7.
34946 2013-01-10  David S. Miller  <davem@davemloft.net>
34948         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Revert previous changes.
34949         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
34950         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
34952 2013-01-10  Roland McGrath  <roland@hack.frob.com>
34954         * configure.in (sysnames): Drop use of $m0sub and $msub, which are
34955         never set.
34956         * configure: Regenerated.
34958 2013-01-10  David S. Miller  <davem@davemloft.net>
34960         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Properly optimize for 32-bit
34961         sparc V9 rather than using V8 code.
34962         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
34963         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
34965 2013-01-10  Roland McGrath  <roland@hack.frob.com>
34967         * elf/elf.h (DT_SPARC_REGISTER, DT_SPARC_NUM): Fix whitespace.
34968         (EF_MIPS_NOREORDER, EF_MIPS_PIC, EF_MIPS_CPIC, EF_MIPS_XGOT): Likewise.
34969         (EF_MIPS_64BIT_WHIRL, EF_MIPS_ABI2, EF_MIPS_ABI_ON32): Likewise.
34970         (EF_MIPS_ARCH, EF_MIPS_ARCH_1, EF_MIPS_ARCH_2): Likewise.
34971         (EF_MIPS_ARCH_3, EF_MIPS_ARCH_4, EF_MIPS_ARCH_5): Likewise.
34972         (EF_MIPS_ARCH_32, EF_MIPS_ARCH_64): Likewise.
34973         (E_MIPS_ARCH_1): Define in terms of EF_MIPS_ARCH_* counterpart.
34974         (E_MIPS_ARCH_2, E_MIPS_ARCH_3, E_MIPS_ARCH_4, E_MIPS_ARCH_5): Likewise.
34975         (E_MIPS_ARCH_32, E_MIPS_ARCH_64): Likewise.
34976         (SHN_MIPS_ACOMMON, SHN_MIPS_TEXT, SHN_MIPS_DATA): Fix whitespace.
34977         (SHN_MIPS_SCOMMON, SHN_MIPS_SUNDEFINED): Likewise.
34978         (SHT_MIPS_LIBLIST, SHT_MIPS_MSYM, SHT_MIPS_CONFLICT): Likewise.
34979         (SHT_MIPS_GPTAB, SHT_MIPS_UCODE, SHT_MIPS_DEBUG): Likewise.
34980         (SHT_MIPS_REGINFO, SHT_MIPS_PACKAGE, SHT_MIPS_PACKSYM): Likewise.
34981         (SHT_MIPS_RELD, SHT_MIPS_IFACE, SHT_MIPS_CONTENT): Likewise.
34982         (SHT_MIPS_OPTIONS, SHT_MIPS_SHDR, SHT_MIPS_FDESC): Likewise.
34983         (SHT_MIPS_EXTSYM, SHT_MIPS_DENSE, SHT_MIPS_PDESC): Likewise.
34984         (SHT_MIPS_LOCSYM, SHT_MIPS_AUXSYM, SHT_MIPS_OPTSYM): Likewise.
34985         (SHT_MIPS_LOCSTR, SHT_MIPS_LINE, SHT_MIPS_RFDESC): Likewise.
34986         (SHT_MIPS_DELTASYM, SHT_MIPS_DELTAINST, SHT_MIPS_DELTACLASS): Likewise.
34987         (SHT_MIPS_DELTADECL, SHT_MIPS_SYMBOL_LIB, SHT_MIPS_EVENTS): Likewise.
34988         (SHT_MIPS_TRANSLATE, SHT_MIPS_PIXIE, SHT_MIPS_XLATE): Likewise.
34989         (SHT_MIPS_XLATE_DEBUG, SHT_MIPS_WHIRL, SHT_MIPS_EH_REGION): Likewise.
34990         (SHT_MIPS_XLATE_OLD, SHT_MIPS_PDR_EXCEPTION): Likewise.
34991         (SHF_MIPS_GPREL, SHF_MIPS_MERGE, SHF_MIPS_ADDR): Likewise.
34992         (SHF_MIPS_STRINGS, SHF_MIPS_NOSTRIP, SHF_MIPS_LOCAL): Likewise.
34993         (SHF_MIPS_NAMES, SHF_MIPS_NODUPE): Likewise.
34995 2013-01-10  David S. Miller  <davem@davemloft.net>
34997         * sysdeps/sparc/fpu/libm-test-ulps: Update.
34999 2013-01-10  H.J. Lu  <hongjiu.lu@intel.com>
35001         * posix/Makefile (tests-static): New variable.
35002         (tests): Add $(tests-static).
35003         (tst-exec-static-ARGS): New variable.
35004         (tst-spawn-static-ARGS): Likewise.
35005         * posix/tst-exec-static.c: New file.
35006         * posix/tst-spawn-static.c: Likewise.
35007         * posix/tst-exec.c: Support run directly.
35008         * posix/tst-spawn.c: Likewise.
35010 2013-01-10  Joseph Myers  <joseph@codesourcery.com>
35012         * elf/link.h (struct dl_phdr_info): Use __extension__ with long
35013         long.
35014         * math/bits/mathcalls.h (llrint): Likewise.
35015         (llround): Likewise.
35016         * stdlib/stdlib.h (struct drand48_data): Likewise.
35017         * sysdeps/generic/inttypes.h (imaxdiv_t): Likewise.
35018         * sysdeps/s390/bits/byteswap.h (__bswap_64): Likewise.
35019         * sysdeps/unix/sysv/linux/sparc/bits/ipc.h (struct ipc_perm):
35020         Likewise.
35021         * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (struct fpu):
35022         Likewise.
35023         * sysdeps/unix/sysv/linux/x86/sys/procfs.h [__x86_64__]
35024         (elf_greg_t): Likewise.
35025         * sysdeps/x86/bits/setjmp.h [__x86_64__ && __WORDSIZE != 64]
35026         (__jmp_buf): Likewise.
35027         * sysdeps/x86/fpu/bits/mathinline.h (llrintf): Likewise, for all
35028         definitions.
35029         (llrint): Likewise, for all definitions.
35030         (llrintl): Likewise.
35032         * string/string.h [__USE_BSD && __USE_GNU && __GNUC__] (ffsll):
35033         Remove [__GNUC__] condition.
35034         * wcsmbs/wchar.h [__USE_ISOC99 || (__GNUC__ && __USE_GNU)]: Change
35035         condition to just [__USE_ISOC99].
35036         [__GNUC__ && __USE_GNU]: Change condition to just [__USE_GNU].
35038 2013-01-10  H.J. Lu  <hongjiu.lu@intel.com>
35040         [BZ #14200]
35041         * sysdeps/unix/sysv/linux/x86/bits/environments.h
35042         (_POSIX_V7_ILP32_OFF32): Defined as 1 only if __x86_64__ isn't
35043         defined.
35044         (_POSIX_V6_ILP32_OFF32): Likewise.
35045         (_XBS5_ILP32_OFF32): Likewise.
35046         (__ILP32_OFFBIG_CFLAGS): Defined as "-mx32" for x32.
35047         (__ILP32_OFFBIG_LDFLAGS): Likewise.
35049 2013-01-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
35051         * sysdeps/ieee754/dbl-64/mpexp.c: Fix formatting.
35053         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): New array of
35054         doubles __mpexp_twomm1.  Adjust usage.
35055         * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_twomm1):
35056         Remove.
35058 2013-01-10  Andreas Schwab  <schwab@suse.de>
35060         [BZ #14964]
35061         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (FALLOC_FL_KEEP_SIZE)
35062         (FALLOC_FL_PUNCH_HOLE) [__USE_GNU]: New macros.
35064 2013-01-09  David S. Miller  <davem@davemloft.net>
35066         [BZ #15003]
35067         * sysdeps/gnu/netinet/tcp.h (TCP_COOKIE_TRANSACTIONS)
35068         (TCP_THIN_LINEAR_TIMEOUTS, TCP_THIN_DUPACK, TCP_USER_TIMEOUT)
35069         (TCP_REPAIR, TCP_REPAIR_QUEUE, TCP_QUEUE_SEQ, TCP_REPAIR_OPTIONS)
35070         (TCP_FASTOPEN): Define.
35071         (tcp_repair_opt): New structure.
35072         (TCP_NO_QUEUE, TCP_RECV_QUEUE, TCP_SEND_QUEUE, TCP_QUEUES_NR): New
35073         enum values.
35074         (TCP_COOKIE_MIN, TCP_COOKIE_MAX, TCP_COOKIE_PAIR_SIZE)
35075         (TCP_COOKIE_IN_ALWAYS, TCP_COOKIE_OUT_NEVER, TCP_S_DATA_IN)
35076         (TCP_S_DATA_OUT, TCP_MSS_DEFAULT, TCP_MSS_DESIRED): Define.
35077         (tcp_cookie_transactions): New structure.
35079 2013-01-09  Anton Blanchard  <anton@samba.org>
35081         * sysdeps/unix/sysv/linux/powerpc/sched_getcpu.c: New file.
35082         * sysdeps/unix/sysv/linux/powerpc/Versions: Add __vdso_getcpu.
35083         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Likewise.
35084         * sysdeps/unix/sysv/linux/powerpc/init-first.c: Likewise.
35086 2013-01-09  Joseph Myers  <joseph@codesourcery.com>
35088         * include/features.h (__USE_ANSI): Remove.
35090 2013-01-09  Roland McGrath  <roland@hack.frob.com>
35092         * posix/Makefile (others): Depend on $(objpfx)getconf.speclist.
35094         * misc/error.c (error_tail: ALLOCA_LIMIT): Remove unused macro.
35096 2013-01-09  Siddhesh Poyarekar  <siddhesh@redhat.com>
35098         * sysdeps/s390/fpu/libm-test-ulps: Update.
35100         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
35102         * sysdeps/ieee754/dbl-64/mpa.c (mcr): Reword comment.
35103         (__acr): Likewise.
35104         (__cpy): Likewise.
35105         (norm): Likewise.
35106         (denorm): Likewise.
35107         (__mp_dbl): Likewise.
35108         (__dbl_mp): Likewise.
35109         (add_magnitudes): Likewise.
35110         (sub_magnitudes): Likewise.
35111         (__add): Likewise.
35112         (__sub): Likewise.
35113         (__mul): Likewise.
35114         (__inv): Likewise.
35115         (__dvd): Likewise.
35116         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (mcr): Likewise.
35117         (__acr): Likewise.
35118         (__cpy): Likewise.
35119         (norm): Likewise.
35120         (denorm): Likewise.
35121         (__mp_dbl): Likewise.
35122         (__dbl_mp): Likewise.
35123         (add_magnitudes): Likewise.
35124         (sub_magnitudes): Likewise.
35125         (__add): Likewise.
35126         (__sub): Likewise.
35127         (__mul): Likewise.
35128         (__inv): Likewise.
35129         (__dvd): Likewise.
35130         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (mcr): Likewise.
35131         (__acr): Likewise.
35132         (__cpy): Likewise.
35133         (norm): Likewise.
35134         (denorm): Likewise.
35135         (__mp_dbl): Likewise.
35136         (__dbl_mp): Likewise.
35137         (add_magnitudes): Likewise.
35138         (sub_magnitudes): Likewise.
35139         (__add): Likewise.
35140         (__sub): Likewise.
35141         (__mul): Likewise.
35142         (__inv): Likewise.
35143         (__dvd): Likewise.
35145 2013-01-08  Joseph Myers  <joseph@codesourcery.com>
35147         * io/sys/stat.h [__GNUC__ && __GNUC__ >= 2 &&
35148         __USE_EXTERN_INLINES]: Change condition to [__USE_EXTERN_INLINES].
35149         * sysdeps/unix/sysv/linux/sys/sysmacros.h [__GNUC__ && __GNUC__ >=
35150         2 && __USE_EXTERN_INLINES]: Likewise.
35152 2013-01-08  Andreas Jaeger  <aj@suse.de>
35154         [BZ# 14985]
35155         * sysdeps/unix/sysv/linux/sparc/bits/epoll.h (EPOLL_NONBLOCK):
35156         Remove.
35157         * sysdeps/unix/sysv/linux/bits/epoll.h (EPOLL_NONBLOCK): Likewise.
35158         * sysdeps/unix/sysv/linux/x86/bits/epoll.h (EPOLL_NONBLOCK): Likewise.
35160 2013-01-07  Anton Blanchard  <anton@samba.org>
35162         * sysdeps/powerpc/fpu/feholdexcpt.c: Fixed spelling errors.
35163         * sysdeps/powerpc/fpu/feupdateenv.c: Likewise.
35164         * sysdeps/powerpc/fpu/math_ldbl.h: Likewise.
35165         * sysdeps/powerpc/powerpc32/bits/atomic.h: Likewise.
35166         * sysdeps/powerpc/powerpc32/cell/memcpy.S: Likewise.
35167         * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
35168         * sysdeps/powerpc/powerpc32/dl-start.S: Likewise.
35169         * sysdeps/powerpc/powerpc32/memset.S: Likewise.
35170         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
35171         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
35172         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
35173         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
35174         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
35175         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
35176         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Likewise.
35177         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
35178         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
35179         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
35180         * sysdeps/powerpc/powerpc32/power7/memchr.S: Likewise.
35181         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.
35182         * sysdeps/powerpc/powerpc32/power7/memrchr.S: Likewise.
35183         * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: Likewise.
35184         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
35185         * sysdeps/powerpc/powerpc32/strncmp.S: Likewise.
35186         * sysdeps/powerpc/powerpc64/bits/atomic.h: Likewise.
35187         * sysdeps/powerpc/powerpc64/cell/memcpy.S: Likewise.
35188         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
35189         * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Likewise.
35190         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S: Likewise.
35191         * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
35192         * sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
35193         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
35194         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
35195         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
35196         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
35197         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
35198         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
35199         * sysdeps/powerpc/powerpc64/power7/memchr.S: Likewise.
35200         * sysdeps/powerpc/powerpc64/power7/memcmp.S: Likewise.
35201         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.
35202         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: Likewise.
35203         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
35204         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
35206 2013-01-07  Joseph Myers  <joseph@codesourcery.com>
35208         * malloc/malloc.h (__MALLOC_P): Remove all definitions.
35209         (__MALLOC_PMT): Likewise.
35210         [__GNUC__] (__MALLOC_HOOK_VOLATILE): Make not conditional on
35211         [__GNUC__], only on [_LIBC].
35212         [__GNUC__] (__MALLOC_DEPRECATED): Likewise.
35213         [!__GNUC__] (__MALLOC_HOOK_VOLATILE): Remove definition.
35214         [!__GNUC__] (__MALLOC_DEPRECATED): Likewise.
35215         * malloc/malloc.c (malloc_hook_ini): Do not use __MALLOC_P in
35216         forward declaration.
35217         (realloc_hook_ini): Likewise.
35218         (memalign_hook_ini): Likewise.
35219         (__libc_memalign): Do not use __MALLOC_PMT in variable
35220         declaration.
35221         (__libc_valloc): Likewise.
35222         (__libc_pvalloc): Likewise.
35223         (__libc_calloc): Likewise.
35224         (__posix_memalign): Likewise.
35226         [BZ #14996]
35227         * math/s_casinh.c: Include <float.h>.
35228         (__casinh): Do not do computation with squaring and square root
35229         for large arguments.
35230         * math/s_casinhf.c: Include <float.h>.
35231         (__casinhf): Do not do computation with squaring and square root
35232         for large arguments.
35233         * math/s_casinhl.c: Include <float.h>.
35234         [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine and redefine.
35235         (__casinhl): Do not do computation with squaring and square root
35236         for large arguments.
35237         * math/libm-test.inc (casin_test): Add more tests.
35238         (casinh_test): Likewise.
35239         * sysdeps/i386/fpu/libm-test-ulps: Update.
35240         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
35242 2013-01-04  H.J. Lu  <hongjiu.lu@intel.com>
35244         * sysdeps/i386/i686/cacheinfo.c (__x86_64_data_cache_size): Removed.
35245         (__x86_64_raw_data_cache_size): Likewise.
35246         (__x86_64_data_cache_size_half): Likewise.
35247         (__x86_64_raw_data_cache_size_half): Likewise.
35248         (__x86_64_shared_cache_size): Likewise.
35249         (__x86_64_raw_shared_cache_size): Likewise.
35250         (__x86_64_shared_cache_size_half): Likewise.
35251         (__x86_64_raw_shared_cache_size_half): Likewise.
35252         * sysdeps/x86_64/cacheinfo.c (__x86_64_data_cache_size): Renamed
35253         to ...
35254         (__x86_data_cache_size): This.
35255         (__x86_64_raw_data_cache_size): Renamed to ...
35256         (__x86_raw_data_cache_size): This.
35257         (__x86_64_data_cache_size_half): Renamed to ...
35258         (__x86_data_cache_size_half): This.
35259         (__x86_64_raw_data_cache_size_half): Renamed to ...
35260         (__x86_raw_data_cache_size_half): This.
35261         (__x86_64_shared_cache_size): Renamed to ...
35262         (__x86_shared_cache_size): This.
35263         (__x86_64_raw_shared_cache_size): Renamed to ...
35264         (__x86_raw_shared_cache_size): This.
35265         (__x86_64_shared_cache_size_half): Renamed to ...
35266         (__x86_shared_cache_size_half): This.
35267         (__x86_64_raw_shared_cache_size_half): Renamed to ...
35268         (__x86_raw_shared_cache_size_half): This.
35269         * sysdeps/x86_64/memcpy.S: Updated.
35270         * sysdeps/x86_64/memset.S: Likewise.
35271         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
35272         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
35273         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
35275 2013-01-04  David S. Miller  <davem@davemloft.net>
35277         * sysdeps/sparc/fpu/libm-test-ulps: Update.
35279 2013-01-04  Andreas Schwab  <schwab@linux-m68k.org>
35281         * sysdeps/powerpc/fpu/test-powerpc-snan.c (_GNU_SOURCE): Define as
35282         1 to avoid redefinition warning.
35283         (__USE_GNU): Don't define.
35284         (init_signaling_nan): Protoize.
35286         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
35288 2013-01-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
35290         * sysdeps/ieee754/dbl-64/mpa.c: Remove commented code.
35291         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__cr): Remove.
35292         (__cpymn): Likewise.
35293         (norm): Remove commented code.
35294         (denorm): Likewise.
35295         (__mp_dbl): Likewise.
35296         (__inv): Likewise.
35297         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__cr): Remove.
35298         (__cpymn): Likewise.
35299         (norm): Remove commented code.
35300         (denorm): Likewise.
35301         (__mp_dbl): Likewise.
35302         (__inv): Likewise.
35304         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (mpone): Define
35305         mp_no value for 1.0 and 2.0.
35306         (norm): Use RADIXI instead of radixi.d.
35307         (denorm): Likewise.
35308         (__mul): Use 0.0 instead of zero.d.
35309         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (mpone): Define
35310         mp_no value for 1.0 and 2.0.
35311         (norm): Use RADIXI instead of radixi.d.
35312         (denorm): Likewise.
35313         (__mul): Use 0.0 instead of zero.d.
35315 2013-01-04  Joseph Myers  <joseph@codesourcery.com>
35317         [BZ #14994]
35318         * math/s_casinh.c (__casinh): Reduce finite argument to first
35319         quadrant then set signs of results at the end.
35320         * math/s_casinhf.c (__casinhf): Likewise.
35321         * math/s_casinhl.c (__casinhl): Likewise.
35322         * math/libm-test.inc (casin_test): Add more tests.
35323         (casinh_test): Likewise.
35324         * sysdeps/i386/fpu/libm-test-ulps: Update.
35325         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
35327 2013-01-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
35329         * sysdeps/ieee754/dbl-64/mpa.h: Fix code formatting.
35331         * sysdeps/ieee754/dbl-64/mpa.h: Clean up comment for MP_NO.
35333         * sysdeps/ieee754/dbl-64/mpa.c(norm): Remove commented
35334         declarations.
35335         (denorm): Likewise.
35336         (__mp_dbl): Likewise.
35337         (__inv): Likewise.
35339         * sysdeps/ieee754/dbl-64/mpa.h: Remove commented declarations
35340         and adjust the header comment.
35342         * sysdeps/ieee754/dbl-64/mpa.h (__mpexp): Remove unnecessary
35343         variable name from declaration.
35345 2013-01-03  H.J. Lu  <hongjiu.lu@intel.com>
35347         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
35348         Initialize COMMON_CPUID_INDEX_7 element.
35349         * sysdeps/x86_64/multiarch/init-arch.h (bit_RTM): New macro.
35350         (CPUID_RTM): Likewise.
35351         (HAS_RTM): Likewise.
35352         (COMMON_CPUID_INDEX_7): New enum.
35354 2013-01-03  Andreas Schwab  <schwab@linux-m68k.org>
35356         [BZ #14981]
35357         * malloc/mtrace.c (tr_reallochook): If realloc returns NULL when
35358         size is zero, record memory as freed.
35360 2013-01-03  Andreas Jaeger  <aj@suse.de>
35362         * po/ia.po: Add new Interlingua translation.
35364 2012-01-03  Allan McRae  <allan@archlinux.org>
35366         * locale/programs/localedef.c: Fix description of '--posix' flag.
35368 2013-01-02  Joseph Myers  <joseph@codesourcery.com>
35370         * NEWS: Update dates in second copyright notice.
35371         * README: Update copyright dates in example.
35372         * manual/libc.texinfo: Update copyright dates.
35373         * scripts/test-installation.pl: Update copyright date in --version
35374         output.
35376         * hurd/ctty-input.c: Fix copyright notice formatting.
35377         * hurd/ctty-output.c: Likewise.
35378         * hurd/dtable.c: Likewise.
35379         * hurd/hurd-raise.c: Likewise.
35380         * hurd/hurdprio.c: Likewise.
35381         * hurd/msgportdemux.c: Likewise.
35382         * misc/sys/file.h: Likewise.
35383         * misc/sys/ioctl.h: Likewise.
35384         * sysdeps/gnu/netinet/ip_icmp.h: Likewise.
35385         * sysdeps/mach/hurd/chdir.c: Likewise.
35386         * sysdeps/mach/hurd/fchdir.c: Likewise.
35387         * sysdeps/mach/hurd/rename.c: Likewise.
35388         * sysdeps/mach/hurd/rmdir.c: Likewise.
35389         * sysdeps/mach/hurd/seekdir.c: Likewise.
35390         * sysdeps/mach/hurd/setsid.c: Likewise.
35391         * sysdeps/posix/wait3.c: Likewise.
35393         * All files with FSF copyright notices: Update copyright dates
35394         using scripts/update-copyrights.
35395         * intl/plural.c: Regenerated.
35396         * locale/programs/charmap-kw.h: Likewise.
35397         * locale/programs/locfile-kw.h: Likewise.
35399 2013-01-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
35401         * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_twomm1): Fix first
35402         four values.
35404         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Split mantissa
35405         calculation loop and add branch prediction.
35407         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Add assert to
35408         check access beyond bounds of m1np.
35410         * sysdeps/ieee754/dbl-64/mpa.c [! NO__CONST]: New constant
35411         MPTWO.
35412         (__inv): Remove local variable MPTWO to use the global
35413         constant.
35414         * sysdeps/ieee754/dbl-64/mpa.h: Declare MPTWO.
35415         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove local
35416         variable MPTWO.
35417         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Make MPHALF and
35418         MP3HALFS static const.
35420 2013-01-01  David S. Miller  <davem@davemloft.net>
35422         * po/ca.po: Update from translation team.
35424 2013-01-01  Joseph Myers  <joseph@codesourcery.com>
35426         * scripts/update-copyrights: New file.
35427         * Makeconfig: Reformat copyright notice.
35428         * ctype/ctype.h: Likewise.
35429         * debug/swprintf_chk.c: Likewise.
35430         * elf/dl-cache.c: Likewise.
35431         * elf/dl-debug.c: Likewise.
35432         * elf/dl-object.c: Likewise.
35433         * grp/initgroups.c: Likewise.
35434         * hurd/Makefile: Likewise.
35435         * hurd/hurd/signal.h: Likewise.
35436         * hurd/hurdfault.c: Likewise.
35437         * hurd/hurdioctl.c: Likewise.
35438         * hurd/hurdlookup.c: Likewise.
35439         * hurd/intr-msg.c: Likewise.
35440         * iconv/gconv_open.c: Likewise.
35441         * libio/swprintf.c: Likewise.
35442         * locale/lc-ctype.c: Likewise.
35443         * locale/nl_langinfo.c: Likewise.
35444         * mach/Machrules: Likewise.
35445         * mach/Makefile: Likewise.
35446         * malloc/obstack.h: Likewise.
35447         * manual/Makefile: Likewise.
35448         * manual/tsort.awk: Likewise.
35449         * misc/bits/stab.def: Likewise.
35450         * nis/nis_print_group_entry.c: Likewise.
35451         * nis/nis_table.c: Likewise.
35452         * nis/nss_compat/compat-pwd.c: Likewise.
35453         * nis/nss_compat/compat-spwd.c: Likewise.
35454         * po/Makefile: Likewise.
35455         * posix/fnmatch.c: Likewise.
35456         * posix/regex.h: Likewise.
35457         * resolv/Makefile: Likewise.
35458         * resolv/nss_dns/dns-network.c: Likewise.
35459         * resolv/res_hconf.c: Likewise.
35460         * scripts/gen-sorted.awk: Likewise.
35461         * soft-fp/soft-fp.h: Likewise.
35462         * stdio-common/printf.h: Likewise.
35463         * stdlib/monetary.h: Likewise.
35464         * stdlib/random.c: Likewise.
35465         * stdlib/random_r.c: Likewise.
35466         * sysdeps/generic/Makefile: Likewise.
35467         * sysdeps/gnu/Makefile: Likewise.
35468         * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
35469         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
35470         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
35471         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
35472         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
35473         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
35474         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
35475         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
35476         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
35477         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
35478         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
35479         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
35480         * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
35481         * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
35482         * sysdeps/ieee754/dbl-64/mplog.c: Likewise.
35483         * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
35484         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
35485         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
35486         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
35487         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
35488         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
35489         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
35490         * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
35491         * sysdeps/ieee754/ldbl-128/ldbl2mpn.c: Likewise.
35492         * sysdeps/ieee754/ldbl-128/mpn2ldbl.c: Likewise.
35493         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c: Likewise.
35494         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c: Likewise.
35495         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Likewise.
35496         * sysdeps/mach/hurd/errnos.awk: Likewise.
35497         * sysdeps/mach/hurd/fork.c: Likewise.
35498         * sysdeps/mach/hurd/getcwd.c: Likewise.
35499         * sysdeps/mach/hurd/i386/trampoline.c: Likewise.
35500         * sysdeps/mach/hurd/mmap.c: Likewise.
35501         * sysdeps/mach/hurd/utimes.c: Likewise.
35502         * sysdeps/mach/hurd/xmknod.c: Likewise.
35503         * sysdeps/posix/profil.c: Likewise.
35504         * sysdeps/posix/readdir_r.c: Likewise.
35505         * sysdeps/powerpc/bits/mathdef.h: Likewise.
35506         * sysdeps/powerpc/bits/setjmp.h: Likewise.
35507         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Likewise.
35508         * sysdeps/powerpc/powerpc32/memset.S: Likewise.
35509         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
35510         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Likewise.
35511         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
35512         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
35513         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
35514         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Likewise.
35515         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
35516         * sysdeps/pthread/lio_listio.c: Likewise.
35517         * sysdeps/sparc/dl-procinfo.h: Likewise.
35518         * sysdeps/unix/i386/sysdep.S: Likewise.
35519         * sysdeps/unix/sysv/linux/aio_sigqueue.c: Likewise.
35520         * sysdeps/unix/sysv/linux/fstatvfs64.c: Likewise.
35521         * sysdeps/unix/sysv/linux/getdents.c: Likewise.
35522         * sysdeps/unix/sysv/linux/msgctl.c: Likewise.
35523         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
35524         * sysdeps/unix/sysv/linux/semctl.c: Likewise.
35525         * sysdeps/unix/sysv/linux/shmctl.c: Likewise.
35526         * sysdeps/unix/sysv/linux/speed.c: Likewise.
35527         * sysdeps/unix/sysv/linux/xstatconv.h: Likewise.
35528         * sysdeps/wordsize-32/divdi3.c: Likewise.
35529         * time/sys/time.h: Likewise.
35530         * wcsmbs/Makefile: Likewise.
35532 2013-01-01  David S. Miller  <davem@davemloft.net>
35534         * po/fr.po: Update from translation team.
35536         * catgets/gencat.c: Update copyright year.
35537         * csu/version.c: Likewise.
35538         * debug/catchsegv.sh: Likewise.
35539         * debug/pcprofiledump.c: Likewise.
35540         * debug/xtrace.sh: Likewise.
35541         * elf/ldconfig.c: Likewise.
35542         * elf/ldd.bash.in: Likewise.
35543         * elf/pldd.c: Likewise.
35544         * elf/sotruss.ksh: Likewise.
35545         * elf/sprof.c: Likewise.
35546         * iconv/iconv_prog.c: Likewise.
35547         * iconv/iconvconfig.c: Likewise.
35548         * locale/programs/locale.c: Likewise.
35549         * locale/programs/localedef.c: Likewise.
35550         * login/programs/pt_chown.c: Likewise.
35551         * malloc/memusage.sh: Likewise.
35552         * malloc/memusagestat.c: Likewise.
35553         * malloc/mtrace.pl: Likewise.
35554         * nscd/nscd.c: Likewise.
35555         * nss/getent.c: Likewise.
35556         * nss/makedb.c: Likewise.
35557         * posix/getconf.c: Likewise.
35559 2012-12-31  Siddhesh Poyarekar  <siddhesh@redhat.com>
35561         * sysdeps/ieee754/dbl-64/mpa.c (__mp_dbl): Favour normal
35562         numbers.
35564 2012-12-30  Mike Frysinger  <vapier@gentoo.org>
35566         * math/bits/mathcalls.h (modf): Use __nonnull.
35568 2012-12-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
35570         * sysdeps/ieee754/dbl-64/branred.h: Include dla.h.
35571         (split): Use macro CN instead of the bare value.
35572         * sysdeps/ieee754/dbl-64/dla.h: Add comment to explain why CN
35573         could be used.
35574         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Use CN
35575         instead of the bare value.
35576         (power1): Likewise.
35578 2012-12-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
35580         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove
35581         __ATAN_TWOM.
35582         * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
35584         * sysdeps/ieee754/dbl-64/atnat.h: Replaced constants with
35585         their values.
35586         * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
35587         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
35588         * sysdeps/ieee754/dbl-64/ulog.h: Likewise.
35589         * sysdeps/ieee754/dbl-64/utan.h: Likewise.
35591 2012-12-28  Andreas Jaeger  <aj@suse.de>
35593         * elf/elf.h (NT_S390_TDB, NT_FILE, NT_SIGINFO): Define.  New
35594         values are from Linux 3.7.
35596         * sysdeps/gnu/netinet/tcp.h (TCPI_OPT_SYN_DATA)
35597         (TCPI_OPT_ECN_SEEN): Define.  Sync with Linux 3.7.
35599 2012-12-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
35601         * misc/sys/cdefs.h (__glibc_likely): Wrap __builtin_expect for
35602         TRUE case.
35604         * sysdeps/ieee754/dbl-64/mpa.c (norm): Define R as RADIXI.
35605         (norm): Likewise.
35606         * sysdeps/ieee754/dbl-64/mpa2.h: Remove all static const
35607         variables with preprocessor constants.
35608         * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
35609         * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
35610         * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
35612 2012-12-27  Bruno Haible  <bruno@clisp.org>
35614         [BZ #14317]
35615         * string/xpg-strerror.c (__xpg_strerror_r): Optimize, call strlen
35616         only if needed.
35618 2012-12-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
35620         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Eliminate __mpexp_nn
35621         and use variable directly.
35622         * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_nn): Remove.
35624         * sysdeps/ieee754/dbl-64/mpa.c [! NO__CONST]: New constant
35625         MPONE.
35626         * sysdeps/ieee754/dbl-64/mpa.h: Declare MPONE.
35627         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove local
35628         variable MPONE.
35629         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
35630         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
35631         * sysdeps/ieee754/dbl-64/mplog.c (__mplog): Remove mplog.h
35632         include directive.  Remove local variable MPONE.
35633         * sysdeps/ieee754/dbl-64/mplog.h: Remove.
35634         * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: Define NO__CONST.
35635         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
35637 2012-12-25  David S. Miller  <davem@davemloft.net>
35639         * version.h (RELEASE): Set to "development".
35640         (VERSION): Set to "2.17.90".
35641         * NEWS: Add 2.18 section.
35643 2012-12-21  David S. Miller  <davem@davemloft.net>
35645         * po/hr.po: Update from translation team.
35647 2012-12-21  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
35649         * sysdeps/s390/fpu/libm-test-ulps: Refreshed.
35651 2012-12-19  Steve Ellcey  <sellcey@mips.com>
35653         * NEWS:  Mention new memcpy for MIPS.
35655 2012-12-18  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
35657         * manual/contrib.texi (Contributors): Spelling correction.
35659 2012-12-15  David S. Miller  <davem@davemloft.net>
35661         * po/ru.po: Update from translation team.
35663 2012-12-13  David S. Miller  <davem@davemloft.net>
35665         * NEWS: Mention IFUNC testsuite enhancements.
35667         * po/pl.po: Update from translation team.
35668         * po/bg.po: Likewise.
35670         * manual/contrib.texi (Contributors): Update entries for Hongjiu
35671         Lu and Joseph S. Myers.  Add entry for Marcus Shawcroft.
35673 2012-12-11  David S. Miller  <davem@davemloft.net>
35675         * po/sv.po: Update from translation team.
35677         * po/vi.po: Update from translation team.
35679         * po/cs.po: Update from translation team.
35681         * po/de.po: Update from translation team.
35682         * po/eo.po: Likewise.
35683         * po/nl.po: Likewise.
35685 2012-12-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
35687         [BZ #14246]
35688         * manual/argp.texi (Argp Helper Functions): Move node to follow
35689         Argp Parsing State.
35691         [BZ #14872]
35692         * manual/conf.texi (Limits on File System Capacity): Mention if
35693         terminating null is included in the max size.
35695 2012-12-10  Andreas Jaeger  <aj@suse.de>
35697         * po/cs.po: Update from translation team.
35699 2012-12-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
35701         * sysdeps/s390/jmpbuf-unwind.h (_jmpbuf_sp): Declare SP as
35702         void pointer and cast to uintptr_t.
35703         * sysdeps/s390/s390-64/memcmp.S: Pick sysdep.h from include
35704         path.
35705         * sysdeps/s390/s390-64/memcpy.S: Likewise.
35706         * sysdeps/s390/s390-64/memset.S: Likewise.
35708 2012-12-08  Benno Schulenberg  <bensberg@justemail.net>
35710         [BZ #14833]
35711         * menual/message.texi (Message Translation): Fix typos.
35712         (Helper programs for gettext): Likewise.
35714 2012-12-07  Andreas Schwab  <schwab@linux-m68k.org>
35716         [BZ #14898]
35717         * include/link.h (FORCED_DYNAMIC_TLS_OFFSET) [NO_TLS_OFFSET == 0]:
35718         Change to -1.
35720 2012-12-07  David S. Miller  <davem@davemloft.net>
35722         * po/libc.pot: Update.
35724 2012-12-07  Richard Henderson  <rth@redhat.com>
35726         [BZ #10114]
35727         * soft-fp/op-common.h (_FP_MUL): Pull computation of R_e from the
35728         normal/normal case to before the switch.
35729         (_FP_DIV): Likewise.
35731 2012-12-06  Carlos O'Donell  <carlos@systemhalted.org>
35732             Mike Frysinger  <vapier@gentoo.org>
35734         * sysdeps/unix/sysv/linux/posix_fadvise.c (posix_fadvise): Also
35735         check for __NR_fadvise64_64.
35737 2012-12-06  Chris Metcalf  <cmetcalf@tilera.com>
35739         * sysdeps/generic/fpu_control.h (_FPU_GETCW): Define to set cw to
35740         0, not just to plain "0" as a statement.
35741         (_FPU_SETCW): Define to (void) (cw), rather than doing nothing
35742         with cw.
35744 2012-12-06  Joseph Myers  <joseph@codesourcery.com>
35746         * NEWS: Use sourceware.org in Bugzilla URL.
35748 2012-12-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
35750         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
35751         (INTERNAL_SYSCALL_DECL): Use __attribute__ ((unused)).
35753         * stdio-common/tst-put-error.c (do_test): Add newline to the
35754         padded test to ensure flush.
35756 2012-12-05  Jeff Law  <law@redhat.com>
35758         * sunrpc/etc.rpc (fedfs_admin): Add entry.
35760 2012-12-05  Joseph Myers  <joseph@codesourcery.com>
35762         * README: Don't refer to ports add-on as distributed separately.
35763         Mention AArch64 in list of systems supported in the ports add-on.
35765         * LICENSES: Add more non-FSF copyright and license notices.
35767         * soft-fp/op-common.h (_FP_DECL): Declare X##_s with __attribute__
35768         ((unused)).
35770         * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Include <stdlib.h>.
35772         * stdio-common/tst-put-error.c (do_test): Use 10000000 instead of
35773         10000 as width of padded output.
35775 2012-12-04  Joseph Myers  <joseph@codesourcery.com>
35777         * sysdeps/powerpc/sysdep.h (_SYS_AUXV_H): Define to 1 not empty.
35779         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c (__ieee754_atanhl): Mark
35780         variable LX with __attribute__ ((unused)).
35781         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
35782         Likewise.
35783         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c (___isnanl): Likewise.
35784         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
35785         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Mark variable LY
35786         with __attribute__ ((unused)).
35788 2012-12-04  David S. Miller  <davem@abraco.davemloft.net>
35790         * sysdeps/generic/memcopy.h: Add multiple inclusion protection.
35792 2012-12-04  Joseph Myers  <joseph@codesourcery.com>
35794         * sysdeps/ieee754/ldbl-opt/Makefile [$(subdir) = math]
35795         (CFLAGS-nldbl-acos.c): New variable.
35796         [$(subdir) = math] (CFLAGS-nldbl-acosh.c): Likewise.
35797         [$(subdir) = math] (CFLAGS-nldbl-asin.c): Likewise.
35798         [$(subdir) = math] (CFLAGS-nldbl-asinh.c): Likewise.
35799         [$(subdir) = math] (CFLAGS-nldbl-atan.c): Likewise.
35800         [$(subdir) = math] (CFLAGS-nldbl-atan2.c): Likewise.
35801         [$(subdir) = math] (CFLAGS-nldbl-atanh.c): Likewise.
35802         [$(subdir) = math] (CFLAGS-nldbl-cabs.c): Likewise.
35803         [$(subdir) = math] (CFLAGS-nldbl-cacos.c): Likewise.
35804         [$(subdir) = math] (CFLAGS-nldbl-cacosh.c): Likewise.
35805         [$(subdir) = math] (CFLAGS-nldbl-carg.c): Likewise.
35806         [$(subdir) = math] (CFLAGS-nldbl-casin.c): Likewise.
35807         [$(subdir) = math] (CFLAGS-nldbl-casinh.c): Likewise.
35808         [$(subdir) = math] (CFLAGS-nldbl-catan.c): Likewise.
35809         [$(subdir) = math] (CFLAGS-nldbl-catanh.c): Likewise.
35810         [$(subdir) = math] (CFLAGS-nldbl-cbrt.c): Likewise.
35811         [$(subdir) = math] (CFLAGS-nldbl-ccos.c): Likewise.
35812         [$(subdir) = math] (CFLAGS-nldbl-ccosh.c): Likewise.
35813         [$(subdir) = math] (CFLAGS-nldbl-ceil.c): Likewise.
35814         [$(subdir) = math] (CFLAGS-nldbl-cexp.c): Likewise.
35815         [$(subdir) = math] (CFLAGS-nldbl-cimag.c): Likewise.
35816         [$(subdir) = math] (CFLAGS-nldbl-clog.c): Likewise.
35817         [$(subdir) = math] (CFLAGS-nldbl-clog10.c): Likewise.
35818         [$(subdir) = math] (CFLAGS-nldbl-conj.c): Likewise.
35819         [$(subdir) = math] (CFLAGS-nldbl-copysign.c): Likewise.
35820         [$(subdir) = math] (CFLAGS-nldbl-cos.c): Likewise.
35821         [$(subdir) = math] (CFLAGS-nldbl-cosh.c): Likewise.
35822         [$(subdir) = math] (CFLAGS-nldbl-cpow.c): Likewise.
35823         [$(subdir) = math] (CFLAGS-nldbl-cproj.c): Likewise.
35824         [$(subdir) = math] (CFLAGS-nldbl-creal.c): Likewise.
35825         [$(subdir) = math] (CFLAGS-nldbl-csin.c): Likewise.
35826         [$(subdir) = math] (CFLAGS-nldbl-csinh.c): Likewise.
35827         [$(subdir) = math] (CFLAGS-nldbl-csqrt.c): Likewise.
35828         [$(subdir) = math] (CFLAGS-nldbl-ctan.c): Likewise.
35829         [$(subdir) = math] (CFLAGS-nldbl-ctanh.c): Likewise.
35830         [$(subdir) = math] (CFLAGS-nldbl-drem.c): Likewise.
35831         [$(subdir) = math] (CFLAGS-nldbl-erf.c): Likewise.
35832         [$(subdir) = math] (CFLAGS-nldbl-erfc.c): Likewise.
35833         [$(subdir) = math] (CFLAGS-nldbl-exp.c): Likewise.
35834         [$(subdir) = math] (CFLAGS-nldbl-exp10.c): Likewise.
35835         [$(subdir) = math] (CFLAGS-nldbl-exp2.c): Likewise.
35836         [$(subdir) = math] (CFLAGS-nldbl-expm1.c): Likewise.
35837         [$(subdir) = math] (CFLAGS-nldbl-fabs.c): Likewise.
35838         [$(subdir) = math] (CFLAGS-nldbl-fdim.c): Likewise.
35839         [$(subdir) = math] (CFLAGS-nldbl-finite.c): Likewise.
35840         [$(subdir) = math] (CFLAGS-nldbl-floor.c): Likewise.
35841         [$(subdir) = math] (CFLAGS-nldbl-fma.c): Likewise.
35842         [$(subdir) = math] (CFLAGS-nldbl-fmax.c): Likewise.
35843         [$(subdir) = math] (CFLAGS-nldbl-fmin.c): Likewise.
35844         [$(subdir) = math] (CFLAGS-nldbl-fmod.c): Likewise.
35845         [$(subdir) = math] (CFLAGS-nldbl-frexp.c): Likewise.
35846         [$(subdir) = math] (CFLAGS-nldbl-gamma.c): Likewise.
35847         [$(subdir) = math] (CFLAGS-nldbl-hypot.c): Likewise.
35848         [$(subdir) = math] (CFLAGS-nldbl-ilogb.c): Likewise.
35849         [$(subdir) = math] (CFLAGS-nldbl-isinf.c): Likewise.
35850         [$(subdir) = math] (CFLAGS-nldbl-isnan.c): Likewise.
35851         [$(subdir) = math] (CFLAGS-nldbl-j0.c): Likewise.
35852         [$(subdir) = math] (CFLAGS-nldbl-j1.c): Likewise.
35853         [$(subdir) = math] (CFLAGS-nldbl-jn.c): Likewise.
35854         [$(subdir) = math] (CFLAGS-nldbl-ldexp.c): Likewise.
35855         [$(subdir) = math] (CFLAGS-nldbl-lgamma.c): Likewise.
35856         [$(subdir) = math] (CFLAGS-nldbl-lgamma_r.c): Likewise.
35857         [$(subdir) = math] (CFLAGS-nldbl-llrint.c): Likewise.
35858         [$(subdir) = math] (CFLAGS-nldbl-llround.c): Likewise.
35859         [$(subdir) = math] (CFLAGS-nldbl-log.c): Likewise.
35860         [$(subdir) = math] (CFLAGS-nldbl-log10.c): Likewise.
35861         [$(subdir) = math] (CFLAGS-nldbl-log1p.c): Likewise.
35862         [$(subdir) = math] (CFLAGS-nldbl-log2.c): Likewise.
35863         [$(subdir) = math] (CFLAGS-nldbl-logb.c): Likewise.
35864         [$(subdir) = math] (CFLAGS-nldbl-lrint.c): Likewise.
35865         [$(subdir) = math] (CFLAGS-nldbl-lround.c): Likewise.
35866         [$(subdir) = math] (CFLAGS-nldbl-modf.c): Likewise.
35867         [$(subdir) = math] (CFLAGS-nldbl-nan.c): Likewise.
35868         [$(subdir) = math] (CFLAGS-nldbl-nearbyint.c): Likewise.
35869         [$(subdir) = math] (CFLAGS-nldbl-nextafter.c): Likewise.
35870         [$(subdir) = math] (CFLAGS-nldbl-nexttoward.c): Likewise.
35871         [$(subdir) = math] (CFLAGS-nldbl-nexttowardf.c): Likewise.
35872         [$(subdir) = math] (CFLAGS-nldbl-pow.c): Likewise.
35873         [$(subdir) = math] (CFLAGS-nldbl-pow10.c): Likewise.
35874         [$(subdir) = math] (CFLAGS-nldbl-remainder.c): Likewise.
35875         [$(subdir) = math] (CFLAGS-nldbl-remquo.c): Likewise.
35876         [$(subdir) = math] (CFLAGS-nldbl-rint.c): Likewise.
35877         [$(subdir) = math] (CFLAGS-nldbl-round.c): Likewise.
35878         [$(subdir) = math] (CFLAGS-nldbl-scalb.c): Likewise.
35879         [$(subdir) = math] (CFLAGS-nldbl-scalbln.c): Likewise.
35880         [$(subdir) = math] (CFLAGS-nldbl-scalbn.c): Likewise.
35881         [$(subdir) = math] (CFLAGS-nldbl-significand.c): Likewise.
35882         [$(subdir) = math] (CFLAGS-nldbl-sin.c): Likewise.
35883         [$(subdir) = math] (CFLAGS-nldbl-sincos.c): Likewise.
35884         [$(subdir) = math] (CFLAGS-nldbl-sinh.c): Likewise.
35885         [$(subdir) = math] (CFLAGS-nldbl-sqrt.c): Likewise.
35886         [$(subdir) = math] (CFLAGS-nldbl-tan.c): Likewise.
35887         [$(subdir) = math] (CFLAGS-nldbl-tanh.c): Likewise.
35888         [$(subdir) = math] (CFLAGS-nldbl-tgamma.c): Likewise.
35889         [$(subdir) = math] (CFLAGS-nldbl-trunc.c): Likewise.
35890         [$(subdir) = math] (CFLAGS-nldbl-y0.c): Likewise.
35891         [$(subdir) = math] (CFLAGS-nldbl-y1.c): Likewise.
35892         [$(subdir) = math] (CFLAGS-nldbl-yn.c): Likewise.
35894         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
35895         (INTERNAL_SYSCALL_DECL): Use __attribute__ ((unused)).
35897         [BZ #14914]
35898         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Clear
35899         whole low double instead of just low 47 bits when splitting values
35900         into two parts.
35902 2012-12-03  Allan McRae  <allan@archlinux.org>
35904         * manual/stdio.texi (Predefined Printf Handlers): Remove
35905         @hsep and @vsep usage.
35907 2012-12-03  Mike Frysinger  <vapier@gentoo.org>
35909         * bits/byteswap.h [__GNUC__]: Change __GNUC_PREREQ from 4.2 to 4.3.
35910         * sysdeps/x86/bits/byteswap.h [__GNUC__]: Likewise.
35912 2012-12-03  Jeff Law  <law@redhat.com>
35914         * time/sys/time.h (settimeofday): Do not mark TV argument
35915         as __nonnull.
35917 2012-12-01  Mike Frysinger  <vapier@gentoo.org>
35919         * libio/fileops.c (_IO_new_file_close_it): Do not always flush
35920         when currently writing and seek to current position when not.
35921         * libio/Makefile (tests): Remove bug-fclose1.
35922         * libio/bug-fclose1.c: Delete.
35924 2012-12-01  Joseph Myers  <joseph@codesourcery.com>
35926         * manual/arith.texi (feenableexcept): Fix typo.
35927         (fedisableexcept): Likewise.
35929 2012-11-30  Roland McGrath  <roland@hack.frob.com>
35931         * sysdeps/powerpc/powerpc64/entry.h (TEXT_START): Define using a
35932         second, differently-typed declaration, rather than a cast.
35934 2012-11-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
35936         * sunrpc/rpc/svc.h (__svc_accept_failed): Move declaration...
35937         * include/rpc/svc.h: ... here.
35939 2012-11-30  Aurelien Jarno  <aurel32@debian.org>
35941         [BZ #13013]
35942         * resolv/res_query.c(__libc_res_nquery): Assign hp and hp2
35943         depending n and resplen2 to catch cases where answer
35944         equals answerp2.
35946 2012-11-29  Carlos O'Donell  <carlos@systemhalted.org>
35948         * elf/get-dynamic-info.h (elf_get_dynamic_info): Warn
35949         for unsupported DF_1_* bits when DL_DEBUG_FILES is set.
35951 2012-11-29  Mike Frysinger  <vapier@gentoo.org>
35953         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c (HAS_CPUCLOCK): Delete.
35955 2012-11-29  Roland McGrath  <roland@hack.frob.com>
35957         * inet/tst-inet6_rth.c (do_test): Use a union rather than type punning.
35959 2012-11-28  Jeff Law  <law@redhat.com>
35961         [BZ #13761]
35962         * nscd/grpcache.c (cache_addgr): Rename alloca_used to
35963         dataset_temporary.  Track alloca usage into alloca_used.
35964         If dataset is large allocate and release it via malloc/free.
35966 2012-06-04  Florian Weimer  <fweimer@redhat.com>
35968         [BZ #14197]
35969         * debug/test-strcpy_chk.c: Mention __chk_fail ABI test.
35971 2012-11-28  David S. Miller  <davem@davemloft.net>
35973         * sysdeps/sparc/fpu/libm-test-ulps: Update.
35975 2012-11-28  Joseph Myers  <joseph@codesourcery.com>
35977         [BZ #14803]
35978         * sysdeps/ieee754/ldbl-96/e_asinl.c (pio2_hi): Use hex float value
35979         of pi/2 rounded to nearest to 64 bits.
35980         (pio2_lo): Use hex float value of pi/2 - pio2_hi rounded to
35981         nearest to 64 bits.
35982         (pio4_hi): Use hex float value of pi/4 rounded to nearest to 64
35983         bits.
35985 2012-11-28  Jeff Law <law@redhat.com>
35986             Martin Osvald <mosvald@redhat.com>
35988         [BZ #14889]
35989         * sunrpc/rpc/svc.h (__svc_accept_failed): New prototype.
35990         * sunrpc/svc.c: Include time.h.
35991         (__svc_accept_failed): New function.
35992         * sunrpc/svc_tcp.c (rendezvous_request): If the accept fails for
35993         any reason other than EINTR, call __svc_accept_failed.
35994         * sunrpc/svc_udp.c (svcudp_recv): Similarly.
35995         * sunrpc/svc_unix.c (rendezvous_request): Similarly.
35997 2012-11-28  Andreas Schwab  <schwab@suse.de>
35999         * scripts/abilist.awk: Also handle indirect functions in .opd
36000         section.
36002 2012-11-28  Joseph Myers  <joseph@codesourcery.com>
36004         [BZ #13881]
36005         * sysdeps/x86/fpu/powl_helper.c: New file.
36006         * sysdeps/x86/fpu/Makefile: Likewise.
36007         * sysdeps/i386/fpu/e_powl.S (limit): Remove object.
36008         (p3): New object.
36009         (__ieee754_powl): Use __powl_helper for finite arguments except
36010         integer exponents below 8.
36011         * sysdeps/x86_64/fpu/e_powl.S (limit): Remove object.
36012         (p3): New object.
36013         (__ieee754_powl): Use __powl_helper for finite arguments except
36014         integer exponents below 8.
36015         * math/libm-test.inc (pow_test): Add more tests and enable some
36016         previously disabled tests.
36017         * sysdeps/i386/fpu/libm-test-ulps: Update.
36018         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
36020 2012-11-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
36021             Carlos O'Donell  <carlos_odonell@mentor.com>
36023         * nss/makedb.c (is_prime): Assert that input is odd and greater
36024         than 4.  Note that fact in a comment too.
36025         (next_prime): Add 4 to input.
36027 2012-11-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
36029         [BZ #11741]
36030         * libio/Makefile (tests): Add test case tst-fwrite-error.
36031         * libio/iofwrite.c (_IO_fwrite): Return 0 on EOF.
36032         * libio/iofwrite_u.c (fwrite_unlocked): Likewise.
36033         * libio/tst-fwrite-error.c: New test case.
36035 2012-11-26  H.J. Lu  <hongjiu.lu@intel.com>
36037         * elf/dl-load.c (_dl_map_object_from_fd): Cast to uintptr_t
36038         before casting to void *.
36039         * include/libc-internal.h (__pointer_type): New macro.
36040         (__integer_if_pointer_type_sub): Likewise.
36041         (__integer_if_pointer_type): Likewise.
36042         (cast_to_integer): Likewise.
36043         * sysdeps/x86_64/bits/atomic.h: Include <libc-internal.h>.
36044         (__arch_c_compare_and_exchange_val_64_acq): Use cast_to_integer
36045         before casting to atomic64_t.
36046         (atomic_exchange_acq): Likewise.
36047         (__arch_exchange_and_add_body): Likewise.
36048         (__arch_add_body): Likewise.
36049         (atomic_add_negative): Likewise.
36050         (atomic_add_zero): Likewise.
36052 2012-11-26  Joseph Myers  <joseph@codesourcery.com>
36054         * sysdeps/generic/unwind-dw2-fde.c (get_pc_begin): New function.
36055         (fde_unencoded_compare): Use get_pc_begin instead of type-punning.
36056         (add_fdes): Likewise.
36057         (linear_search_fdes): Likewise.
36058         (binary_search_unencoded_fdes): Likewise.
36060 2012-11-26  Andreas Schwab  <schwab@linux-m68k.org>
36062         * elf/sotruss.ksh: Correctly locate argument of -F and -T options.
36064 2012-11-24  Adam Conrad  <adconrad@0c3.net>
36066         * configure.in: Autodetect C++ header directories.
36067         * configure: Regenerated.
36069 2012-11-23  Mike Frysinger  <vapier@gentoo.org>
36071         * elf/Makefile ($(objpfx)ld.so): Change readelf to $(READELF).
36073 2012-11-23  Andreas Schwab  <schwab@linux-m68k.org>
36075         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
36077 2012-11-22  Joseph Myers  <joseph@codesourcery.com>
36079         * math/libm-test.inc (fma_test_towardzero) [TEST_LDOUBLE &&
36080         LDBL_MANT_DIG == 106]: Disable some tests.
36081         (fma_test_downward) [TEST_LDOUBLE && LDBL_MANT_DIG == 106]:
36082         Likewise.
36083         (fma_test_upward) [TEST_LDOUBLE && LDBL_MANT_DIG == 106]:
36084         Likewise.
36086         [BZ #14871]
36087         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c (__atanl): Return the
36088         input for small inputs.  Return +/- pi/2 for large inputs.
36089         * math/libm-test.inc (atan_test): Add more tests.
36091         * sysdeps/generic/unwind-dw2-fde-glibc.c
36092         (_Unwind_IteratePhdrCallback): Declare P_DYNAMIC with
36093         __attribute__ ((unused)).
36095         [BZ #14645]
36096         * sysdeps/ieee754/ldbl-128ibm/s_fmal.c (__fmal): Compute result as
36097         x * y if x and y are nonzero and z is zero.
36099         [BZ #14811]
36100         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Saturate
36101         nonzero exponents with absolute value below 0x1p-117 to +/-
36102         0x1p-117.
36104         [BZ #14869]
36105         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Scale
36106         up arguments below 2**-450, not just those below 2**-500.
36107         * math/libm-test.inc (hypot_test): Add another test.
36109         [BZ #14868]
36110         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl):
36111         Return a+b for ratio over 2**120, not 2**60.
36112         * math/libm-test.inc (hypot_test): Add another test.
36114         * math/libm-test.inc (clog_test): Use
36115         UNDERFLOW_EXCEPTION_LDOUBLE_IBM on two tests.
36116         (clog10_test): Likewise.
36118         [BZ #6778]
36119         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (big): Change to 1e290L.
36121 2012-11-22  Andreas Schwab  <schwab@suse.de>
36123         * sysdeps/i386/fpu/libm-test-ulps: Update.
36125 2012-11-22  Pino Toscano  <toscano.pino@tiscali.it>
36127         * sysdeps/x86_64/multiarch/test-multiarch.c (get_cpuinfo): Terminate
36128         printf output with newline.
36130 2012-11-21  H.J. Lu  <hongjiu.lu@intel.com>
36132         [BZ #14865]
36133         * aclocal.m4 (LIBC_LINKER_FEATURE): New macro.
36134         * configure.in: Use LIBC_LINKER_FEATURE to check -z nodelete,
36135         -z nodlopen, -z initfirst and -z execstack support.
36136         * configure: Regenerated.
36138         * elf/elf.h (DF_1_NODIRECT): New macro.
36139         (DF_1_IGNMULDEF): Likewise.
36140         (DF_1_NOKSYMS): Likewise.
36141         (DF_1_NOHDR): Likewise.
36142         (DF_1_EDITED): Likewise.
36143         (DF_1_NORELOC): Likewise.
36144         (DF_1_SYMINTPOSE): Likewise.
36145         (DF_1_GLOBAUDIT): Likewise.
36146         (DF_1_SINGLETON): Likewise.
36147         * elf/get-dynamic-info.h (elf_get_dynamic_info): Assert
36148         DT_1_SUPPORTED_MASK bits.
36149         * include/elf.h (DT_1_SUPPORTED_MASK): New macro.
36151 2012-11-20  Carlos O'Donell  <carlos_odonell@mentor.com>
36153         * sysdeps/unix/make-syscalls.sh: Document prefixes.
36155 2012-11-20  Thomas Schwinge  <thomas@codesourcery.com>
36157         * sysdeps/sh/dl-machine.h (ELF_MACHINE_RUNTIME_FIXUP_PARAMS): New
36158         macro.
36160         * sysdeps/unix/sysv/linux/bits/socket.h (struct mmsghdr, recvmmsg)
36161         (sendmmsg): Move declarations...
36162         * socket/sys/socket.h: ... here.
36163         * sysdeps/unix/sysv/linux/recvmmsg.c [!defined __NR_recvmmsg &&
36164         !defined __NR_socketcall] (recvmmsg): Move ENOSYS stub into and
36165         include it from...
36166         * socket/recvmmsg.c: ... this new file.
36167         * sysdeps/unix/sysv/linux/internal_sendmmsg.S [__ASSUME_SENDMMSG]
36168         (sendmmsg): Rename to __sendmmsg, create weak alias and make
36169         definition of __sendmmsg hidden.
36170         * sysdeps/unix/sysv/linux/sendmmsg.c (sendmmsg): Likewise.
36171         [!defined __NR_sendmmsg && !defined __NR_socketcall] (sendmmsg):
36172         Move ENOSYS stub into and include it from...
36173         * socket/sendmmsg.c: ... this new file.
36174         * sysdeps/unix/sysv/linux/Makefile [subdir=socket]
36175         (sysdep_routines): Move recvmmsg and sendmmsg...
36176         * socket/Makefile (routines): ... here.
36177         * socket/Versions (GLIBC_2.17): Add recvmmsg and sendmmsg.
36178         (GLIBC_PRIVATE): Add __sendmmsg.
36179         * include/sys/socket.h (__sendmmsg): Add declarations.
36180         * resolv/res_send.c (send_dg): Invoke __sendmmsg instead of
36181         sendmmsg.
36183 2012-11-20  Joseph Myers  <joseph@codesourcery.com>
36185         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl): Mark
36186         variable I1 with __attribute__ ((unused)).
36187         * sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
36189 2012-11-19  Joseph Myers  <joseph@codesourcery.com>
36191         * stdio-common/_itowa.c (_itowa) [BITS_PER_MP_LIMB == 64]: Declare
36192         DUMMY variables with __attribute__ ((unused)).
36194         * bits/byteswap.h: Include <bits/types.h>.
36195         (__bswap_64): Use __uint64_t instead of unsigned long long int.
36197 2012-11-19  Pino Toscano  <toscano.pino@tiscali.it>
36199         * sysdeps/mach/hurd/ptsname.c (ptsname): Change the type of PEERNAME to
36200         string_t.  Do not manually set errno.
36201         (__ptsname_r): Change the type of PEERNAME to string_t, and check its
36202         length with __strnlen.  Make sure to both set errno and return it on
36203         failure.
36205 2012-11-19  David S. Miller  <davem@davemloft.net>
36207         With help from Joseph Myers.
36208         * sysdeps/ieee754/ldbl-128/s_atanl.c (__atanl): Handle tiny and
36209         very large arguments properly.
36210         * math/libm-test.inc (atan_test): New tests.
36211         (atan2_test): New tests.
36212         * sysdeps/sparc/fpu/libm-test-ulps: Update.
36213         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
36215 2012-11-19  Joseph Myers  <joseph@codesourcery.com>
36217         [BZ #14856]
36218         * posix/bits/posix1_lim.h [!__USE_XOPEN2K] (_POSIX_TZNAME_MAX):
36219         Define to 3.
36221         * conform/data/errno.h-data [POSIX] (EADDRINUSE): Do not expect.
36222         [POSIX] (EADDRNOTAVAIL): Likewise.
36223         [POSIX] (EAFNOSUPPORT): Likewise.
36224         [POSIX] (EALREADY): Likewise.
36225         [POSIX] (ECONNABORTED): Likewise.
36226         [POSIX] (ECONNREFUSED): Likewise.
36227         [POSIX] (ECONNRESET): Likewise.
36228         [POSIX] (EDESTADDRREQ): Likewise.
36229         [POSIX] (EDQUOT): Likewise.
36230         [POSIX] (EHOSTUNREACH): Likewise.
36231         [POSIX] (EIDRM): Likewise.
36232         [POSIX] (EISCONN): Likewise.
36233         [POSIX] (ELOOP): Likewise.
36234         [POSIX] (EMULTIHOP): Likewise.
36235         [POSIX] (ENETDOWN): Likewise.
36236         [POSIX] (ENETUNREACH): Likewise.
36237         [POSIX] (ENOBUFS): Likewise.
36238         [POSIX] (ENODATA): Likewise.
36239         [POSIX] (ENOLINK): Likewise.
36240         [POSIX] (ENOMSG): Likewise.
36241         [POSIX] (ENOPROTOOPT): Likewise.
36242         [POSIX] (ENOSR): Likewise.
36243         [POSIX] (ENOSTR): Likewise.
36244         [POSIX] (ENOTCONN): Likewise.
36245         [POSIX] (ENOTSOCK): Likewise.
36246         [POSIX] (EOPNOTSUPP): Likewise.
36247         [POSIX] (EOVERFLOW): Likewise.
36248         [POSIX] (EPROTO): Likewise.
36249         [POSIX] (EPROTONOSUPPORT): Likewise.
36250         [POSIX] (EPROTOTYPE): Likewise.
36251         [POSIX] (ESTALE): Likewise.
36252         [POSIX] (ETIME): Likewise.
36253         [POSIX] (ETXTBSY): Likewise.
36254         [POSIX] (EWOULDBLOCK): Likewise.
36255         [!ISO && !ISO99 && !ISO11] (E*): Do not allow.
36256         * conform/data/fcntl.h-data [POSIX] (SEEK_SET): Allow.
36257         [POSIX] (SEEK_CUR): Likewise.
36258         [POSIX] (SEEK_END): Likewise.
36259         [POSIX || UNIX98] (mode_t): Do not require.
36260         [POSIX] (off_t): Likewise.
36261         [POSIX] (pid_t): Likewise.
36262         [POSIX] (sys/stat.h): Do not allow header.
36263         [POSIX] (unistd.h): Likewise.
36264         [!ISO && !ISO99 && !ISO11] (timespec): Do not allow.
36265         [!ISO && !ISO99 && !ISO11] (tv_nsec): Likewise.
36266         [!ISO && !ISO99 && !ISO11] (tv_sec): Likewise.
36267         * conform/data/locale.h-data [POSIX] (LC_MESSAGES): Do not
36268         require.
36269         * conform/data/mqueue.h-data [!ISO && !ISO99 && !ISO11] (struct
36270         sigevent): Specify elements.
36271         [XOPEN2K8 || POSIX2008] (struct sigevent): Remove duplicate type
36272         entry.
36273         [!ISO && !ISO99 && !ISO11] (mq_*): Allow.
36274         [!ISO && !ISO99 && !ISO11] (MQ_*): Likewise.
36276         * conform/data/cpio.h-data [POSIX]: Disable whole file.
36277         * conform/data/glob.h-data [POSIX] (GLOB_NOSYS): Do not expect.
36278         * conform/data/limits.h-data [!ISO && !ISO99 && !ISO11]
36279         (AIO_LIST_MAX): Change to AIO_LISTIO_MAX.
36280         [!ISO && !ISO99 && !ISO11] (ATEXT_MAX): Remove.
36281         [!ISO && !ISO99 && !ISO11 && !POSIX && !XPG3] (ATEXIT_MAX): Allow.
36282         [POSIX || POSIX2008 || XPG3] (IOV_MAX): Do not allow.
36283         [POSIX || POSIX2008 || XPG3] (_XOPEN_IOV_MAX): Likewise.
36284         [!ISO && !ISO99 && !ISO11] (MQ_PRIO_MAX): Allow.
36285         [!ISO && !ISO99 && !ISO11] (RE_DUP_MAX): Remove duplicate entry.
36286         [POSIX || XPG3 || XPG4 || UNIX98] (SS_REPL_MAX): Do not allow.
36287         [POSIX || XPG3 || XPG4 || UNIX98] (SYMLOOP_MAX): Likewise.
36288         [POSIX || XPG3 || XPG4] (FILESIZEBITS): Likewise.
36289         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_ALLOC_SIZE_MIN):
36290         Likewise.
36291         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_INCR_XFER_SIZE):
36292         Likewise.
36293         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_MAX_XFER_SIZE):
36294         Likewise.
36295         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_XFER_ALIGN):
36296         Likewise.
36297         [POSIX || XPG3 || XPG4 || UNIX98] (SYMLINK_MAX): Likewise.
36298         [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SS_REPL_MAX): Likewise.
36299         [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SYMLINK_MAX): Likewise.
36300         [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SYMLOOP_MAX): Likewise.
36301         [!ISO && !ISO99 && !ISO11] (BC_BASE_MAX): Use macro-constant.
36302         Specify lower bound on value.
36303         [!ISO && !ISO99 && !ISO11] (BC_DIM_MAX): Likewise.
36304         [!ISO && !ISO99 && !ISO11] (BC_SCALE_MAX): Likewise.
36305         [!ISO && !ISO99 && !ISO11] (BC_STRING_MAX): Likewise.
36306         [!ISO && !ISO99 && !ISO11] (COLL_WEIGHTS_MAX): Likewise.
36307         [!ISO && !ISO99 && !ISO11] (EXPR_NEST_MAX): Likewise.
36308         [!ISO && !ISO99 && !ISO11] (RE_DUP_MAX): Likewise
36309         [POSIX || XPG3 || XPG4] (CHARCLASS_NAME_MAX): Do not allow.
36310         [!ISO && !ISO99 && !ISO11] (_POSIX_CLOCKRES_MIN): Specify exact
36311         value.
36312         [!ISO && !ISO99 && !ISO11] (_POSIX_AIO_LISTIO_MAX): Do not specify
36313         as optional.
36314         [!ISO && !ISO99 && !ISO11] (_POSIX_AIO_MAX): Likewise.
36315         [!ISO && !ISO99 && !ISO11] (_POSIX_ARG_MAX): Likewise.
36316         [!ISO && !ISO99 && !ISO11] (_POSIX_CHILD_MAX): Likewise.
36317         [!ISO && !ISO99 && !ISO11] (_POSIX_DELAYTIMER_MAX): Likewise.
36318         [!ISO && !ISO99 && !ISO11] (_POSIX_LINK_MAX): Likewise.
36319         [!ISO && !ISO99 && !ISO11] (_POSIX_LOGIN_NAME_MAX): Likewise.
36320         [!ISO && !ISO99 && !ISO11] (_POSIX_MAX_CANON): Likewise.
36321         [!ISO && !ISO99 && !ISO11] (_POSIX_MAX_INPUT): Likewise.
36322         [!ISO && !ISO99 && !ISO11] (_POSIX_MQ_OPEN_MAX): Likewise.
36323         [!ISO && !ISO99 && !ISO11] (_POSIX_MQ_PRIO_MAX): Likewise.
36324         [!ISO && !ISO99 && !ISO11] (_POSIX_NAME_MAX): Likewise.
36325         [!ISO && !ISO99 && !ISO11] (_POSIX_NGROUPS_MAX): Likewise.
36326         [!ISO && !ISO99 && !ISO11] (_POSIX_OPEN_MAX): Likewise.
36327         [!ISO && !ISO99 && !ISO11] (_POSIX_PATH_MAX): Likewise.
36328         [!ISO && !ISO99 && !ISO11] (_POSIX_PIPE_BUF): Likewise.
36329         [!ISO && !ISO99 && !ISO11] (_POSIX2_RE_DUP_MAX): Remove duplicate
36330         entry.
36331         [!ISO && !ISO99 && !ISO11] (_POSIX_RTSIG_MAX): Do not specify as
36332         optional.
36333         [!ISO && !ISO99 && !ISO11] (_POSIX_SEM_NSEMS_MAX): Likewise.
36334         [!ISO && !ISO99 && !ISO11] (_POSIX_SEM_VALUE_MAX): Likewise.
36335         [!ISO && !ISO99 && !ISO11] (_POSIX_SIGQUEUE_MAX): Likewise.
36336         [!ISO && !ISO99 && !ISO11] (_POSIX_SSIZE_MAX): Likewise.
36337         [!ISO && !ISO99 && !ISO11] (_POSIX_STREAM_MAX): Likewise.
36338         [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_DESTRUCTOR_ITERATIONS):
36339         Likewise.
36340         [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_KEYS_MAX): Likewise.
36341         [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_THREADS_MAX): Likewise.
36342         [!ISO && !ISO99 && !ISO11] (_POSIX_TIMER_MAX): Likewise.
36343         [!ISO && !ISO99 && !ISO11] (_POSIX_TTY_NAME_MAX): Likewise.
36344         [!ISO && !ISO99 && !ISO11] (_POSIX_TZNAME_MAX): Likewise.  Give
36345         value as 3 for [POSIX || XPG3 || XPG4 || UNIX98].
36346         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_BASE_MAX): Do not specify
36347         as optional.
36348         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_DIM_MAX): Likewise.
36349         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_SCALE_MAX): Likewise.
36350         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_STRING_MAX): Likewise.
36351         [!ISO && !ISO99 && !ISO11] (_POSIX2_CHARCLASS_NAME_MAX):
36352         Likewise.  Do not allow for [POSIX || XPG3 || XPG4 || UNIX98].
36353         [!ISO && !ISO99 && !ISO11] (_POSIX2_COLL_WEIGHTS_MAX): Do not
36354         specify as optional.
36355         [!ISO && !ISO99 && !ISO11] (_POSIX2_EXPR_NEST_MAX): Likewise.
36356         [!ISO && !ISO99 && !ISO11] (_POSIX2_LINE_MAX): Likewise.
36357         [!ISO && !ISO99 && !ISO11] (_POSIX2_RE_DUP_MAX): Likewise.
36358         [POSIX || POSIX2008 || XPG3] (_XOPEN_IOV_MAX): Do not allow.
36359         [POSIX || XPG3] (NL_ARGMAX): Do not allow.
36360         [XPG3] (NL_LANGMAX): Likewise.
36361         [POSIX || XPG3] (NL_MSGMAX): Likewise.
36362         [POSIX || XPG3] (NL_NMAX): Likewise.
36363         [POSIX || XPG3] (NL_SETMAX): Likewise.
36364         [POSIX || XPG3] (NL_TEXTMAX): Likewise.
36365         [XPG3] (NZERO): Likewise.
36366         [XPG4 || UNIX98] (TMP_MAX): Only enable for these conditions.
36367         [POSIX || XPG3 || XPG4 || UNIX98] (*_MIN): Do not allow.
36368         [!ISO && !ISO99 && !ISO11] (*_t): Allow.
36369         * conform/data/regex.h-data [!ISO && !ISO99 && !ISO11]
36370         (REG_ERANGE): Expect.
36371         * conform/data/stdio.h-data [POSIX] (L_cuserid): Use
36372         optional-constant.
36373         [POSIX || XOPEN2K || XOPEN2K8 || POSIX2008] (getchar_unlocked):
36374         Use (void) in prototype.
36375         [POSIX] (*_t): Allow.
36376         * conform/data/sys/times.h-data [POSIX]: Enable whole file.
36377         * conform/data/wordexp.h-data [!ISO && !ISO99 && !ISO11]
36378         (WRDE_BADVAL): Expect.
36380         * conform/data/fcntl.h-data [XPG3 || XPG4] (O_DSYNC): Do not
36381         expect.
36382         [XPG3 || XPG4] (O_RSYNC): Likewise.
36383         * conform/data/signal.h-data [XPG3 || XPG4] (pthread_kill):
36384         Likewise.
36385         [XPG3 || XPG4] (pthread_sigmask): Likewise.
36386         [XPG3 || XPG4] (sigqueue): Likewise.
36387         [XPG3 || XPG4] (sigtimedwait): Likewise.
36388         [XPG3 || XPG4] (sigwaitinfo): Likewise.
36389         * conform/data/stdio.h-data [XPG3 || XPG4] (snprintf): Likewise.
36390         [XPG3 || XPG4] (vsnprintf): Likewise.
36391         * conform/data/sys/stat.h-data [XPG3 || XPG4] (blkcnt_t):
36392         Likewise.
36393         [XPG3 || XPG4] (blksize_t): Likewise.
36394         * conform/data/time.h-data [XPG3 || XPG4] (struct timespec):
36395         Likewise.
36396         [XPG3 || XPG4] (CLOCK_PROCESS_CPUTIME_ID): Likewise.
36397         [XPG3 || XPG4] (CLOCK_THREAD_CPUTIME_ID): Likewise.
36398         [XPG3 || XPG4] (struct itimerspec): Likewise.
36399         [XPG3 || XPG4] (CLOCK_REALTIME): Likewise.
36400         [XPG3 || XPG4] (TIMER_ABSTIME): Likewise.
36401         [XPG3 || XPG4] (CLOCK_MONOTONIC): Likewise.
36402         [XPG3 || XPG4] (clockid_t): Likewise.
36403         [XPG3 || XPG4] (timer_t): Likewise.
36404         [XPG3 || XPG4] (clock_getres): Likewise.
36405         [XPG3 || XPG4] (clock_gettime): Likewise.
36406         [XPG3 || XPG4] (clock_settime): Likewise.
36407         [XPG3 || XPG4] (nanosleep): Likewise.
36408         [XPG3 || XPG4] (timer_create): Likewise.
36409         [XPG3 || XPG4] (timer_delete): Likewise.
36410         [XPG3 || XPG4] (timer_gettime): Likewise.
36411         [XPG3 || XPG4] (timer_getoverrun): Likewise.
36412         [XPG3 || XPG4] (timer_settime): Likewise.
36413         * conform/data/unistd.h-data [XPG3 || XPG4] (fdatasync): Likewise.
36414         [XPG3 || XPG4] (getlogin_r): Likewise.
36415         [XPG3 || XPG4] (pread): Likewise.
36416         [XPG3 || XPG4] (pthread_atfork): Likewise.
36417         [XPG3 || XPG4] (pwrite): Likewise.
36419         [BZ #14835]
36420         * signal/signal.h [__USE_XOPEN_EXTENDED]: Include
36421         <bits/siginfo.h>.
36423 2012-11-19  Pino Toscano  <toscano.pino@tiscali.it>
36425         * malloc/mtrace.c (muntrace): Reset MALLSTREAM and the hooks before
36426         finalizing MALLSTREAM.
36428         * sysdeps/mach/hurd/syncfs.c: New file.
36430 2012-11-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
36432         [BZ #14719]
36433         * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Set h_errno to
36434         NETDB_INTERNAL when NSS_STATUS_UNAVAIL.
36435         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Set
36436         h_errno to NETDB_INTERNAL when errno is EMFILE or ENFILE.
36437         (_nss_dns_gethostbyname4_r): Likewise.
36438         * sysdeps/posix/getaddrinfo.c (gaih_inet): Set result to
36439         EAI_SYSTEM if NSS_STATUS_UNAVAIL.
36441 2012-11-19  Peng Haitao  <penght@cn.fujitsu.com>
36443         [BZ #13763]
36444         * sunrpc/bindrsvprt.c: Add lock to protect static variable.
36446 2012-11-19  Steve McIntyre  <steve.mcintyre@linaro.org>
36448         * sysdeps/generic/ldconfig.h (FLAG_AARCH64_LIB64): New macro.
36449         * elf/cache.c (print_entry): Print ",AArch64" for
36450         FLAG_AARCH64_LIB64
36452         * sysdeps/generic/ldconfig.h (FLAG_ARM_LIBHF): New macro.
36453         * elf/cache.c (print_entry): Print ",hard-float" for
36454         FLAG_ARM_LIBHF.
36456 2012-11-18  David S. Miller  <davem@davemloft.net>
36458         With help from Joseph Myers.
36459         * sysdeps/ieee754/flt-32/e_j0f.c (__ieee754_y0f): Adjust tinyness
36460         cutoff to 2**-13.
36461         * sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_y1f): Adjust tinyness
36462         cutoff to 2**-25.
36463         * sysdeps/ieee754/ldbl-128/e_j0l.c (U0): New constant.
36464         ( __ieee754_y0l): Avoid arithmetic underflow when 'x' is very
36465         small.
36466         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_y1l): Likewise.
36467         * math/libm-test.inc (y0_test): New tests.
36468         (y1_test): New tests.
36469         * sysdeps/i386/fpu/libm-test-ulps: Update.
36470         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
36471         * sysdeps/sparc/fpu/libm-test-ulps: Update.
36473 2012-11-18  Andreas Schwab  <schwab@linux-m68k.org>
36475         * configure.in (libc_cv_ld_gnu_indirect_function): Use .quad on
36476         64-bit targets.
36477         * configure: Regenerated.
36479 2012-11-17  David S. Miller  <davem@davemloft.net>
36481         [BZ #14811]
36482         * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Saturate
36483         nonzero exponents with absolute value below 0x1p-128 to +/-
36484         0x1p-128.
36486 2012-11-17  Joseph Myers  <joseph@codesourcery.com>
36488         * sysdeps/unix/sysv/linux/fxstatat.c: Include <string.h>.
36490         * elf/dl-runtime.c [!ELF_MACHINE_NO_PLT]: Make code unconditional.
36492         * posix/getconf-speclist.c: New file.
36493         * posix/posix-envs.def: Likewise.
36494         * posix/confstr.c (START_ENV_GROUP): New macro.
36495         (END_ENV_GROUP): Likewise.
36496         (KNOWN_ABSENT_ENVIRONMENT): Likewise.
36497         (KNOWN_PRESENT_ENV_STRING): Likewise.
36498         (KNOWN_PRESENT_ENVIRONMENT): Likewise.
36499         (UNKNOWN_ENVIRONMENT): Likewise.
36500         (confstr): Include posix-envs.def instead of handling
36501         _CS_V7_WIDTH_RESTRICTED_ENVS, _CS_V6_WIDTH_RESTRICTED_ENVS and
36502         _CS_V5_WIDTH_RESTRICTED_ENVS directly here.
36503         * sysdeps/posix/sysconf.c (START_ENV_GROUP): New macro.
36504         (END_ENV_GROUP): Likewise.
36505         (KNOWN_ABSENT_ENVIRONMENT): Likewise.
36506         (KNOWN_PRESENT_ENVIRONMENT): Likewise.
36507         (UNKNOWN_ENVIRONMENT): Likewise.
36508         (__sysconf): Include posix-envs.def instead of handling associated
36509         cases directly here.
36510         * posix/Makefile ($(objpfx)getconf.speclist): Generate by
36511         preprocessing getconf-speclist.c rather than running getconf or
36512         generating empty file.
36514 2012-11-16  Pino Toscano  <toscano.pino@tiscali.it>
36516         * scripts/check-local-headers.sh: Ignore 'mach' headers.
36518 2012-11-16  Andrej Lajovic  <natrij@gmail.com>
36520         [BZ #14672]
36521         * iconv/iconv_prog.c (main): Fix -c handling of '/'.
36523 2012-11-16  David S. Miller  <davem@davemloft.net>
36525         * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl): If xm1 is
36526         smaller than LDBL_EPSILON/2.0L, just return xm1.
36528 2012-11-16  H.J. Lu  <hongjiu.lu@intel.com>
36530         * elf/tst-array1.c (init): Set constructor priority to 1000.
36531         (fini): Set destructor priority to 1000.
36532         * elf/tst-array2dep.c: Likewise.
36534 2012-11-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
36536         [BZ #11741]
36537         * libio/fileops.c (_IO_new_file_write): Correctly return error.
36538         (_IO_new_file_xsputn): Also return EOF if none of the input
36539         data was written when overflow failed.
36540         * libio/iopadn.c (_IO_padn): Likewise.
36541         * libio/iowpadn.c (_IO_wpadn): Likewise.
36542         * stdio-common/tst-put-error.c: Add copyright notice.
36543         (do_test): Add case for printing padded string.
36544         * stdio-common/vfprintf [!COMPILE_WPRINTF] (PAD): Flag error if
36545         _IO_padn returned error.
36546         [COMPILE_WPRINTF] (PAD): Flag error if _IO_wpadn returned error.
36547         * libio/libioP.h (_IO_xsputn_t): Note in comment that xsputn can
36548         return EOF.
36550 2012-11-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
36552         * libio/libioP.h: Add comment note that the references to C++
36553         bits are now obsolete.
36555 2012-11-15  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
36557         * math/libm-test.inc (check_complex): Use asprintf.
36559 2012-11-14  Joseph Myers  <joseph@codesourcery.com>
36561         * debug/pcprofiledump.c (print_version): Update copyright year.
36562         * malloc/memusagestat.c (print_version): Likewise.
36564 2012-11-14  H.J. Lu  <hongjiu.lu@intel.com>
36566         [BZ #14831]
36567         * elf/Makefile (tests): Add tst-audit8.
36568         ($(objpfx)tst-audit8): Also depend on $(common-objpfx)math/libm.so.
36569         ($(objpfx)tst-audit8.out): New target.
36570         (tst-audit8-ENV): New variable.
36571         * elf/dl-runtime.c (_dl_profile_fixup): Call _dl_fixup to skip
36572         audit if l_reloc_result is NULL.
36573         (ELF_MACHINE_RUNTIME_FIXUP_PARAMS): Issue an error if it isn't
36574         defined and ELF_MACHINE_RUNTIME_FIXUP_ARGS is defined.
36575         * elf/tst-audit8.c: New file.
36577 2012-11-14  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
36579         * io/Makefile (CFLAGS-open.c, CFLAGS-open64.c): Define.
36580         * misc/Makefile (CFLAGS-select.c): Define.
36581         * posix/Makefile (CFLAGS-pause.c): Define.
36583 2012-11-13  David S. Miller  <davem@davemloft.net>
36585         * crypt/Makefile: Move test targets after toplevel Rules
36586         inclusion.  Grab any necessary sysdep routines when linking.
36587         * crypt/md5.c (md5_process_block): Remove define, we will always
36588         name it __md5_process_block.
36589         (md5_finish_ctx): Update md5_process_block call.
36590         (md5_stream): Likewise.
36591         (md5_process_bytes): Likewise.
36592         (md5_process_block): Rename to __md5_process_block and move to ...
36593         * crypt/md5-block.c: ... here.
36594         * crypt/sha256.c (sha256_process_block): Move to ...
36595         * crypt/sha256-block.c: ... here.
36596         * crypt/sha512.c (sha512_process_block): Move to ...
36597         * crypt/sha512-block.c: ... here.
36598         * locale/Makefile (CFLAGS-md5.c): Define to add crypt/ to include
36599         path.
36600         * sysdeps/sparc/sparc-ifunc.c (sparc_libc_ifunc): Define.
36601         * sysdeps/sparc/sparc64/multiarch/Makefile
36602         (libcrypt-sysdep_routines): Add crypto assembler sysdeps when in
36603         crypt subdir.
36604         (localedef-aux): Add md5 crypto assembler when in locale subdir.
36605         * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Mirror sparc64
36606         multiarch changes.
36607         * sysdeps/sparc/sparc64/multiarch/md5-block.c: New file.
36608         * sysdeps/sparc/sparc64/multiarch/md5-crop.S: New file.
36609         * sysdeps/sparc/sparc64/multiarch/sha256-block.c: New file.
36610         * sysdeps/sparc/sparc64/multiarch/sha256-crop.S: New file.
36611         * sysdeps/sparc/sparc64/multiarch/sha512-block.c: New file.
36612         * sysdeps/sparc/sparc64/multiarch/sha512-crop.S: New file.
36613         * sysdeps/sparc/sparc32/sparcv9/multiarch/md5-block.c: New file.
36614         * sysdeps/sparc/sparc32/sparcv9/multiarch/md5-crop.S: New file.
36615         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-block.c: New
36616         file.
36617         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-crop.S: New file.
36618         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-block.c: New
36619         file.
36620         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-crop.S: New file.
36622 2012-11-13  Joseph Myers  <joseph@codesourcery.com>
36624         * timezone/tzselect.ksh: Update from tzcode git revision
36625         a435f9f0ecafa56d9e0263835836bd0c64cd7307.
36626         * timezone/zdump.c: Likewise.
36627         * timezone/zic.c: Likewise.
36628         * timezone/Makefile ($(objpfx)version.h): Only include $(version)
36629         in TZVERSION setting, not $(PKGVERSION).
36630         ($(objpfx)tzselect): Likewise.  Also substitute PKGVERSION and
36631         REPORT_BUGS_TO settings.
36633         [BZ #14838]
36634         * resolv/netdb.h [__USE_XOPEN_EXTENDED] (IPPORT_RESERVED): Define
36635         macro.
36637 2012-11-13  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
36639         * soft-fp/op-common.h (_FP_PACK_SEMIRAW): Move underflow
36640         detection to immediately after _FP_ROUND().
36641         * soft-fp/soft-fp.h (_FP_ROUND): Don't round if working
36642         bits are 0.
36644 2012-11-11  David S. Miller  <davem@davemloft.net>
36646         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: Include
36647         inttypes.h
36648         (__get_clockfreq_via_proc_openprom): Use __open, __read, and
36649         __close rather than their public counterparts.
36651 2012-11-10  Joseph Myers  <joseph@codesourcery.com>
36653         * conform/data/semaphore.h-data [XPG3 || XPG4]: Disable whole
36654         file.
36655         [UNIX98] (sem_timedwait): Do not expect.
36656         * conform/data/sys/socket.h-data [XPG3]: Disable whole file.
36657         [XPG4 || UNIX98] (sockatmark): Do not expect.
36658         * conform/data/time.h-data [XPG3 || XPG4 || UNIX98]
36659         (clock_getcpuclockid): Do not expect.
36660         [XPG3 || XPG4 || UNIX98] (clock_nanosleep): Do not expect.
36661         * conform/data/unistd.h-data [XPG3 || XPG4 || UNIX98] (setegid):
36662         Do not expect.
36663         [XPG3 || XPG4 || UNIX98] (seteuid): Likewise.
36664         * conform/data/wchar.h-data [UNIX98] (vfwscanf): Do not expect.
36665         [UNIX98] (vwscanf): Likewise.
36666         [UNIX98] (vswscanf): Likewise.
36668 2012-11-09  Joseph Myers  <joseph@codesourcery.com>
36670         * timezone/version.h: Remove file.
36671         * timezone/README: Do not refer to version.h.
36672         * timezone/Makefile ($(objpfx)zic.o): New dependency on
36673         $(objpfx)version.h.
36674         ($(objpfx)zdump.o): Likewise.
36675         ($(objpfx)version.h): New target.
36677         * timezone/tzselect.ksh: Change to verbatim copy from tzcode
36678         2012i.
36679         * timezone/README: Don't mention modification to tzselect.ksh.
36680         * timezone/Makefile ($(objpfx)tzselect): Update substitutions to
36681         work on unmodified tzselect.ksh.  Substitute version numbers in
36682         tzselect.ksh.
36684         * Makefile (format-me): Remove.
36685         (INSTALL): Adjust indentation.  Use commands directly instead of
36686         using $(format-me).
36688         * aclocal.m4 (ACX_PKGVERSION): New macro.
36689         (ACX_BUGURL): Likewise.
36690         * configure.in: Use ACX_PKGVERSION and ACX_BUGURL.
36691         (PKGVERSION): New AC_DEFINE_UNQUOTED.
36692         (REPORT_BUGS_TO): Likewise.
36693         * configure: Regenerated.
36694         * config.h.in (PKGVERSION): New macro.
36695         (REPORT_BUGS_TO): Likewise.
36696         * config.make.in (PKGVERSION): New variable.
36697         (PKGVERSION_TEXI): Likewise.
36698         (REPORT_BUGS_TO): Likewise.
36699         (REPORT_BUGS_TEXI): Likewise.
36700         * Makefile (format-me): Use -I$(common-objpfx)manual.
36701         (INSTALL): Depend on $(common-objpfx)manual/pkgvers.texi.
36702         ($(common-objpfx)manual/%): New target.
36703         (manual/%): Remove target.
36704         * catgets/gencat.c (more_help): Use REPORT_BUGS_TO.
36705         (print_version): Use PKGVERSION.
36706         * csu/version.c (banner): Use PKGVERSION and REPORT_BUGS_TO.
36707         * debug/Makefile ($(objpfx)catchsegv): Also substitute PKGVERSION
36708         and REPORT_BUGS_TO.
36709         ($(objpfx)xtrace): Likewise.
36710         * debug/catchsegv.sh: Use PKGVERSION and REPORT_BUGS_TO.
36711         * debug/pcprofiledump.c (more_help): Use REPORT_BUGS_TO.
36712         (print_version): Use PKGVERSION.
36713         * debug/xtrace.sh (do_help): Use REPORT_BUGS_TO.
36714         (do_version): Use PKGVERSION.
36715         * elf/Makefile ($(objpfx)sotruss): Also substitute PKGVERSION and
36716         REPORT_BUGS_TO.
36717         (common-ldd-rewrite): Likewise.
36718         * elf/dl-close.c (_dl_close_worker): Use REPORT_BUGS_TO.
36719         * elf/ldconfig.c (more_help): Use REPORT_BUGS_TO.
36720         (print_version): Use PKGVERSION.
36721         * elf/ldd.bash.in: Use PKGVERSION and REPORT_BUGS_TO.
36722         * elf/pldd.c (argp_program_bug_address): Remove variable.
36723         (more_help): New function.
36724         (argp): Use more_help.
36725         (print_version): Use PKGVERSION.
36726         * elf/sln.c (main): Use PKGVERSION.
36727         (usage): Use REPORT_BUGS_TO.
36728         * elf/sotruss.ksh (do_help): Use REPORT_BUGS_TO.
36729         (top level): Use PKGVERSION.
36730         * elf/sprof.c (more_help): Use REPORT_BUGS_TO.
36731         (print_version): Use PKGVERSION.
36732         * iconv/iconv_prog.c (more_help): Use REPORT_BUGS_TO.
36733         (print_version): Use PKGVERSION.
36734         * iconv/iconvconfig.c (more_help): Use REPORT_BUGS_TO.
36735         (print_version): Use PKGVERSION.
36736         * locale/programs/locale.c (more_help): Use REPORT_BUGS_TO.
36737         (print_version): Use PKGVERSION.
36738         * locale/programs/localedef.c (more_help): Use REPORT_BUGS_TO.
36739         (print_version): Use PKGVERSION.
36740         * login/programs/pt_chown.c (more_help): Use REPORT_BUGS_TO.
36741         (print_version): Use PKGVERSION.
36742         * malloc/Makefile ($(objpfx)mtrace): Also substitute PKGVERSION
36743         and BUGURL.
36744         ($(objpfx)memusage): Likewise.
36745         * malloc/memusage.sh (do_help): Use REPORT_BUGS_TO.
36746         (do_version): Use PKGVERSION.
36747         * malloc/memusagestat.c (more_help): Use REPORT_BUGS_TO.
36748         (print_version): Use PKGVERSION.
36749         * malloc/mtrace.pl ($PACKAGE): Remove variable.
36750         ($PKGVERSION): New variable.
36751         ($REPORT_BUGS_TO): Likewise.
36752         (usage): Use $REPORT_BUGS_TO.
36753         (top level): Use $PKGVERSION.
36754         * manual/Makefile (libc-texi-generated): Add pkgvers.texi.
36755         ($(objpfx)pkgvers.texi): New rule.
36756         ($(objpfx)stamp-pkgvers): Likewise.
36757         * manual/install.texi: Include pkgvers.texi.
36758         (--with-pkgversion): Document new configure option.
36759         (--with-bugurl): Likewise.
36760         (Reporting Bugs): Describe Bugzilla as upstream tracker rather
36761         than necessarily for this particular distribution.  Use
36762         REPORT_BUGS_TO for where to report bugs.
36763         * INSTALL: Regenerated.
36764         * manual/libc.texinfo: Include pkgvers.texi.
36765         [!PKGVERSION_DEFAULT]: Include PKGVERSION in version information.
36766         * nscd/nscd.c (more_help): Use REPORT_BUGS_TO.
36767         (print_version): Use PKGVERSION.
36768         * nss/getent.c (more_help): Use REPORT_BUGS_TO.
36769         (print_version): Use PKGVERSION.
36770         * nss/makedb.c (more_help): Use REPORT_BUGS_TO.
36771         (print_version): Use PKGVERSION.
36772         * posix/getconf.c (main): Use PKGVERSION and REPORT_BUGS_TO.
36773         * sunrpc/proto.h [IS_IN_build] (_libc_intl_domainname): Remove
36774         macro.
36775         * sunrpc/rpc_main.c (options_usage): Use REPORT_BUGS_TO.
36776         (print_version): Use PKGVERSION.
36777         * sunrpc/rpcinfo.c (usage): Use REPORT_BUGS_TO.
36778         (print_version): Use PKGVERSION.
36779         * sysdeps/unix/sysv/linux/lddlibc4.c (main): Use REPORT_BUGS_TO
36780         and PKGVERSION.
36782         * timezone/checktab.awk: Update from tzcode 2012i.
36783         * timezone/ialloc.c: Likewise.
36784         * timezone/private.h: Likewise.
36785         * timezone/scheck.c: Likewise.
36786         * timezone/tzfile.h: Likewise.
36787         * timezone/tzselect.ksh: Merge in changes from tzcode 2012i.
36788         (TZVERSION): Hardcode tzcode version number.
36789         * timezone/zdump.c: Update from tzcode 2012i.
36790         * timezone/zic.c: Likewise.
36791         * timezone/version.h: New file.
36792         * timezone/README: Describe version.h.  Update upstream location.
36794         [BZ #14824]
36795         * stdlib/stdlib.h [__USE_XOPEN_EXTENDED && __USE_XOPEN2K]
36796         (mktemp): Enable declaration.
36797         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (ecvt): Likewise.
36798         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (fcvt): Likewise.
36799         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (gcvt): Likewise.
36800         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qecvt):
36801         Likewise.
36802         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qfcvt):
36803         Likewise.
36804         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qgcvt):
36805         Likewise.
36806         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (ecvt_r):
36807         Likewise.
36808         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (fcvt_r):
36809         Likewise.
36810         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (gcvt_r):
36811         Likewise.
36813         [BZ #14821]
36814         * sunrpc/clnt_tcp.c (clnttcp_control): Access values at fixed
36815         offset in buffer as u_int32_t not u_long.  Consistently use memcpy
36816         for copies of such integer values.
36817         * sunrpc/clnt_udp.c (clntudp_control): Likewise.
36818         * sunrpc/clnt_unix.c (clntunix_control): Likewise.
36820 2012-11-09  Andreas Jaeger  <aj@suse.de>
36822         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Remove all
36823         definitions and declarations that are provided by
36824         <bits/fcntl-linux.h> and include <bits/fcntl-linux.h>.
36826 2012-11-08  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
36828         * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Add "te".
36829         * sysdeps/s390/dl-procinfo.h (HWCAP_S390_TE): Add enum value.
36830         * sysdeps/unix/sysv/linux/s390/hwcap.h (HWCAP_S390_TE): Add macro
36831         definition.
36833 2012-11-08  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
36835         * elf/elf.h: Update comment before AArch64 relocations.
36837 2012-11-07  David S. Miller  <davem@davemloft.net>
36839         * sysdeps/unix/sysv/linux/sparc/sparc64/__start_context.S: New file.
36840         * sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c
36841         (__start_context): Declare.
36842         (__makecontext_ret): Delete.
36843         (__makecontext): Hook up __start_context instead of
36844         __makecontext_ret.
36845         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile
36846         (sysdep_routines): Add __start_context when in stdlib.
36848 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
36850         * sysdeps/x86/Makefile ($(objpfx)tst-xmmymm.out): Pass $(NM),
36851         $(OBJDUMP) and $(READELF) to tst-xmmymm.sh.
36852         * sysdeps/x86/tst-xmmymm.sh (NM): New variable.  Use it instead of
36853         hardcoded "nm".
36854         (OBJDUMP): New variable.  Use it instead of hardcoded "objdump".
36855         (READELF): New variable.  Use it instead of hardcoded "readelf".
36857 2012-11-07  H.J. Lu  <hongjiu.lu@intel.com>
36859         * sysdeps/x86_64/Makefile ($(objpfx)tst-xmmymm.out): Moved to ...
36860         * sysdeps/x86/Makefile: Here.
36861         * sysdeps/x86_64/tst-xmmymm.sh: Renamed to ...
36862         * sysdeps/x86/tst-xmmymm.sh: This.
36864 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
36866         * conform/data/pthread.h-data [XPG3 || XPG4]: Disable all
36867         expectations.
36868         [UNIX98] (pthread_barrier_t): Do not expect.
36869         [UNIX98] (pthread_barrierattr_t): Likewise.
36870         [UNIX98] (pthread_spinlock_t): Likewise.
36871         [UNIX98] (pthread_barrier_destroy): Likewise.
36872         [UNIX98] (pthread_barrier_init): Likewise.
36873         [UNIX98] (pthread_barrier_wait): Likewise.
36874         [UNIX98] (pthread_barrierattr_destroy): Likewise.
36875         [UNIX98] (pthread_barrierattr_getpshared): Likewise.
36876         [UNIX98] (pthread_barrierattr_init): Likewise.
36877         [UNIX98] (pthread_barrierattr_setpshared): Likewise.
36878         [UNIX98] (pthread_getcpuclockid): Likewise.
36879         [UNIX98] (pthread_mutex_timedlock): Likewise.
36880         [UNIX98] (pthread_rwlock_timedrdlock): Likewise.
36881         [UNIX98] (pthread_rwlock_timedwrlock): Likewise.
36882         [UNIX98] (pthread_sigmask): Likewise.
36883         [UNIX98] (pthread_spin_destroy): Likewise.
36884         [UNIX98] (pthread_spin_init): Likewise.
36885         [UNIX98] (pthread_spin_lock): Likewise.
36886         [UNIX98] (pthread_spin_trylock): Likewise.
36887         [UNIX98] (pthread_spin_unlock): Likewise.
36888         * conform/data/sys/types.h-data [XPG3 || XPG4] (pthread_attr_t):
36889         Do not expect.
36890         [XPG3 || XPG4 || UNIX98] (pthread_barrier_t): Likewise.
36891         [XPG3 || XPG4 || UNIX98] (pthread_barrierattr_t): Likewise.
36892         [XPG3 || XPG4] (pthread_cond_t): Likewise.
36893         [XPG3 || XPG4] (pthread_condattr_t): Likewise.
36894         [XPG3 || XPG4] (pthread_key_t): Likewise.
36895         [XPG3 || XPG4] (pthread_mutex_t): Likewise.
36896         [XPG3 || XPG4] (pthread_mutexattr_t): Likewise.
36897         [XPG3 || XPG4] (pthread_once_t): Likewise.
36898         [XPG3 || XPG4] (pthread_rwlock_t): Likewise.
36899         [XPG3 || XPG4] (pthread_rwlockattr_t): Likewise.
36900         [XPG3 || XPG4 || UNIX98] (pthread_spinlock_t): Likewise.
36901         [XPG3 || XPG4] (pthread_t): Likewise.
36903         * conform/data/stdlib.h-data [XPG3 || XPG4 || UNIX98] (setenv): Do
36904         not expect.
36905         [XPG3 || XPG4 || UNIX98] (unsetenv): Likewise.
36907         * conform/data/math.h-data [XPG3 || XPG4 || UNIX98] (isnan):
36908         Change function return type to int.
36910         * conform/data/sys/mman.h-data [!POSIX] (POSIX_MADV_NORMAL):
36911         Change condition to [!POSIX && !XPG3 && !XPG4 && !UNIX98].
36912         [!POSIX] (POSIX_MADV_SEQUENTIAL): Likewise.
36913         [!POSIX] (POSIX_MADV_RANDOM): Likewise.
36914         [!POSIX] (POSIX_MADV_WILLNEED): Likewise.
36915         [!POSIX] (POSIX_MADV_DONTNEED): Likewise.
36916         [!POSIX] (posix_madvise): Likewise.
36917         (POSIX_TYPED_MEM_ALLOCATE): Condition on [!POSIX && !XPG3 && !XPG4
36918         && !UNIX98].
36919         (POSIX_TYPED_MEM_ALLOCATE_CONTIG): Likewise.
36920         (POSIX_TYPED_MEM_MAP_ALLOCATABLE): Likewise.
36921         (mode_t): Likewise.
36922         (posix_mem_offset): Likewise.
36923         (posix_typed_mem_get_info): Likewise.
36924         (posix_typed_mem_open): Likewise.
36926         * conform/data/sys/stat.h-data [!POSIX && !POSIX2008] (mknodat):
36927         Change condition to [XOPEN2K8].
36929         * conform/conformtest.pl: Preprocess allow-header data with -x c
36930         instead of from stdin.
36931         (@headers): Add stdalign.h, stdbool.h and stdnoreturn.h.
36932         * conform/data/complex.h-data [C99-based standards] (cerf): Allow.
36933         [C99-based standards] (cerfc): Likewise.
36934         [C99-based standards] (cexp2): Likewise.
36935         [C99-based standards] (cexpm1): Likewise.
36936         [C99-based standards] (clog10): Likewise.
36937         [C99-based standards] (clog1p): Likewise.
36938         [C99-based standards] (clog2): Likewise.
36939         [C99-based standards] (clgamma): Likewise.
36940         [C99-based standards] (ctgamma): Likewise.
36941         [C99-based standards] (cerff): Likewise.
36942         [C99-based standards] (cerfcf): Likewise.
36943         [C99-based standards] (cexp2f): Likewise.
36944         [C99-based standards] (cexpm1f): Likewise.
36945         [C99-based standards] (clog10f): Likewise.
36946         [C99-based standards] (clog1pf): Likewise.
36947         [C99-based standards] (clog2f): Likewise.
36948         [C99-based standards] (clgammaf): Likewise.
36949         [C99-based standards] (ctgammaf): Likewise.
36950         [C99-based standards] (cerfl): Likewise.
36951         [C99-based standards] (cerfcl): Likewise.
36952         [C99-based standards] (cexp2l): Likewise.
36953         [C99-based standards] (cexpm1l): Likewise.
36954         [C99-based standards] (clog10l): Likewise.
36955         [C99-based standards] (clog1pl): Likewise.
36956         [C99-based standards] (clog2l): Likewise.
36957         [C99-based standards] (clgammal): Likewise.
36958         [C99-based standards] (ctgammal): Likewise.
36959         * conform/data/inttypes.h-data [C99-based standards]: Include
36960         stdint.h-data.  Remove all expectations for stdint.h contents.
36961         [C99-based standards] (PRI*): Do not allow.
36962         [C99-based standards] (SCN*): Likewise.
36963         [C99-based standards] (*_t): Likewise.
36964         [C99-based-standards] (PRId8): Expect macro.
36965         [C99-based-standards] (PRIi8): Likewise.
36966         [C99-based-standards] (PRIo8): Likewise.
36967         [C99-based-standards] (PRIu8): Likewise.
36968         [C99-based-standards] (PRIx8): Likewise.
36969         [C99-based-standards] (PRIX8): Likewise.
36970         [C99-based-standards] (SCNd8): Likewise.
36971         [C99-based-standards] (SCNi8): Likewise.
36972         [C99-based-standards] (SCNo8): Likewise.
36973         [C99-based-standards] (SCNu8): Likewise.
36974         [C99-based-standards] (SCNx8): Likewise.
36975         [C99-based-standards] (PRIdLEAST8): Likewise.
36976         [C99-based-standards] (PRIiLEAST8): Likewise.
36977         [C99-based-standards] (PRIoLEAST8): Likewise.
36978         [C99-based-standards] (PRIuLEAST8): Likewise.
36979         [C99-based-standards] (PRIxLEAST8): Likewise.
36980         [C99-based-standards] (PRIXLEAST8): Likewise.
36981         [C99-based-standards] (SCNdLEAST8): Likewise.
36982         [C99-based-standards] (SCNiLEAST8): Likewise.
36983         [C99-based-standards] (SCNoLEAST8): Likewise.
36984         [C99-based-standards] (SCNuLEAST8): Likewise.
36985         [C99-based-standards] (SCNxLEAST8): Likewise.
36986         [C99-based-standards] (PRIdFAST8): Likewise.
36987         [C99-based-standards] (PRIiFAST8): Likewise.
36988         [C99-based-standards] (PRIoFAST8): Likewise.
36989         [C99-based-standards] (PRIuFAST8): Likewise.
36990         [C99-based-standards] (PRIxFAST8): Likewise.
36991         [C99-based-standards] (PRIXFAST8): Likewise.
36992         [C99-based-standards] (SCNdFAST8): Likewise.
36993         [C99-based-standards] (SCNiFAST8): Likewise.
36994         [C99-based-standards] (SCNoFAST8): Likewise.
36995         [C99-based-standards] (SCNuFAST8): Likewise.
36996         [C99-based-standards] (SCNxFAST8): Likewise.
36997         [C99-based-standards] (PRId16): Likewise.
36998         [C99-based-standards] (PRIi16): Likewise.
36999         [C99-based-standards] (PRIo16): Likewise.
37000         [C99-based-standards] (PRIu16): Likewise.
37001         [C99-based-standards] (PRIx16): Likewise.
37002         [C99-based-standards] (PRIX16): Likewise.
37003         [C99-based-standards] (SCNd16): Likewise.
37004         [C99-based-standards] (SCNi16): Likewise.
37005         [C99-based-standards] (SCNo16): Likewise.
37006         [C99-based-standards] (SCNu16): Likewise.
37007         [C99-based-standards] (SCNx16): Likewise.
37008         [C99-based-standards] (PRIdLEAST16): Likewise.
37009         [C99-based-standards] (PRIiLEAST16): Likewise.
37010         [C99-based-standards] (PRIoLEAST16): Likewise.
37011         [C99-based-standards] (PRIuLEAST16): Likewise.
37012         [C99-based-standards] (PRIxLEAST16): Likewise.
37013         [C99-based-standards] (PRIXLEAST16): Likewise.
37014         [C99-based-standards] (SCNdLEAST16): Likewise.
37015         [C99-based-standards] (SCNiLEAST16): Likewise.
37016         [C99-based-standards] (SCNoLEAST16): Likewise.
37017         [C99-based-standards] (SCNuLEAST16): Likewise.
37018         [C99-based-standards] (SCNxLEAST16): Likewise.
37019         [C99-based-standards] (PRIdFAST16): Likewise.
37020         [C99-based-standards] (PRIiFAST16): Likewise.
37021         [C99-based-standards] (PRIoFAST16): Likewise.
37022         [C99-based-standards] (PRIuFAST16): Likewise.
37023         [C99-based-standards] (PRIxFAST16): Likewise.
37024         [C99-based-standards] (PRIXFAST16): Likewise.
37025         [C99-based-standards] (SCNdFAST16): Likewise.
37026         [C99-based-standards] (SCNiFAST16): Likewise.
37027         [C99-based-standards] (SCNoFAST16): Likewise.
37028         [C99-based-standards] (SCNuFAST16): Likewise.
37029         [C99-based-standards] (SCNxFAST16): Likewise.
37030         [C99-based-standards] (PRId32): Likewise.
37031         [C99-based-standards] (PRIi32): Likewise.
37032         [C99-based-standards] (PRIo32): Likewise.
37033         [C99-based-standards] (PRIu32): Likewise.
37034         [C99-based-standards] (PRIx32): Likewise.
37035         [C99-based-standards] (PRIX32): Likewise.
37036         [C99-based-standards] (SCNd32): Likewise.
37037         [C99-based-standards] (SCNi32): Likewise.
37038         [C99-based-standards] (SCNo32): Likewise.
37039         [C99-based-standards] (SCNu32): Likewise.
37040         [C99-based-standards] (SCNx32): Likewise.
37041         [C99-based-standards] (PRIdLEAST32): Likewise.
37042         [C99-based-standards] (PRIiLEAST32): Likewise.
37043         [C99-based-standards] (PRIoLEAST32): Likewise.
37044         [C99-based-standards] (PRIuLEAST32): Likewise.
37045         [C99-based-standards] (PRIxLEAST32): Likewise.
37046         [C99-based-standards] (PRIXLEAST32): Likewise.
37047         [C99-based-standards] (SCNdLEAST32): Likewise.
37048         [C99-based-standards] (SCNiLEAST32): Likewise.
37049         [C99-based-standards] (SCNoLEAST32): Likewise.
37050         [C99-based-standards] (SCNuLEAST32): Likewise.
37051         [C99-based-standards] (SCNxLEAST32): Likewise.
37052         [C99-based-standards] (PRIdFAST32): Likewise.
37053         [C99-based-standards] (PRIiFAST32): Likewise.
37054         [C99-based-standards] (PRIoFAST32): Likewise.
37055         [C99-based-standards] (PRIuFAST32): Likewise.
37056         [C99-based-standards] (PRIxFAST32): Likewise.
37057         [C99-based-standards] (PRIXFAST32): Likewise.
37058         [C99-based-standards] (SCNdFAST32): Likewise.
37059         [C99-based-standards] (SCNiFAST32): Likewise.
37060         [C99-based-standards] (SCNoFAST32): Likewise.
37061         [C99-based-standards] (SCNuFAST32): Likewise.
37062         [C99-based-standards] (SCNxFAST32): Likewise.
37063         [C99-based-standards] (PRId64): Likewise.
37064         [C99-based-standards] (PRIi64): Likewise.
37065         [C99-based-standards] (PRIo64): Likewise.
37066         [C99-based-standards] (PRIu64): Likewise.
37067         [C99-based-standards] (PRIx64): Likewise.
37068         [C99-based-standards] (PRIX64): Likewise.
37069         [C99-based-standards] (SCNd64): Likewise.
37070         [C99-based-standards] (SCNi64): Likewise.
37071         [C99-based-standards] (SCNo64): Likewise.
37072         [C99-based-standards] (SCNu64): Likewise.
37073         [C99-based-standards] (SCNx64): Likewise.
37074         [C99-based-standards] (PRIdLEAST64): Likewise.
37075         [C99-based-standards] (PRIiLEAST64): Likewise.
37076         [C99-based-standards] (PRIoLEAST64): Likewise.
37077         [C99-based-standards] (PRIuLEAST64): Likewise.
37078         [C99-based-standards] (PRIxLEAST64): Likewise.
37079         [C99-based-standards] (PRIXLEAST64): Likewise.
37080         [C99-based-standards] (SCNdLEAST64): Likewise.
37081         [C99-based-standards] (SCNiLEAST64): Likewise.
37082         [C99-based-standards] (SCNoLEAST64): Likewise.
37083         [C99-based-standards] (SCNuLEAST64): Likewise.
37084         [C99-based-standards] (SCNxLEAST64): Likewise.
37085         [C99-based-standards] (PRIdFAST64): Likewise.
37086         [C99-based-standards] (PRIiFAST64): Likewise.
37087         [C99-based-standards] (PRIoFAST64): Likewise.
37088         [C99-based-standards] (PRIuFAST64): Likewise.
37089         [C99-based-standards] (PRIxFAST64): Likewise.
37090         [C99-based-standards] (PRIXFAST64): Likewise.
37091         [C99-based-standards] (SCNdFAST64): Likewise.
37092         [C99-based-standards] (SCNiFAST64): Likewise.
37093         [C99-based-standards] (SCNoFAST64): Likewise.
37094         [C99-based-standards] (SCNuFAST64): Likewise.
37095         [C99-based-standards] (SCNxFAST64): Likewise.
37096         [C99-based-standards] (PRIdMAX): Likewise.
37097         [C99-based-standards] (PRIiMAX): Likewise.
37098         [C99-based-standards] (PRIoMAX): Likewise.
37099         [C99-based-standards] (PRIuMAX): Likewise.
37100         [C99-based-standards] (PRIxMAX): Likewise.
37101         [C99-based-standards] (PRIXMAX): Likewise.
37102         [C99-based-standards] (SCNdMAX): Likewise.
37103         [C99-based-standards] (SCNiMAX): Likewise.
37104         [C99-based-standards] (SCNoMAX): Likewise.
37105         [C99-based-standards] (SCNuMAX): Likewise.
37106         [C99-based-standards] (SCNxMAX): Likewise.
37107         [C99-based-standards] (PRIdPTR): Likewise.
37108         [C99-based-standards] (PRIiPTR): Likewise.
37109         [C99-based-standards] (PRIoPTR): Likewise.
37110         [C99-based-standards] (PRIuPTR): Likewise.
37111         [C99-based-standards] (PRIxPTR): Likewise.
37112         [C99-based-standards] (PRIXPTR): Likewise.
37113         [C99-based-standards] (SCNdPTR): Likewise.
37114         [C99-based-standards] (SCNiPTR): Likewise.
37115         [C99-based-standards] (SCNoPTR): Likewise.
37116         [C99-based-standards] (SCNuPTR): Likewise.
37117         [C99-based-standards] (SCNxPTR): Likewise.
37118         * conform/data/iso646.h-data [ISO C standards] (*_t): Do not
37119         allow.
37120         * conform/data/stdint.h-data: Update comments to clarify
37121         requirements.
37122         [C99-based standards] (INT8_MIN): Use macro-int-constant.  Specify
37123         type.
37124         [C99-based standards] (INT8_MAX): Likewise.
37125         [C99-based standards] (INT16_MIN): Likewise.
37126         [C99-based standards] (INT16_MAX): Likewise.
37127         [C99-based standards] (INT32_MIN): Likewise.
37128         [C99-based standards] (INT32_MAX): Likewise.
37129         [C99-based standards] (INT64_MIN): Likewise.
37130         [C99-based standards] (INT64_MAX): Likewise.
37131         [C99-based standards] (UINT8_MAX): Likewise.
37132         [C99-based standards] (UINT16_MAX): Likewise.
37133         [C99-based standards] (UINT32_MAX): Likewise.
37134         [C99-based standards] (UINT64_MAX): Likewise.
37135         [C99-based standards] (INT_LEAST8_MIN): Likewise.
37136         [C99-based standards] (INT_LEAST8_MAX): Likewise.
37137         [C99-based standards] (INT_LEAST16_MIN): Likewise.
37138         [C99-based standards] (INT_LEAST16_MAX): Likewise.
37139         [C99-based standards] (INT_LEAST32_MIN): Likewise.
37140         [C99-based standards] (INT_LEAST32_MAX): Likewise.
37141         [C99-based standards] (INT_LEAST64_MIN): Likewise.
37142         [C99-based standards] (INT_LEAST64_MAX): Likewise.
37143         [C99-based standards] (UINT_LEAST8_MAX): Likewise.
37144         [C99-based standards] (UINT_LEAST16_MAX): Likewise.
37145         [C99-based standards] (UINT_LEAST32_MAX): Likewise.
37146         [C99-based standards] (UINT_LEAST64_MAX): Likewise.
37147         [C99-based standards] (INT_FAST8_MIN): Likewise.
37148         [C99-based standards] (INT_FAST8_MAX): Likewise.
37149         [C99-based standards] (INT_FAST16_MIN): Likewise.
37150         [C99-based standards] (INT_FAST16_MAX): Likewise.
37151         [C99-based standards] (INT_FAST32_MIN): Likewise.
37152         [C99-based standards] (INT_FAST32_MAX): Likewise.
37153         [C99-based standards] (INT_FAST64_MIN): Likewise.
37154         [C99-based standards] (INT_FAST64_MAX): Likewise.
37155         [C99-based standards] (UINT_FAST8_MAX): Likewise.
37156         [C99-based standards] (UINT_FAST16_MAX): Likewise.
37157         [C99-based standards] (UINT_FAST32_MAX): Likewise.
37158         [C99-based standards] (UINT_FAST64_MAX): Likewise.
37159         [C99-based standards] (INTPTR_MIN): Likewise.
37160         [C99-based standards] (INTPTR_MAX): Likewise.
37161         [C99-based standards] (UINTPTR_MAX): Likewise.
37162         [C99-based standards] (INTMAX_MIN): Likewise.
37163         [C99-based standards] (INTMAX_MAX): Likewise.
37164         [C99-based standards] (UINTMAX_MAX): Likewise.
37165         [C99-based standards] (PTRDIFF_MIN): Likewise.
37166         [C99-based standards] (PTRDIFF_MAX): Likewise.
37167         [C99-based standards] (SIG_ATOMIC_MAX): Likewise.
37168         [C99-based standards] (SIZE_MAX): Likewise.
37169         [C99-based standards] (WCHAR_MAX): Likewise.
37170         [C99-based standards] (WINT_MAX): Likewise.
37171         [C99-based standards] (SIG_ATOMIC_MIN): Likewise.  Do not specify
37172         constraint on value.
37173         [C99-based standards] (WCHAR_MIN): Likewise.
37174         [C99-based standards] (WINT_MIN): Likewise.
37175         [C99-based standards] (*_t): Allow.
37176         * conform/data/tgmath.h-data [XOPEN2K || POSIX2008]: Change
37177         condition to [!ISO && !POSIX && !XPG3 && !XPG4 && !UNIX98].
37178         Include math.h-data and complex.h-data.  Remove all expectations
37179         of math.h and complex.h contents.
37180         * conform/data/uchar.h-data [ISO11] (c16rtomb): Remove stray "16"
37181         at end of line.
37182         * conform/data/wchar.h-data [!ISO && !POSIX && !XPG3 && !XPG4]
37183         (struct tm): Expect tag.
37184         [C99-based-standards] (wcstof): Expect function.
37185         [C99-based-standards] (wcstold): Likewise.
37186         [C99-based-standards] (wcstoll): Likewise.
37187         [C99-based-standards] (wcstoull): Likewise.
37188         [!ISO && !POSIX && !XPG3 && !XPG4] (WCHAR_MIN): Use
37189         macro-int-constant.  Specify type.
37190         [!ISO && !POSIX && !XPG3 && !XPG4] (WCHAR_MAX): Likewise.  Specify
37191         constraint on value.
37192         [!ISO && !POSIX && !XPG3 && !XPG4] (WEOF): Use macro-constant.
37193         Specify type.
37194         [!ISO && !POSIX && !XPG3 && !XPG4] (NULL): Use macro-constant.
37195         Specify value.
37196         [ISO C standards]: Do not allow headers.
37197         [!ISO && !POSIX && !XPG3 && !XPG4] (wcs*): Change to
37198         wcs[abcdefghijklmnopqrstuvwxyz]*.
37199         [ISO C standards] (*_t): Do not allow.
37200         * conform/data/wctype.h-data [C99-based standards] (iswblank):
37201         Expect function.
37202         [XOPEN2K8 || POSIX2008] (iswblank_l): Likewise.
37203         [!ISO && !POSIX && !XPG3 && !XPG4] (WEOF): Use macro-constant.
37204         Specify type.
37205         [ISO C standards]: Do not allow headers.
37206         [!ISO && !POSIX && !XPG3 && !XPG4] (is*): Change to
37207         is[abcdefghijklmnopqrstuvwxyz]*.
37208         [!ISO && !POSIX && !XPG3 && !XPG4] (to*): Change to
37209         to[abcdefghijklmnopqrstuvwxyz]*.
37210         [ISO C standards] (*_t): Do not allow.
37211         * conform/data/stdalign.h-data: New file.
37212         * conform/data/stdbool.h-data: Likewise.
37213         * conform/data/stdnoreturn.h-data: Likewise.
37215 2012-11-07  Roland McGrath  <roland@hack.frob.com>
37217         [BZ #14815]
37218         * manual/filesys.texi (Directory Entries): Typo fix.
37219         Reported by <h-iwamoto@kit.hi-ho.ne.jp>.
37221 2012-11-07  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
37223         * elf/elf.h (EM_AARCH64): New macro.
37224         (R_AARCH64_NONE, R_AARCH64_ABS64, R_AARCH64_ABS32): Likewise.
37225         (R_AARCH64_COPY, R_AARCH64_GLOB_DAT, R_AARCH64_JUMP_SLOT): Likewise.
37226         (R_AARCH64_RELATIVE, R_AARCH64_TLS_DTPMOD64): Likewise.
37227         (R_AARCH64_TLS_DTPREL64, R_AARCH64_TLS_TPREL64): Likewise.
37228         (R_AARCH64_TLSDESC): Likewise.
37229         (NT_ARM_TLS): Likewise.
37230         (NT_ARM_HW_BREAK): Likewise.
37231         (NT_ARM_HW_WATCH): Likewise.
37233 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
37235         [BZ #14811]
37236         * sysdeps/i386/fpu/e_powl.S (pm79): New object.
37237         (__ieee754_powl): Saturate nonzero exponents with absolute value
37238         below 0x1p-79 to +/- 0x1p-79.
37239         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Saturate nonzero
37240         exponents with absolute value below 0x1p-64 to +/- 0x1p-64.
37241         * sysdeps/ieee754/flt-32/e_powf.c (__ieee754_powf): Saturate
37242         nonzero exponents with absolute value below 0x1p-32 to +/-
37243         0x1p-32.
37244         * sysdeps/x86_64/fpu/e_powl.S (pm79): New object.
37245         (__ieee754_powl): Saturate nonzero exponents with absolute value
37246         below 0x1p-79 to +/- 0x1p-79.
37247         * math/libm-test.inc (pow_test): Add more tests.
37249 2012-11-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
37251         * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Sync
37252         _dl_s390_cap_flags with kernel. Increase string length.
37253         (_dl_s390_platforms): Add z196 and zEC12.
37255 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
37257         * conform/data/time.h-data [!XOPEN21K && !XOPEN2K8 && !POSIX2008]:
37258         Change XOPEN21K to XOPEN2K.
37260 2012-11-06  Maxim Kuvyrkov  <maxim@codesourcery.com>
37262         * string/memmove.c: Use memcpy when possible.
37264 2012-11-06  Andreas Jaeger  <aj@suse.de>
37266         * po/eo.po: Update from translation team.
37268 2012-11-06  Joseph Myers  <joseph@codesourcery.com>
37270         [BZ #14793]
37271         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): In case of large z
37272         exponent and small x and y exponents, scale x or y up.  Increase
37273         by 2 the exponent used in scaling up.
37274         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
37275         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
37276         * math/libm-test.inc (fma_test): Add more tests.
37277         (fma_test_towardzero): Likewise.
37278         (fma_test_downward): Likewise.
37279         (fma_test_upward): Likewise.
37281 2012-11-05  Joseph Myers  <joseph@codesourcery.com>
37283         [BZ #14805]
37284         * sysdeps/sh/sh4/fpu/bits/fenv.h (FE_DFL_ENV): Use cast to const
37285         fenv_t *.
37287         [BZ #14801]
37288         * sysdeps/s390/fpu/bits/fenv.h (fenv_t): Use implementation
37289         namespace for names of struct fields.
37290         * sysdeps/s390/fpu/fegetenv.c (fegetenv): Update references to
37291         fenv_t fields.
37292         * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Likewise.
37293         * sysdeps/s390/fpu/fesetenv.c (fesetenv): Likewise.
37295 2012-11-04  Samuel Thibault  <samuel.thibault@ens-lyon.org>
37297         [BZ #3665]
37298         * sysdeps/mach/hurd/bits/errno.h: Regenerated.
37300 2012-11-04  Thomas Schwinge  <thomas@codesourcery.com>
37302         * csu/libc-start.c (LIBC_START_MAIN): Conditionalize use of
37303         PTR_DEMANGLE.
37305         [BZ #5246]
37306         * sysdeps/mach/hurd/i386/____longjmp_chk.S: Conditionalize use of
37307         PTR_DEMANGLE.
37309 2012-11-04  Joseph Myers  <joseph@codesourcery.com>
37311         [BZ #14797]
37312         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Compute cases that
37313         definitely overflow as x * y not x * y + z.
37314         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
37315         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
37316         * math/libm-test.inc (fma_test): Add more tests.
37317         (fma_test_towardzero): Likewise.
37318         (fma_test_downward): Likewise.
37319         (fma_test_upward): Likewise.
37321 2012-11-04  Thomas Schwinge  <thomas@codesourcery.com>
37323         [BZ #157]
37325         * include/stub-tag.h: Remove file.
37326         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Don't emit
37327         '#include' of it.
37328         * manual/maint.texi (Porting): Don't reference it.
37329         * Makerules ($(objpfx)stubs): Likewise.
37330         * dirent/closedir.c: Don't include <stub-tag.h>.
37331         * dirent/dirfd.c: Likewise.
37332         * dirent/fdopendir.c: Likewise.
37333         * dirent/getdents.c: Likewise.
37334         * dirent/getdents64.c: Likewise.
37335         * dirent/opendir.c: Likewise.
37336         * dirent/readdir.c: Likewise.
37337         * dirent/readdir64.c: Likewise.
37338         * dirent/readdir64_r.c: Likewise.
37339         * dirent/readdir_r.c: Likewise.
37340         * dirent/rewinddir.c: Likewise.
37341         * dirent/seekdir.c: Likewise.
37342         * dirent/telldir.c: Likewise.
37343         * gmon/profil.c: Likewise.
37344         * grp/setgroups.c: Likewise.
37345         * inet/if_index.c: Likewise.
37346         * io/access.c: Likewise.
37347         * io/chdir.c: Likewise.
37348         * io/chmod.c: Likewise.
37349         * io/chown.c: Likewise.
37350         * io/close.c: Likewise.
37351         * io/dup.c: Likewise.
37352         * io/dup2.c: Likewise.
37353         * io/dup3.c: Likewise.
37354         * io/euidaccess.c: Likewise.
37355         * io/faccessat.c: Likewise.
37356         * io/fchdir.c: Likewise.
37357         * io/fchmod.c: Likewise.
37358         * io/fchmodat.c: Likewise.
37359         * io/fchown.c: Likewise.
37360         * io/fchownat.c: Likewise.
37361         * io/fcntl.c: Likewise.
37362         * io/flock.c: Likewise.
37363         * io/fstatfs.c: Likewise.
37364         * io/fstatfs64.c: Likewise.
37365         * io/fstatvfs.c: Likewise.
37366         * io/fstatvfs64.c: Likewise.
37367         * io/futimens.c: Likewise.
37368         * io/fxstat.c: Likewise.
37369         * io/fxstat64.c: Likewise.
37370         * io/fxstatat.c: Likewise.
37371         * io/fxstatat64.c: Likewise.
37372         * io/getcwd.c: Likewise.
37373         * io/isatty.c: Likewise.
37374         * io/lchmod.c: Likewise.
37375         * io/lchown.c: Likewise.
37376         * io/link.c: Likewise.
37377         * io/linkat.c: Likewise.
37378         * io/lseek.c: Likewise.
37379         * io/lseek64.c: Likewise.
37380         * io/lxstat64.c: Likewise.
37381         * io/mkdir.c: Likewise.
37382         * io/mkdirat.c: Likewise.
37383         * io/mkfifo.c: Likewise.
37384         * io/mkfifoat.c: Likewise.
37385         * io/open.c: Likewise.
37386         * io/open64.c: Likewise.
37387         * io/openat.c: Likewise.
37388         * io/openat64.c: Likewise.
37389         * io/pipe.c: Likewise.
37390         * io/pipe2.c: Likewise.
37391         * io/poll.c: Likewise.
37392         * io/posix_fadvise.c: Likewise.
37393         * io/posix_fadvise64.c: Likewise.
37394         * io/posix_fallocate.c: Likewise.
37395         * io/posix_fallocate64.c: Likewise.
37396         * io/read.c: Likewise.
37397         * io/readlink.c: Likewise.
37398         * io/readlinkat.c: Likewise.
37399         * io/rmdir.c: Likewise.
37400         * io/sendfile.c: Likewise.
37401         * io/sendfile64.c: Likewise.
37402         * io/statfs.c: Likewise.
37403         * io/statfs64.c: Likewise.
37404         * io/statvfs.c: Likewise.
37405         * io/statvfs64.c: Likewise.
37406         * io/symlink.c: Likewise.
37407         * io/symlinkat.c: Likewise.
37408         * io/ttyname.c: Likewise.
37409         * io/ttyname_r.c: Likewise.
37410         * io/umask.c: Likewise.
37411         * io/unlink.c: Likewise.
37412         * io/unlinkat.c: Likewise.
37413         * io/utime.c: Likewise.
37414         * io/utimensat.c: Likewise.
37415         * io/write.c: Likewise.
37416         * io/xmknod.c: Likewise.
37417         * io/xmknodat.c: Likewise.
37418         * io/xstat.c: Likewise.
37419         * io/xstat64.c: Likewise.
37420         * login/getpt.c: Likewise.
37421         * login/grantpt.c: Likewise.
37422         * login/unlockpt.c: Likewise.
37423         * math/e_acoshl.c: Likewise.
37424         * math/e_acosl.c: Likewise.
37425         * math/e_asinl.c: Likewise.
37426         * math/e_atan2l.c: Likewise.
37427         * math/e_atanhl.c: Likewise.
37428         * math/e_coshl.c: Likewise.
37429         * math/e_expl.c: Likewise.
37430         * math/e_fmodl.c: Likewise.
37431         * math/e_gammal_r.c: Likewise.
37432         * math/e_hypotl.c: Likewise.
37433         * math/e_j0l.c: Likewise.
37434         * math/e_j1l.c: Likewise.
37435         * math/e_jnl.c: Likewise.
37436         * math/e_lgammal_r.c: Likewise.
37437         * math/e_log10l.c: Likewise.
37438         * math/e_log2l.c: Likewise.
37439         * math/e_logl.c: Likewise.
37440         * math/e_powl.c: Likewise.
37441         * math/e_rem_pio2l.c: Likewise.
37442         * math/e_sinhl.c: Likewise.
37443         * math/e_sqrtl.c: Likewise.
37444         * math/fclrexcpt.c: Likewise.
37445         * math/fedisblxcpt.c: Likewise.
37446         * math/feenablxcpt.c: Likewise.
37447         * math/fegetenv.c: Likewise.
37448         * math/fegetexcept.c: Likewise.
37449         * math/fegetround.c: Likewise.
37450         * math/feholdexcpt.c: Likewise.
37451         * math/fesetenv.c: Likewise.
37452         * math/fesetround.c: Likewise.
37453         * math/feupdateenv.c: Likewise.
37454         * math/fgetexcptflg.c: Likewise.
37455         * math/fraiseexcpt.c: Likewise.
37456         * math/fsetexcptflg.c: Likewise.
37457         * math/ftestexcept.c: Likewise.
37458         * math/k_cosl.c: Likewise.
37459         * math/k_rem_pio2l.c: Likewise.
37460         * math/k_sinl.c: Likewise.
37461         * math/k_tanl.c: Likewise.
37462         * math/s_asinhl.c: Likewise.
37463         * math/s_atanl.c: Likewise.
37464         * math/s_cbrtl.c: Likewise.
37465         * math/s_erfl.c: Likewise.
37466         * math/s_expm1l.c: Likewise.
37467         * math/s_log1pl.c: Likewise.
37468         * math/s_tanhl.c: Likewise.
37469         * misc/acct.c: Likewise.
37470         * misc/brk.c: Likewise.
37471         * misc/chflags.c: Likewise.
37472         * misc/chroot.c: Likewise.
37473         * misc/fchflags.c: Likewise.
37474         * misc/fgetxattr.c: Likewise.
37475         * misc/flistxattr.c: Likewise.
37476         * misc/fremovexattr.c: Likewise.
37477         * misc/fsetxattr.c: Likewise.
37478         * misc/fsync.c: Likewise.
37479         * misc/ftruncate.c: Likewise.
37480         * misc/futimes.c: Likewise.
37481         * misc/futimesat.c: Likewise.
37482         * misc/getdomain.c: Likewise.
37483         * misc/getdtsz.c: Likewise.
37484         * misc/gethostid.c: Likewise.
37485         * misc/gethostname.c: Likewise.
37486         * misc/getloadavg.c: Likewise.
37487         * misc/getpagesize.c: Likewise.
37488         * misc/getsysstats.c: Likewise.
37489         * misc/getxattr.c: Likewise.
37490         * misc/gtty.c: Likewise.
37491         * misc/ioctl.c: Likewise.
37492         * misc/lgetxattr.c: Likewise.
37493         * misc/listxattr.c: Likewise.
37494         * misc/llistxattr.c: Likewise.
37495         * misc/lremovexattr.c: Likewise.
37496         * misc/lsetxattr.c: Likewise.
37497         * misc/lutimes.c: Likewise.
37498         * misc/madvise.c: Likewise.
37499         * misc/mincore.c: Likewise.
37500         * misc/mlock.c: Likewise.
37501         * misc/mlockall.c: Likewise.
37502         * misc/mmap.c: Likewise.
37503         * misc/mprotect.c: Likewise.
37504         * misc/msync.c: Likewise.
37505         * misc/munlock.c: Likewise.
37506         * misc/munlockall.c: Likewise.
37507         * misc/munmap.c: Likewise.
37508         * misc/preadv.c: Likewise.
37509         * misc/preadv64.c: Likewise.
37510         * misc/ptrace.c: Likewise.
37511         * misc/pwritev.c: Likewise.
37512         * misc/pwritev64.c: Likewise.
37513         * misc/readv.c: Likewise.
37514         * misc/reboot.c: Likewise.
37515         * misc/remap_file_pages.c: Likewise.
37516         * misc/removexattr.c: Likewise.
37517         * misc/revoke.c: Likewise.
37518         * misc/select.c: Likewise.
37519         * misc/setdomain.c: Likewise.
37520         * misc/setegid.c: Likewise.
37521         * misc/seteuid.c: Likewise.
37522         * misc/sethostid.c: Likewise.
37523         * misc/sethostname.c: Likewise.
37524         * misc/setregid.c: Likewise.
37525         * misc/setreuid.c: Likewise.
37526         * misc/setxattr.c: Likewise.
37527         * misc/sstk.c: Likewise.
37528         * misc/stty.c: Likewise.
37529         * misc/swapoff.c: Likewise.
37530         * misc/swapon.c: Likewise.
37531         * misc/sync.c: Likewise.
37532         * misc/syncfs.c: Likewise.
37533         * misc/syscall.c: Likewise.
37534         * misc/truncate.c: Likewise.
37535         * misc/ualarm.c: Likewise.
37536         * misc/usleep.c: Likewise.
37537         * misc/ustat.c: Likewise.
37538         * misc/utimes.c: Likewise.
37539         * misc/vhangup.c: Likewise.
37540         * misc/writev.c: Likewise.
37541         * posix/_exit.c: Likewise.
37542         * posix/alarm.c: Likewise.
37543         * posix/execve.c: Likewise.
37544         * posix/fexecve.c: Likewise.
37545         * posix/fork.c: Likewise.
37546         * posix/fpathconf.c: Likewise.
37547         * posix/getaddrinfo.c: Likewise.
37548         * posix/getegid.c: Likewise.
37549         * posix/geteuid.c: Likewise.
37550         * posix/getgid.c: Likewise.
37551         * posix/getgroups.c: Likewise.
37552         * posix/getlogin.c: Likewise.
37553         * posix/getlogin_r.c: Likewise.
37554         * posix/getpgid.c: Likewise.
37555         * posix/getpid.c: Likewise.
37556         * posix/getppid.c: Likewise.
37557         * posix/getresgid.c: Likewise.
37558         * posix/getresuid.c: Likewise.
37559         * posix/getsid.c: Likewise.
37560         * posix/getuid.c: Likewise.
37561         * posix/glob64.c: Likewise.
37562         * posix/nanosleep.c: Likewise.
37563         * posix/pathconf.c: Likewise.
37564         * posix/pause.c: Likewise.
37565         * posix/posix_madvise.c: Likewise.
37566         * posix/pread.c: Likewise.
37567         * posix/pread64.c: Likewise.
37568         * posix/pwrite.c: Likewise.
37569         * posix/pwrite64.c: Likewise.
37570         * posix/sched_getaffinity.c: Likewise.
37571         * posix/sched_getp.c: Likewise.
37572         * posix/sched_gets.c: Likewise.
37573         * posix/sched_primax.c: Likewise.
37574         * posix/sched_primin.c: Likewise.
37575         * posix/sched_rr_gi.c: Likewise.
37576         * posix/sched_setaffinity.c: Likewise.
37577         * posix/sched_setp.c: Likewise.
37578         * posix/sched_sets.c: Likewise.
37579         * posix/sched_yield.c: Likewise.
37580         * posix/setgid.c: Likewise.
37581         * posix/setlogin.c: Likewise.
37582         * posix/setpgid.c: Likewise.
37583         * posix/setresgid.c: Likewise.
37584         * posix/setresuid.c: Likewise.
37585         * posix/setsid.c: Likewise.
37586         * posix/setuid.c: Likewise.
37587         * posix/sleep.c: Likewise.
37588         * posix/spawni.c: Likewise.
37589         * posix/sysconf.c: Likewise.
37590         * posix/times.c: Likewise.
37591         * posix/wait.c: Likewise.
37592         * posix/wait3.c: Likewise.
37593         * posix/wait4.c: Likewise.
37594         * posix/waitpid.c: Likewise.
37595         * resolv/gai_sigqueue.c: Likewise.
37596         * resource/getpriority.c: Likewise.
37597         * resource/getrlimit.c: Likewise.
37598         * resource/getrusage.c: Likewise.
37599         * resource/nice.c: Likewise.
37600         * resource/setpriority.c: Likewise.
37601         * resource/setrlimit.c: Likewise.
37602         * resource/ulimit.c: Likewise.
37603         * rt/aio_cancel.c: Likewise.
37604         * rt/aio_fsync.c: Likewise.
37605         * rt/aio_read.c: Likewise.
37606         * rt/aio_sigqueue.c: Likewise.
37607         * rt/aio_suspend.c: Likewise.
37608         * rt/aio_write.c: Likewise.
37609         * rt/clock_getres.c: Likewise.
37610         * rt/clock_gettime.c: Likewise.
37611         * rt/clock_nanosleep.c: Likewise.
37612         * rt/clock_settime.c: Likewise.
37613         * rt/lio_listio.c: Likewise.
37614         * rt/mq_close.c: Likewise.
37615         * rt/mq_getattr.c: Likewise.
37616         * rt/mq_notify.c: Likewise.
37617         * rt/mq_open.c: Likewise.
37618         * rt/mq_receive.c: Likewise.
37619         * rt/mq_send.c: Likewise.
37620         * rt/mq_setattr.c: Likewise.
37621         * rt/mq_timedreceive.c: Likewise.
37622         * rt/mq_timedsend.c: Likewise.
37623         * rt/mq_unlink.c: Likewise.
37624         * rt/shm_open.c: Likewise.
37625         * rt/shm_unlink.c: Likewise.
37626         * rt/timer_create.c: Likewise.
37627         * rt/timer_delete.c: Likewise.
37628         * rt/timer_getoverr.c: Likewise.
37629         * rt/timer_gettime.c: Likewise.
37630         * rt/timer_settime.c: Likewise.
37631         * setjmp/__longjmp.c: Likewise.
37632         * setjmp/setjmp.c: Likewise.
37633         * signal/kill.c: Likewise.
37634         * signal/killpg.c: Likewise.
37635         * signal/raise.c: Likewise.
37636         * signal/sigaction.c: Likewise.
37637         * signal/sigaltstack.c: Likewise.
37638         * signal/sigblock.c: Likewise.
37639         * signal/sigignore.c: Likewise.
37640         * signal/sigintr.c: Likewise.
37641         * signal/signal.c: Likewise.
37642         * signal/sigpause.c: Likewise.
37643         * signal/sigpending.c: Likewise.
37644         * signal/sigqueue.c: Likewise.
37645         * signal/sigreturn.c: Likewise.
37646         * signal/sigset.c: Likewise.
37647         * signal/sigsetmask.c: Likewise.
37648         * signal/sigstack.c: Likewise.
37649         * signal/sigsuspend.c: Likewise.
37650         * signal/sigtimedwait.c: Likewise.
37651         * signal/sigvec.c: Likewise.
37652         * signal/sigwait.c: Likewise.
37653         * signal/sigwaitinfo.c: Likewise.
37654         * signal/sysv_signal.c: Likewise.
37655         * socket/accept.c: Likewise.
37656         * socket/accept4.c: Likewise.
37657         * socket/bind.c: Likewise.
37658         * socket/connect.c: Likewise.
37659         * socket/getpeername.c: Likewise.
37660         * socket/getsockname.c: Likewise.
37661         * socket/getsockopt.c: Likewise.
37662         * socket/isfdtype.c: Likewise.
37663         * socket/listen.c: Likewise.
37664         * socket/recv.c: Likewise.
37665         * socket/recvfrom.c: Likewise.
37666         * socket/recvmsg.c: Likewise.
37667         * socket/send.c: Likewise.
37668         * socket/sendmsg.c: Likewise.
37669         * socket/sendto.c: Likewise.
37670         * socket/setsockopt.c: Likewise.
37671         * socket/shutdown.c: Likewise.
37672         * socket/sockatmark.c: Likewise.
37673         * socket/socket.c: Likewise.
37674         * socket/socketpair.c: Likewise.
37675         * stdio-common/ctermid.c: Likewise.
37676         * stdio-common/cuserid.c: Likewise.
37677         * stdio-common/remove.c: Likewise.
37678         * stdio-common/rename.c: Likewise.
37679         * stdio-common/renameat.c: Likewise.
37680         * stdio-common/tempname.c: Likewise.
37681         * stdlib/getcontext.c: Likewise.
37682         * stdlib/makecontext.c: Likewise.
37683         * stdlib/setcontext.c: Likewise.
37684         * stdlib/swapcontext.c: Likewise.
37685         * stdlib/system.c: Likewise.
37686         * streams/fattach.c: Likewise.
37687         * streams/fdetach.c: Likewise.
37688         * streams/getmsg.c: Likewise.
37689         * streams/getpmsg.c: Likewise.
37690         * streams/putmsg.c: Likewise.
37691         * streams/putpmsg.c: Likewise.
37692         * sysdeps/unix/bsd/getpt.c: Likewise.
37693         * sysdeps/unix/sysv/linux/epoll_pwait.c: Likewise.
37694         * sysdeps/unix/sysv/linux/futimens.c: Likewise.
37695         * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
37696         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c:
37697         Likewise.
37698         * sysdeps/unix/sysv/linux/readahead.c: Likewise.
37699         * sysdeps/unix/sysv/linux/sync_file_range.c: Likewise.
37700         * sysdeps/unix/sysv/linux/utimensat.c: Likewise.
37701         * sysvipc/msgctl.c: Likewise.
37702         * sysvipc/msgget.c: Likewise.
37703         * sysvipc/msgrcv.c: Likewise.
37704         * sysvipc/msgsnd.c: Likewise.
37705         * sysvipc/semctl.c: Likewise.
37706         * sysvipc/semget.c: Likewise.
37707         * sysvipc/semop.c: Likewise.
37708         * sysvipc/semtimedop.c: Likewise.
37709         * sysvipc/shmat.c: Likewise.
37710         * sysvipc/shmctl.c: Likewise.
37711         * sysvipc/shmdt.c: Likewise.
37712         * sysvipc/shmget.c: Likewise.
37713         * termios/tcdrain.c: Likewise.
37714         * termios/tcflow.c: Likewise.
37715         * termios/tcflush.c: Likewise.
37716         * termios/tcgetattr.c: Likewise.
37717         * termios/tcgetpgrp.c: Likewise.
37718         * termios/tcsendbrk.c: Likewise.
37719         * termios/tcsetattr.c: Likewise.
37720         * termios/tcsetpgrp.c: Likewise.
37721         * time/adjtime.c: Likewise.
37722         * time/clock.c: Likewise.
37723         * time/getitimer.c: Likewise.
37724         * time/gettimeofday.c: Likewise.
37725         * time/setitimer.c: Likewise.
37726         * time/settimeofday.c: Likewise.
37727         * time/stime.c: Likewise.
37728         * time/time.c: Likewise.
37730 2012-11-04  Pino Toscano  <toscano.pino@tiscali.it>
37732         * sysdeps/generic/paths.h (_PATH_STDPATH): Remove /usr/contrib/bin and
37733         /usr/old/bin.
37735         * sysdeps/generic/paths.h (_PATH_MNTTAB, _PATH_MOUNTED): Use tabs
37736         instead of spaces.
37737         * sysdeps/unix/sysv/linux/paths.h (_PATH_UTMP, _PATH_WTMP): Likewise.
37739 2012-11-03  Joseph Myers  <joseph@codesourcery.com>
37741         [BZ #14796]
37742         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Set rounding mode to
37743         FE_TONEAREST before applying Dekker multiplication and Knuth
37744         addition.  Clear inexact exceptions and check for exact zero
37745         results afterwards.
37746         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
37747         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
37748         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
37749         * math/libm-test.inc (fma_test): Add more tests.
37750         (fma_test_towardzero): Likewise.
37751         (fma_test_downward): Likewise.
37752         (fma_test_upward): Likewise.
37753         * sysdeps/generic/math_private.h (default_libc_fesetround): New
37754         function.
37755         (libc_fesetround): New macro.
37756         (libc_fesetroundf): Likewise.
37757         (libc_fesetroundl): Likewise.
37758         * sysdeps/i386/fpu/fenv_private.h (libc_fesetround_sse): New
37759         function.
37760         (libc_fesetround_387): Likewise.
37761         (libc_fesetroundf): New macro.
37762         (libc_fesetround): Likewise.
37763         (libc_fesetroundl): Likewise.
37764         * sysdeps/sparc/fpu/fenv_private.h (libc_fesetround): New
37765         function.
37766         (libc_fesetroundf): New macro.
37767         (libc_fesetround): Likewise.
37768         (libc_fesetroundl): Likewise.
37769         * include/fenv.h (feclearexcept): Add libm_hidden_proto.
37770         * math/fclrexcpt.c (feclearexcept): Add libm_hidden_ver.
37771         * sysdeps/i386/fpu/fclrexcpt.c (feclearexcept): Add
37772         libm_hidden_ver.
37773         * sysdeps/powerpc/fpu/fclrexcpt.c (feclearexcept): Likewise.
37774         * sysdeps/s390/fpu/fclrexcpt.c (feclearexcept): Add
37775         libm_hidden_def.
37776         * sysdeps/sh/sh4/fpu/fclrexcpt.c (feclearexcept): Likewise.
37777         * sysdeps/sparc/fpu/fclrexcpt.c (feclearexcept): Add
37778         libm_hidden_ver.
37779         * sysdeps/x86_64/fpu/fclrexcpt.c (feclearexcept): Add
37780         libm_hidden_def.
37782         [BZ #3439]
37783         * sysdeps/powerpc/bits/fenv.h (FE_INEXACT): Define macro to
37784         integer constant usable in #if and use that to give value to enum
37785         constant.
37786         (FE_DIVBYZERO): Likewise.
37787         (FE_UNDERFLOW): Likewise.
37788         (FE_OVERFLOW): Likewise.
37789         (FE_INVALID): Likewise.
37790         (FE_INVALID_SNAN): Likewise.
37791         (FE_INVALID_ISI): Likewise.
37792         (FE_INVALID_IDI): Likewise.
37793         (FE_INVALID_ZDZ): Likewise.
37794         (FE_INVALID_IMZ): Likewise.
37795         (FE_INVALID_COMPARE): Likewise.
37796         (FE_INVALID_SOFTWARE): Likewise.
37797         (FE_INVALID_SQRT): Likewise.
37798         (FE_INVALID_INTEGER_CONVERSION): Likewise.
37799         (FE_TONEAREST): Likewise.
37800         (FE_TOWARDZERO): Likewise.
37801         (FE_UPWARD): Likewise.
37802         (FE_DOWNWARD): Likewise.
37803         * sysdeps/s390/fpu/bits/fenv.h (FE_INVALID): Likewise.
37804         (FE_DIVBYZERO): Likewise.
37805         (FE_OVERFLOW): Likewise.
37806         (FE_UNDERFLOW): Likewise.
37807         (FE_INEXACT): Likewise.
37808         (FE_TONEAREST): Likewise.
37809         (FE_DOWNWARD): Likewise.
37810         (FE_UPWARD): Likewise.
37811         (FE_TOWARDZERO): Likewise.
37812         * sysdeps/sh/sh4/fpu/bits/fenv.h (FE_INEXACT): Likewise.
37813         (FE_UNDERFLOW): Likewise.
37814         (FE_OVERFLOW): Likewise.
37815         (FE_DIVBYZERO): Likewise.
37816         (FE_INVALID): Likewise.
37817         (FE_TONEAREST): Likewise.
37818         (FE_TOWARDZERO): Likewise.
37819         * sysdeps/sparc/fpu/bits/fenv.h (FE_INVALID): Likewise.
37820         (FE_OVERFLOW): Likewise.
37821         (FE_UNDERFLOW): Likewise.
37822         (FE_DIVBYZERO): Likewise.
37823         (FE_INEXACT): Likewise.
37824         (FE_TONEAREST): Likewise.
37825         (FE_TOWARDZERO): Likewise.
37826         (FE_UPWARD): Likewise.
37827         (FE_DOWNWARD): Likewise.
37828         * sysdeps/x86/fpu/bits/fenv.h (FE_INVALID): Likewise.
37829         (FE_DIVBYZERO): Likewise.
37830         (FE_OVERFLOW): Likewise.
37831         (FE_UNDERFLOW): Likewise.
37832         (FE_INEXACT): Likewise.
37833         (FE_TONEAREST): Likewise.
37834         (FE_DOWNWARD): Likewise.
37835         (FE_UPWARD): Likewise.
37836         (FE_TOWARDZERO): Likewise.
37838 2012-11-02  Chris Metcalf  <cmetcalf@tilera.com>
37840         * elf/elf.h (R_TILEGX_IMM16_X[01]_HW[012]_(|LAST_)PLT_PCREL): Add.
37842 2012-11-03  Andreas Schwab  <schwab@linux-m68k.org>
37844         * scripts/cross-test-ssh.sh (command): Use newlines to separate
37845         commands.  Quote $PWD.
37846         (blacklist_exports): Don't use remove_newlines.  Replace "declare
37847         -x" by "export".
37848         (remove_newlines): Remove.
37850 2012-11-02  H.J. Lu  <hongjiu.lu@intel.com>
37852         * stdlib/Makefile (headers): Add bits/stdlib-float.h.
37853         * stdlib/stdlib.h (atof): Moved to ...
37854         * include/bits/stdlib-float.h: Here.  New file.
37855         * stdlib/stdlib.h: Include <bits/stdlib-float.h>.
37856         * stdlib/bits/stdlib-float.h: New file.
37857         * sysdeps/x86/Makefile (CFLAGS-.os): Compile rtld routines with
37858         -mno-sse -mno-mmx.
37859         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: Include
37860         <xmmintrin.h>.
37862 2012-11-02  Joseph Myers  <joseph@codesourcery.com>
37864         * conform/conformtest.pl (@headers): Add fenv.h.
37865         * conform/data/fenv.h-data: New file.
37866         * include/fenv.h [_ISOMAC]: Disable all contents of file except
37867         include of <math/fenv.h>.
37869         * conform/data/complex.h-data [ISO99 || ISO11 || XOPEN2K ||
37870         POSIX2008]: Change condition to [!ISO && !POSIX && !XPG3 && !XPG4
37871         && !UNIX98].  Enables tests for XOPEN2K8.
37872         * conform/data/inttypes.h-data [ISO99 || ISO11 || XOPEN2K ||
37873         POSIX2008]: Likewise.
37875         * conform/data/sys/wait.h-data [XPG3 || XOPEN2K8 || POSIX2008]
37876         (struct rusage): Do not expect type or its members.
37878         [BZ #3439]
37879         * math/math.h (FP_NAN): Define macro to integer constant usable in
37880         #if and use that to give value to enum constant.
37881         (FP_INFINITE): Likewise.
37882         (FP_ZERO): Likewise.
37883         (FP_SUBNORMAL): Likewise.
37884         (FP_NORMAL): Likewise.
37886 2012-11-02  Andreas Schwab  <schwab@linux-m68k.org>
37888         * iconvdata/bug-iconv8.c (do_test): Use %z for size_t arguments.
37889         * iconvdata/bug-iconv9.c (do_test): Use %t for ptrdiff_t
37890         arguments.
37892 2012-11-02  Roland McGrath  <roland@hack.frob.com>
37894         * aclocal.m4 (GLIBC_AUTOCONF_VERSION): New macro.
37895         Check that AC_AUTOCONF_VERSION matches it and m4_fatal at
37896         autoconf-time if not.
37897         * configure.in: Remove AC_PREREQ.
37899 2012-11-02  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
37901         * sysdeps/powerpc/sys/platform/ppc.h (__ppc_get_timebase): Use
37902         __builtin_ppc_get_timebase when building with GCC >= 4.8 instead
37903         of the internal implementation.
37905 2012-11-02  Joseph Myers  <joseph@codesourcery.com>
37907         * include/sys/syslog.h [_ISOMAC]: Disable all contents of file
37908         except include of <misc/sys/syslog.h>.
37910 2012-11-01  Andreas Schwab  <schwab@linux-m68k.org>
37912         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: If the
37913         function returns with a NULL context exit with zero.
37915 2012-11-01  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
37917         * sysdeps/powerpc/Makefile (cflags): Remove -mnew-mnemonics.
37919 2012-11-01  H.J. Lu  <hongjiu.lu@intel.com>
37921         * catgets/test-gencat.sh (run_program_prefix): Renamed to ...
37922         (run_program_cmd): This.
37923         * localedata/tst-langinfo.sh (run_program_prefix): Removed.
37924         (tst_langinfo): New variable.  Use it.
37926 2012-11-01  Sebastan Andrzej Siewior  <bigeasy@linutronix.de>
37928         * sysdeps/powerpc/powerpc32/dl-trampoline.S: Put __NO_FPRS__ around
37929         floating point opcodes.
37931 2012-11-01  Thomas Schwinge  <thomas@codesourcery.com>
37933         * sysdeps/mach/hurd/Makefile (link-libc-static-tests): New
37934         variable.
37936         * elf/dl-support.c: Unconditionally include "setup-vdso.h".
37938         * sysdeps/mach/hurd/powerpc: Remove directory.
37939         * sysdeps/mach/powerpc: Likewise.
37941 2012-11-01  Andreas Schwab  <schwab@linux-m68k.org>
37943         * scripts/check-local-headers.sh: Ignore c++ headers.
37945 2012-11-01  Thomas Schwinge  <thomas@codesourcery.com>
37947         * libio/genops.c (_IO_flush_all_lockp): Use NULL rather than 0 for
37948         __libc_cleanup_region_start argument.
37950 2012-11-01  Joseph Myers  <joseph@codesourcery.com>
37952         [BZ #14784]
37953         [BZ #14785]
37954         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Handle cases with small
37955         x * y using scaling, not as x * y + z.
37956         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
37957         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
37958         * math/libm-test.inc (fma_test): Add more tests.
37959         (fma_test_towardzero): Likewise.
37960         (fma_test_downward): Likewise.
37961         (fma_test_upward): Likewise.
37963 2012-11-01  Thomas Schwinge  <thomas@codesourcery.com>
37965         * sysdeps/mach/hurd/bits/param.h: Remove stray #endif.
37967 2012-10-31  Joseph Myers  <joseph@codesourcery.com>
37969         * sysdeps/sh/Makefile [$(subdir) = debug] (CFLAGS-backtrace.c):
37970         New variable.
37972 2012-10-31  Thomas Schwinge  <thomas@codesourcery.com>
37974         * rt/tst-shm.c (worker): Correct checking for mmap failure.
37976 2012-10-31  Andreas Schwab  <schwab@linux-m68k.org>
37978         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
37979         Fix sort order.
37980         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
37981         Likewise.
37983 2012-10-31  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
37985         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
37986         Fix the order of the list for glibc 2.17.
37987         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
37988         Likewise.
37990 2012-10-31  Andreas Schwab  <schwab@linux-m68k.org>
37992         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
37994 2012-10-31  Joseph Myers  <joseph@codesourcery.com>
37996         [BZ #14610]
37997         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c (__ieee754_atan2l): Check
37998         for low part of x being zero before using __atanl (y).
37999         * math/libm-test.inc (atan2_test): Add another test.
38001         * manual/install.texi (Configuring and compiling): Document
38002         general use of test-wrapper and test-wrapper-env.
38003         * INSTALL: Regenerated.
38005         * sysdeps/ieee754/dbl-64/s_fma.c: Include <tininess.h>.
38006         (__fma): Do not extract and scale down low bits on after-rounding
38007         systems when result rounded to normal precision would have normal
38008         exponent.
38009         * sysdeps/ieee754/ldbl-128/s_fmal.c: Include <tininess.h>.
38010         (__fmal): Do not extract and scale down low bits on after-rounding
38011         systems when result rounded to normal precision would have normal
38012         exponent.
38013         * sysdeps/ieee754/ldbl-96/s_fmal.c: Include <tininess.h>.
38014         (__fmal): Do not extract and scale down low bits on after-rounding
38015         systems when result rounded to normal precision would have normal
38016         exponent.
38017         * math/libm-test.inc (UNDERFLOW_EXCEPTION_BEFORE_ROUNDING): New
38018         macro.
38019         (fma_test): Add more tests.
38020         (fma_test_towardzero): Likewise.
38021         (fma_test_downward): Likewise.
38022         (fma_test_upward): Likewise.
38024 2012-10-30  H.J. Lu  <hongjiu.lu@intel.com>
38026         * sysdeps/i386/tininess.h: Renamed to ...
38027         * sysdeps/x86/tininess.h: This.
38028         * sysdeps/x86_64/tininess.h: Removed.
38030 2012-10-30  Joseph Myers  <joseph@codesourcery.com>
38032         * elf/Makefile ($(objpfx)tst-array1.out): Depend on comparison
38033         input.  Use $(build-program-cmd).
38034         ($(objpfx)tst-array1-static.out): Likewise.
38035         ($(objpfx)tst-array2.out): Likewise.
38036         ($(objpfx)tst-array3.out): Likewise.
38037         ($(objpfx)tst-array4.out): Likewise.
38038         ($(objpfx)tst-array5.out): Likewise.
38039         ($(objpfx)tst-array5-static.out): Likewise.
38041 2012-10-30  Chris Metcalf  <cmetcalf@tilera.com>
38043         * elf/dl-load.c (_dl_map_object_from_fd): Call DL_AFTER_LOAD
38044         if defined.
38046         * nss/nsswitch.h (nss_interface_function): Provide new
38047         macro for use with NSS functions.
38048         * grp/initgroups.c: Use new macro.
38049         * nss/getXXbyYY.c: Likewise.
38050         * nss/getXXbyYY_r.c: Likewise.
38051         * nss/getXXent.c: Likewise.
38052         * nss/getXXent_r.c: Likewise.
38053         * sysdeps/posix/getaddrinfo.c: Likewise.
38055 2012-10-30  Andreas Jaeger  <aj@suse.de>
38057         * po/ru.po: Update Russion translation from translation project.
38059 2012-10-30  Joseph Myers  <joseph@codesourcery.com>
38061         [BZ #14152]
38062         [BZ #14783]
38063         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Extract low bits of
38064         result and shift together with sticky bit instead of replicating
38065         round-to-nearest rounding.
38066         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
38067         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
38068         * math/libm-test.inc (fma_test): Add more tests.  Do not permit
38069         missing underflow exceptions.
38070         (fma_test_towardzero): Add more tests.
38071         (fma_test_downward): Likewise.
38072         (fma_test_upward): Likewise.
38074         [BZ #14047]
38075         * sysdeps/generic/tininess.h: New file.
38076         * sysdeps/i386/tininess.h: Likewise.
38077         * sysdeps/sh/tininess.h: Likewise.
38078         * sysdeps/x86_64/tininess.h: Likewise.
38079         * stdlib/tst-strtod-underflow.c: Likewise.
38080         * stdlib/tst-tininess.c: Likewise.
38081         * stdlib/strtod_l.c: Include <tininess.h>.
38082         (round_and_return): Do not set errno for exact underflow cases.
38083         Force an underflow exception when setting errno for underflow.
38084         Determine underflow based on rounding to normal precision if
38085         TININESS_AFTER_ROUNDING.
38086         * stdlib/tst-strtod.c (tests): Do not expect errno to be set to
38087         ERANGE for exact underflow cases.
38088         * stdlib/Makefile (tests): Add tst-tininess and
38089         tst-strtod-underflow.
38090         ($(objpfx)tst-tininess): Use $(link-libm).
38091         ($(objpfx)tst-strtod-underflow): Likewise.
38093 2012-10-30  Andreas Jaeger  <aj@suse.de>
38095         [BZ#14767]
38096         * elf/Makefile (tests): Remove conditional for have-initfini-array
38097         since this is now always required and the variable does not exist
38098         anymore.
38099         (tests-static): Likewise.
38100         (modules-names): Likewise.
38102         * po/eo.po: Add Esperanto translation from translation project.
38104         * elf/tst-array1.c (fini_array): Make writeable so that it can be
38105         merged with constructor/destructor.
38106         (init_array): Likewise.
38107         * elf/tst-array2dep.c (fini_array): Likewise.
38108         (init_array): Likewise.
38110 2012-10-29  Mike Frysinger  <vapier@gentoo.org>
38112         * manual/message.texi: Delete @cartouche tags.
38114 2012-10-29  Pino Toscano  <toscano.pino@tiscali.it>
38116         * sysdeps/mach/hurd/fdatasync.c: Turn ERR into EINVAL if it is
38117         EOPNOTSUPP.
38118         * sysdeps/mach/hurd/fsync.c: Likewise.
38120         * sysdeps/pthread/aio_notify.c (__aio_notify_only)
38121         [_POSIX_REALTIME_SIGNALS]: Change condition to
38122         [_POSIX_REALTIME_SIGNALS > 0].
38124 2012-10-27  Andreas Jaeger  <aj@suse.de>
38126         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h (__O_LARGEFILE)
38127         [!__x86_64]: Do not define, take value from <bits/fcntl-linux.h>.
38128         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (__O_LARGEFILE):
38129         [__WORDSIZE != 64]: Likewise.
38131 2012-10-26  H.J. Lu  <hongjiu.lu@intel.com>
38133         *  iconvdata/tst-table.sh: Remove ${SHELL}.
38134         *  iconvdata/tst-tables.sh: Likewise.
38136 2012-10-25  David S. Miller  <davem@davemloft.net>
38138         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
38139         (__get_clockfreq_via_proc_openprom): Use strtoumax instead
38140         of strtoull.
38142         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Add comments for
38143         ifunc-impl-list.c
38144         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
38145         * sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c: New file.
38146         * sysdeps/sparc/sparc32/sparcv9/multiarch/ifunc-impl-list.c: New
38147         file.
38149 2012-10-25  Roland McGrath  <roland@hack.frob.com>
38151         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
38152         (__get_clockfreq_via_proc_openprom): Use __getdents instead of
38153         __getdirentries.
38155 2012-10-25  Joseph Myers  <joseph@codesourcery.com>
38156             Jim Blandy  <jimb@codesourcery.com>
38158         * scripts/cross-test-ssh.sh: New file.
38159         * manual/install.texi (Configuring and compiling): Document use of
38160         cross-test-ssh.sh.
38161         * INSTALL: Regenerated.
38163 2012-10-25  Pino Toscano  <toscano.pino@tiscali.it>
38165         * sysdeps/mach/hurd/ptrace.c (ptrace): Use __hurd_fail to return
38166         EOPNOTSUPP.
38168 2012-10-25  Joseph Myers  <joseph@codesourcery.com>
38170         * Makeconfig (run-program-prefix): Fix comment.
38172 2012-10-24  Joseph Myers  <joseph@codesourcery.com>
38173             Jim Blandy  <jimb@codesourcery.com>
38175         * Makeconfig (test-wrapper): New variable,
38176         (test-wrapper-env): Likewise.
38177         [$(cross-compiling) = yes && $(test-wrapper) != ""]
38178         (run-built-tests): Define to yes.
38179         (run-program-prefix): Use $(test-wrapper).
38180         (built-program-cmd): Likewise.
38181         * Rules (make-test-out): Use $(test-wrapper-env) and
38182         $(host-built-program-cmd).
38183         * elf/Makefile ($(objpfx)order.out): Use $(test-wrapper).
38184         ($(objpfx)tst-pathopt.out): Pass $(test-wrapper-env) to
38185         tst-pathopt.sh.
38186         ($(objpfx)tst-rtld-load-self.out): Pass $(test-wrapper) and
38187         $(test-wrapper-env) to tst-rtld-load-self.sh.
38188         ($(objpfx)order2.out): Use $(test-wrapper).
38189         ($(objpfx)tst-initorder.out): Likewise.
38190         ($(objpfx)tst-initorder2.out): Likewise.
38191         ($(objpfx)tst-unused-dep.out): Use $(test-wrapper-env).
38192         * elf/tst-pathopt.sh (run_program_prefix): Remove unused variable.
38193         (test_wrapper_env): New variable.  Use it to run ld.so.
38194         * elf/tst-rtld-load-self.sh (test_wrapper): New variable.
38195         Use it to run ld.so.
38196         (test_wrapper_env): Likewise.
38197         * iconvdata/Makefile ($(objpfx)iconv-test.out): Pass
38198         $(test-wrapper) to run-iconv-test.sh.
38199         * iconvdata/run-iconv-test.sh (test_wrapper): New variable.
38200         (ICONV): Use $test_wrapper.
38201         * posix/Makefile ($(objpfx)globtest.out): Pass
38202         $(run-via-rtld-prefix), $(test-wrapper) and $(test-wrapper-env) to
38203         globtest.sh, not $(run-program-prefix).
38204         * posix/globtest.sh (run_via_rtld_prefix): New variable.
38205         (test_wrapper): Likewise.
38206         (test_wrapper_env): Likewise.  Use it to run globtest with HOME
38207         set together with run_via_rtld_prefix.
38208         (run_program_prefix): Define in terms of test_wrapper and
38209         run_via_rtld_prefix.
38211 2012-10-24  Roland McGrath  <roland@hack.frob.com>
38213         * nscd/Makefile ($(objpfx)nscd): Remove librt dependency.
38214         * posix/Makefile ($(objpfx)tst-regex, $(objpfx)tst-regex2):
38215         Targets removed.
38217         [BZ #14743]
38218         * include/time.h: Remove librt_hidden_proto (clock_gettime).
38219         Declare __clock_getres, __clock_gettime, __clock_settime,
38220         __clock_nanosleep, and __clock_getcpuclockid.
38221         * rt/clock_gettime.c: Define __clock_gettime as an alias.
38222         Remove librt_hidden_def (clock_gettime).
38223         * sysdeps/unix/clock_gettime.c: Likewise.
38224         * rt/clock_getcpuclockid.c: Define __clock_getcpuclockid as an alias.
38225         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: Likewise.
38226         * rt/clock_getres.c: Define __clock_getres as an alias.
38227         * sysdeps/posix/clock_getres.c: Likewise.
38228         * rt/clock_settime.c: Define __clock_settime as an alias.
38229         * sysdeps/unix/clock_settime.c: Likewise.
38230         * rt/clock_nanosleep.c: Define __clock_nanosleep as an alias.
38231         * sysdeps/unix/clock_nanosleep.c: Likewise.
38232         * sysdeps/unix/sysv/linux/clock_nanosleep.c: Likewise.
38233         * rt/clock-compat.c: New file.
38234         * rt/Makefile (librt-routines): Add clock-compat and move
38235         $(clock-routines) to ...
38236         (routines): ... here, new variable.
38237         * sysdeps/unix/sysv/linux/powerpc/Makefile (sysdep_routines):
38238         Don't add get_clockfreq here.
38239         * rt/Versions (libc: GLIBC_2.17): New version set.
38240         Add clock_* symbols here.
38241         (libc: GLIBC_PRIVATE): New version set.  Add __clock_* symbols here.
38242         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist
38243         (GLIBC_2.17): Add clock_* symbols.
38244         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Likewise.
38245         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Likewise.
38246         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
38247         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
38248         Likewise.
38249         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
38250         Likewise.
38251         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
38252         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Likewise.
38253         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Likewise.
38254         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Likewise.
38255         * NEWS: Mention the move.
38257         * sysdeps/unix/sysv/linux/i386/get_clockfreq.c (__get_clockfreq):
38258         Use __open, __read, __close rather than their public counterparts.
38259         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
38260         (__get_clockfreq_via_cpuinfo): Likewise.
38261         (__get_clockfreq_via_proc_openprom): Likewise, and __getdirentries.
38262         (__get_clockfreq_via_dev_openprom): Likewise, and __ioctl.
38264         * config.h.in (HAVE_IFUNC): New #undef.
38265         * configure.in: Define it if libc_cv_ld_gnu_indirect_function
38266         was successful.
38267         * configure: Regenerated.
38269 2012-10-24  Mike Frysinger  <vapier@gentoo.org>
38271         * configure.in: Move READELF check to start of file.
38272         (libc_cv_ld_gnu_indirect_function): Change to a link test. Rename from
38273         libc_cv_asm_gnu_indirect_function in the process.
38274         * configure: Regenerated.
38276 2012-10-24  Mike Frysinger  <vapier@gentoo.org>
38278         * configure.in (libc_cv_gcc_static_libgcc): Drop -q flag to grep and
38279         send the output to /dev/null.
38280         (libc_cv_cc_with_libunwind): Likewise.
38281         (libc_cv_as_noexecstack): Likewise.
38282         * configure: Regenerate.
38284 2012-10-24  Joseph Myers  <joseph@codesourcery.com>
38286         * io/ftwtest-sh (tmp): Define to ${objpfx}io, not using `pwd`.
38288         * posix/globtest.sh (TMPDIR): Do not set.
38289         (testdir): Define using ${common_objpfx}posix not $TMPDIR.
38290         (testout): Likewise.
38292 2012-10-24  Andreas Jaeger  <aj@suse.de>
38294         * io/fcntl.h: Always define mode_t, off_t, pid_t and use these
38295         types for creat, creat64, lockf, posix_fadvise, posix_fallocate.
38296         [__USE_LARGEFILE64 && !__off64_t_defined]: Define off64_t.
38297         [__USE_LARGEFILE64]: Use off64_t in declaration of lock64,
38298         posix_fadvise64, posix_fallocate64.
38300         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h (F_GETLK, F_SETLK)
38301         (F_SETLKW) [__x86_64]: Remove, provided by <bits/fcntl-linux.h>.
38302         (F_GETLK, F_SETLK, F_SETLKW) [!__USE_FILE_OFFSET64 && !__x86_64__]:
38303         Likewise.
38304         (F_GETLK, F_SETLK, F_SETLKW) [__USE_FILE_OFFSET64 && ! __x86_64__]:
38305         Likewise.
38306         (F_GETLK64, F_SETLK64, F_SETLKW64) [!__x86_64__]: Likewise.
38308         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (F_GETLK, F_SETLK)
38309         (F_SETLKW) [__USE_FILE_OFFSET64]: Remove, provided by
38310         <bits/fcntl-linux.h>.
38311         (F_GETLK64, F_SETLK64, F_SETLKW64) [__WORDSIZE == 64]: Likewise.
38313         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (F_DUPFD, F_GETFD)
38314         (F_SETFD, F_GETFL, F_SETFL): Remove, provided by <bits/fcntl-linux.h>.
38315         (F_GETLK, F_SETLK, F_SETLKW) [__WORDSIZE == 64]: Likewise.
38316         (F_GETLK, F_SETLK, F_SETLKW, F_GETLK64, F_SETLK64, F_SETLKW64)
38317         [__WORDSIZE != 64]: Likewise.
38319 2012-10-23  Joseph Myers  <joseph@codesourcery.com>
38321         * Makeconfig (run-built-tests): New variable.
38322         * Rules [$(cross-compiling) = yes]: Change condition to
38323         [$(run-built-tests) = no].
38324         * catgets/Makefile [$(cross-compiling) != yes]: Change condition
38325         to [$(run-built-tests) = yes].
38326         * elf/Makefile [$(cross-compiling) = no]: Likewise
38327         * grp/Makefile [$(cross-compiling) = no]: Likewise.
38328         * iconv/Makefile [$(cross-compiling) != yes]: Likewise.
38329         * iconvdata/Makefile [$(cross-compiling) = no]: Likewise.
38330         * intl/Makefile [$(cross-compiling) = no]: Likewise.
38331         * io/Makefile [$(cross-compiling) = no]: Likewise.
38332         * libio/Makefile [$(cross-compiling) = no]: Likewise.
38333         * malloc/Makefile [$(cross-compiling) = no]: Likewise.
38334         * misc/Makefile [$(cross-compiling) = no]: Likewise.
38335         * posix/Makefile [$(cross-compiling) = no]: Likewise.
38336         * resolv/Makefile [$(cross-compiling) = no]: Likewise.
38337         * stdio-common/Makefile [$(cross-compiling) = no]: Likewise.
38338         * stdlib/Makefile [$(cross-compiling) = no]: Likewise.
38339         * string/Makefile [$(cross-compiling) = no]: Likewise.
38341         * posix/Makefile ($(objpfx)globtest.out): Pass
38342         $(run-program-prefix) to globtest.sh, not $(elf-objpfx) and
38343         $(rtld-installed-name).
38344         * posix/globtest.sh (elf_objpfx): Remove variable.
38345         (rtld_installed_name): Likewise.
38346         (library_path): Likewise.
38347         (run_program_prefix): New variable.  Use for running globtest
38348         binary.
38350 2012-10-23  Jim Blandy  <jimb@codesourcery.com>
38351             Joseph Myers  <joseph@codesourcery.com>
38353         * Makeconfig (host-built-program-cmd): New variable.
38354         * elf/Makefile (tst-stackguard1-ARGS): Use
38355         $(host-built-program-cmd).
38356         * posix/Makefile (tst-exec-ARGS): Use $(host-built-program-cmd).
38357         (tst-spawn-ARGS): Likewise.
38358         * rt/Makefile (tst-mqueue7-ARGS): Use $(host-built-program-cmd).
38360 2012-10-23  Joseph Myers  <joseph@codesourcery.com>
38361             Jim Blandy  <jimb@codesourcery.com>
38363         * Makeconfig (run-via-rtld-prefix): New variable.
38364         (run-program-prefix): Define in terms of $(run-via-rtld-prefix).
38365         (built-program-cmd): Likewise.
38367 2012-10-22  Andreas Jaeger  <aj@suse.de>
38369         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (O_RSYNC): Define to
38370         __O_RSYNC if it exists, otherwise to O_SYNC.
38372 2012-10-22  Jim Blandy  <jimb@codesourcery.com>
38373             Joseph Myers  <joseph@codesourcery.com>
38375         * iconvdata/run-iconv-test.sh: Redirect iconv stdin in loops from
38376         /dev/null.
38377         * iconvdata/tst-tables.sh: Redirect tst-table.sh stdin in loop
38378         from /dev/null
38379         * posix/tst-getconf.sh: Redirect getconf stdin in loop from
38380         /dev/null.
38382 2012-10-22  Andreas Jaeger  <aj@suse.de>
38384         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (__O_LARGEFILE):
38385         Define always.
38386         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (__O_LARGEFILE): Likewise.
38388         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
38389         bits/fcntl-linux.h.
38391         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (F_GETLK, F_SETLK)
38392         (F_SETLKW) [!F_GETLK]: Define values for [!__USE_FILE_OFFSET64].
38394         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (O_LARGEFILE): Rename
38395         to __O_LARGEFILE.
38396         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_LARGEFILE): Rename
38397         to __O_LARGEFILE.
38399 2012-10-21  Jim Blandy  <jimb@codesourcery.com>
38400             Joseph Myers  <joseph@codesourcery.com>
38402         * config.make.in (NM): New variable.
38404 2012-10-21  Andreas Jaeger  <aj@suse.de>
38406         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Remove all
38407         definitions and declarations that are provided by
38408         <bits/fcntl-linux.h> and include <bits/fcntl-linux.h>.
38410 2012-10-20  H.J. Lu  <hongjiu.lu@intel.com>
38412         [BZ #14683]
38413         * elf/Makefile (tests-static): Add tst-leaks1-static.
38414         (tests): Also depend on $(objpfx)tst-leaks1-static-mem.
38415         ($(objpfx)tst-leaks1-static): New rule.
38416         ($(objpfx)tst-leaks1-static-mem): Likewise.
38417         (tst-leaks1-static-ENV): New macro.
38418         * elf/dl-open.c (dl_open_worker): Check the main application
38419         only if SHARED is defined.
38420         * elf/tst-leaks1-static.c: New file.
38422 2012-10-20  Andreas Jaeger  <aj@suse.de>
38424         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: New file, contains
38425         generic values for Linux.
38426         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h: Remove all definitions
38427         and declarations that are provided by <bits/fcntl-linux.h> and
38428         include <bits/fcntl-linux.h>.
38429         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
38430         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
38432 2012-10-20  Roland McGrath  <roland@hack.frob.com>
38434         * io/fcntl.h: Move include of <bits/types.h> to the top and
38435         include it unconditionally.
38437 2012-10-20  H.J. Lu  <hongjiu.lu@intel.com>
38439         * wcsmbs/Makefile (tests-ifunc): New variable.
38440         (tests): Add $(tests-ifunc).
38441         * wcsmbs/test-wcschr-ifunc.c: New file.
38442         * wcsmbs/test-wcscmp-ifunc.c: Likewise.
38443         * wcsmbs/test-wcscpy-ifunc.c: Likewise.
38444         * wcsmbs/test-wcslen-ifunc.c: Likewise.
38445         * wcsmbs/test-wcsrchr-ifunc.c: Likewise.
38446         * wcsmbs/test-wmemcmp-ifunc.c: Likewise.
38448         * string/Makefile (tests-ifunc): New variable.
38449         (tests): Add $(tests-ifunc).
38450         * string/test-memccpy.c (TEST_NAME): New macro.
38451         * string/test-memchr.c (TEST_NAME): Likewise.
38452         * string/test-memcmp.c (TEST_NAME): Likewise.
38453         * string/test-memcpy.c (TEST_NAME): Likewise.
38454         * string/test-memmem.c (TEST_NAME): Likewise.
38455         * string/test-memmove.c (TEST_NAME): Likewise.
38456         * string/test-memset.c (TEST_NAME): Likewise.
38457         * string/test-rawmemchr.c (TEST_NAME): Likewise.
38458         * string/test-stpcpy.c (TEST_NAME): Likewise.
38459         * string/test-stpncpy.c (TEST_NAME): Likewise.
38460         * string/test-strcasecmp.c (TEST_NAME): Likewise.
38461         * string/test-strcasestr.c (TEST_NAME): Likewise.
38462         * string/test-strcat.c (TEST_NAME): Likewise.
38463         * string/test-strchr.c (TEST_NAME): Likewise.
38464         * string/test-strcmp.c(TEST_NAME): Likewise.
38465         * string/test-strcpy.c (TEST_NAME): Likewise.
38466         * string/test-strcspn.c (TEST_NAME): Likewise.
38467         * string/test-strlen.c (TEST_NAME): Likewise.
38468         * string/test-strncasecmp.c (TEST_NAME): Likewise.
38469         * string/test-strncmp.c (TEST_NAME): Likewise.
38470         * string/test-strncpy.c (TEST_NAME): Likewise.
38471         * string/test-strnlen.c (TEST_NAME): Likewise.
38472         * string/test-strpbrk.c (TEST_NAME): Likewise.
38473         * string/test-strrchr.c (TEST_NAME): Likewise.
38474         * string/test-strspn.c (TEST_NAME): Likewise.
38475         * string/test-strstr.c (TEST_NAME): Likewise.
38476         * string/test-bcopy-ifunc.c: New file.
38477         * string/test-bzero-ifunc.c: Likewise.
38478         * string/test-memccpy-ifunc.c: Likewise.
38479         * string/test-memchr-ifunc.c: Likewise.
38480         * string/test-memcmp-ifunc.c: Likewise.
38481         * string/test-memcpy-ifunc.c: Likewise.
38482         * string/test-memmem-ifunc.c: Likewise.
38483         * string/test-memmove-ifunc.c: Likewise.
38484         * string/test-mempcpy-ifunc.c: Likewise.
38485         * string/test-memset-ifunc.c: Likewise.
38486         * string/test-rawmemchr-ifunc.c: Likewise.
38487         * string/test-stpcpy-ifunc.c: Likewise.
38488         * string/test-stpncpy-ifunc.c: Likewise.
38489         * string/test-strcasecmp-ifunc.c: Likewise.
38490         * string/test-strcasestr-ifunc.c: Likewise.
38491         * string/test-strcat-ifunc.c: Likewise.
38492         * string/test-strchr-ifunc.c: Likewise.
38493         * string/test-strchrnul-ifunc.c: Likewise.
38494         * string/test-strcmp-ifunc.c: Likewise.
38495         * string/test-strcpy-ifunc.c: Likewise.
38496         * string/test-strcspn-ifunc.c: Likewise.
38497         * string/test-strlen-ifunc.c: Likewise.
38498         * string/test-strncasecmp-ifunc.c: Likewise.
38499         * string/test-strncat-ifunc.c: Likewise.
38500         * string/test-strncmp-ifunc.c: Likewise.
38501         * string/test-strncpy-ifunc.c: Likewise.
38502         * string/test-strnlen-ifunc.c: Likewise.
38503         * string/test-strpbrk-ifunc.c: Likewise.
38504         * string/test-strrchr-ifunc.c: Likewise.
38505         * string/test-strspn-ifunc.c: Likewise.
38506         * string/test-strstr-ifunc.c: Likewise.
38508         * debug/Makefile (tests-ifunc): New variable.
38509         (tests): Add $(tests-ifunc).
38510         * debug/test-stpcpy_chk.c (TEST_NAME): New macro.
38511         * debug/test-strcpy_chk.c (TEST_NAME): Likewise.
38512         * debug/test-stpcpy_chk-ifunc.c: New file.
38513         * debug/test-strcpy_chk-ifunc.c: Likewise.
38515 2012-10-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
38517         [BZ #13601]
38518         * elf/dl-load.c (open_verify): Retry read if the entire ELF
38519         header is not read in.
38521 2012-10-19  Joseph Myers  <joseph@codesourcery.com>
38523         * io/Makefile ($(objpfx)ftwtest.out): Depend on ftwtest-sh.  Pass
38524         script to $(SHELL) as $<.  Pass $(common-objpfx) to script
38525         directly.  Pass built executable to script as
38526         $(built-program-cmd).
38527         * io/ftwtest-sh (ldso): Remove variable.  Run ftwtest directly as
38528         $testprogram without using LD_LIBRARY_PATH and $ldso.
38530         * grp/Makefile ($(objpfx)tst_fgetgrent.out): Pass
38531         $(run-program-prefix) to tst_fgetgrent.sh, not $(elf-objpfx) and
38532         $(rtld-installed-name).
38533         * grp/tst_fgetgrent.sh (elf_objpfx): Remove variable.
38534         (rtld_installed_name): Likewise.
38535         (library_path): Likewise.
38536         (run_program_prefix): New variable.  Use it to run tst_fgetgrent.
38537         * iconvdata/Makefile ($(objpfx)tst-tables.out): Pass
38538         $(run-program-prefix) to tst-tables.sh.
38539         * iconvdata/tst-table.sh (run_program_prefix): New variable.  Use
38540         it to run tst-table-from and tst-table-to.
38541         * iconvdata/tst-tables.sh (run_program_prefix): New variable.
38542         Pass it to tst-table.sh.
38543         * intl/Makefile ($(objpfx)tst-gettext.out): Pass
38544         $(run-program-prefix) to tst-gettext.sh.
38545         ($(objpfx)tst-translit.out): Pass $(run-program-prefix) to
38546         tst-translit.sh.
38547         ($(objpfx)tst-gettext2.out): Pass $(run-program-prefix) to
38548         tst-gettext2.sh.
38549         * intl/tst-gettext.sh (run_program_prefix): New variable.  Use it
38550         to run tst-gettext.
38551         * intl/tst-gettext2.sh (run_program_prefix): New variable.  Use it
38552         to run tst-gettext2.
38553         * intl/tst-translit.sh (run_program_prefix): New variable.  Use it
38554         to run tst-translit.
38555         * malloc/Makefile ($(objpfx)tst-mtrace.out): Pass
38556         $(run-program-prefix) to tst-mtrace.sh.
38557         * malloc/tst-mtrace.sh (run_program_prefix): New variable.  Use it
38558         to run tst-mtrace.
38559         * posix/Makefile ($(objpfx)wordexp-tst.out): Pass
38560         $(run-program-prefix) to wordexp-tst.sh, not $(elf-objpfx) and
38561         $(rtld-installed-name).
38562         * posix/wordexp-tst.sh (elf_objpfx): Remove variable.
38563         (rtld_installed_name): Likewise.
38564         (run_program_prefix): New variable.  Use it to run wordexp-test.
38566         * Makeconfig (ARCH): Remove all definitions.
38567         (machine): Likewise.
38568         [ARCH]: Remove conditional code.
38569         [!objdir]: Give error.
38570         [!objdir] (objpfx): Remove.
38571         [!objdir] (common-objpfx): Likewise.
38572         [!objdir] (common-objdir): Likewise.
38573         * configure.in (config_makefile): Remove.  Hardcode Makefile in
38574         AC_CONFIG_FILES call.
38575         * configure: Regenerated.
38577         [BZ #13888]
38578         * io/ftwtest-sh (tmp): Set to use the working directory, not /tmp
38579         or TMPDIR.
38580         (testout): Likewise.
38582         * posix/Makefile ($(objpfx)tst-getconf.out): Pass
38583         $(built-program-cmd) to tst-getconf.sh, not $(elf-objpfx) and
38584         $(rtld-installed-name).
38585         * posix/tst-getconf.sh (elf_objpfx): Remove variable.
38586         (rtld_installed_name): Likwise.
38587         (runit): Remove function.
38588         (run_getconf): New variable,  Use it for running getconf binary.
38590 2012-10-18  H.J. Lu  <hongjiu.lu@intel.com>
38592         [BZ #14716]
38593         * string/test-memmem.c (check_result): New function.
38594         (do_one_test): Use it.
38595         (check1): New function.
38596         (test_main): Use it.
38598 2012-10-18  Markus Trippelsdorf  <markus@trippelsdorf.de>
38600         * math/Makefile: Comment on slow compilation of test-tgmath2.c.
38602 2012-10-18  Joseph Myers  <joseph@codesourcery.com>
38604         * sysdeps/generic/_G_config.h (_G_OPEN64): Remove.
38605         (_G_LSEEK64): Likewise.
38606         (_G_MMAP64): Likewise.
38607         (_G_FSTAT64): Likewise.
38608         * sysdeps/unix/sysv/linux/_G_config.h (_G_OPEN64): Remove.
38609         (_G_LSEEK64): Likewise.
38610         (_G_MMAP64): Likewise.
38611         (_G_FSTAT64): Likewise.
38612         * libio/fileops.c (mmap_remap_check) [_G_MMAP64]: Make code
38613         unconditional.  Call __mmap64 directly.
38614         (mmap_remap_check) [!_G_MMAP64]: Remove conditional code.
38615         (mmap_remap_check) [_G_LSEEK64]: Make code unconditional.  Call
38616         __lseek64 directly.
38617         (mmap_remap_check) [!_G_LSEEK64]: Remove conditional code.
38618         (decide_maybe_mmap) [_G_MMAP64]: Make code unconditional.  Call
38619         __mmap64 directly.
38620         (decide_maybe_mmap) [!_G_MMAP64]: Remove conditional code.
38621         (decide_maybe_mmap) [_G_LSEEK64]: Make code unconditional.  Call
38622         __lseek64 directly.
38623         (decide_maybe_mmap) [!_G_LSEEK64]: Remove conditional code.
38624         (_IO_file_sync_mmap) [_G_LSEEK64]: Make code unconditional.  Call
38625         __lseek64 directly.
38626         (_IO_file_sync_mmap) [!_G_LSEEK64]: Remove conditional code.
38627         (_IO_file_seek) [_G_LSEEK64]: Make code unconditional.  Call
38628         __lseek64 directly.
38629         (_IO_file_seek) [!_G_LSEEK64]: Remove conditional code.
38630         (_IO_file_stat) [_G_FSTAT64]: Make code unconditional.  Call
38631         __fxstat64 directly.
38632         (_IO_file_stat) [!_G_FSTAT64]: Remove conditional code.
38633         * libio/freopen64.c (freopen64) [_G_OPEN64]: Make code
38634         unconditional.
38635         (freopen64) [!_G_OPEN64]: Remove conditional code.
38636         * libio/fseeko64.c (fseeko64) [_G_LSEEK64]: Make code
38637         unconditional.
38638         (fseeko64) [!_G_LSEEK64]: Remove conditional code.
38639         * libio/ftello64.c (ftello64) [_G_LSEEK64]: Make code
38640         unconditional.
38641         (ftello64) [!_G_LSEEK64]: Remove conditional code.
38642         * libio/iofgetpos64.c (_IO_new_fgetpos64) [_G_LSEEK64]: Make code
38643         unconditional.
38644         (_IO_new_fgetpos64) [!_G_LSEEK64]: Remove conditional code.
38645         * libio/iofopen64.c (_IO_fopen64) [_G_OPEN64]: Make code
38646         unconditional.
38647         (_IO_fopen64) [!_G_OPEN64]: Remove conditional code.
38648         * libio/iofsetpos64.c (_IO_new_fsetpos64) [_G_LSEEK64]: Make code
38649         unconditional.
38650         (_IO_new_fsetpos64) [!_G_LSEEK64]: Remove conditional code.
38651         * libio/oldiofgetpos64.c (_IO_old_fgetpos64) [_G_LSEEK64]: Make code
38652         unconditional.
38653         (_IO_old_fgetpos64) [!_G_LSEEK64]: Remove conditional code.
38654         * libio/oldiofsetpos64.c (_IO_old_fsetpos64) [_G_LSEEK64]: Make code
38655         unconditional.
38656         (_IO_old_fsetpos64) [!_G_LSEEK64]: Remove conditional code.
38658 2012-10-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
38660         [BZ #12140]
38661         * manual/memory.texi (Malloc Tunable Parameters): Add note
38662         about free list pointers overwriting some perturb bytes.
38663         Wording suggested by Roland McGrath.
38665 2012-10-17  Joseph Myers  <joseph@codesourcery.com>
38667         * math/libm-test.inc (gamma_test): Do not call feclearexcept.
38668         (lgamma_test): Likewise.
38669         (tgamma_test): Likewise.
38671 2012-10-16  Florian Weimer  <fweimer@redhat.com>
38673         [BZ #14700]
38674         * sysdeps/posix/opendir.c (MAX_DIR_BUFFER_SIZE): New constant.
38675         (__alloc_dir): Limit buffer to MAX_DIR_BUFFER_SIZE.
38677 2012-10-16  Maxim Kuvyrkov  <maxim@codesourcery.com>
38679         * NEWS: Mention BZ #14716.
38680         * string/str-two-way.h (two_way_short_needle): Fix thinko introduced
38681         when removing AVAILABLE1_USES_J macro.
38683 2012-10-12  H.J. Lu  <hongjiu.lu@intel.com>
38685         * sysdeps/x86/bits/byteswap.h: Include <bits/types.h>.
38686         (__bswap_64): __uint64_t for unsigned 64-bit int.
38688 2012-10-12  Andreas Schwab  <schwab@linux-m68k.org>
38690         * include/string.h (memmem): Declare libc hidden alias.
38691         * string/memmem.c (memmem): Define libc hidden alias.
38692         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Use __open,
38693         __read, __close instead of open, read, close.
38695 2012-10-11  H.J. Lu  <hongjiu.lu@intel.com>
38697         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: New file.
38698         * sysdeps/x86_64/multiarch/memcmp.S (__memcmp_sse2): Make it
38699         global and hidden.
38700         * sysdeps/x86_64/multiarch/memcpy.S (__memcpy_sse2): Likewise.
38701         * sysdeps/x86_64/multiarch/mempcpy.S (__mempcpy_sse2): Likewise.
38702         * sysdeps/x86_64/multiarch/rawmemchr.S (__rawmemchr_sse42):
38703         Likewise.
38704         (__rawmemchr_sse2): Likewise.
38705         * sysdeps/x86_64/multiarch/strcat.S (STRCAT_SSE2): Likewise.
38706         * sysdeps/x86_64/multiarch/strchr.S (__strchr_sse42): Likewise.
38707         (__strchr_sse2): Likewise.
38708         * sysdeps/x86_64/multiarch/strcmp-sse42.S (STRCMP_SSE42): Likewise.
38709         * sysdeps/x86_64/multiarch/strcmp.S (STRCMP_SSE2): Likewise.
38710         (__strcasecmp_sse2): Likewise.
38711         (__strncasecmp_sse2): Likewise.
38712         * sysdeps/x86_64/multiarch/strcpy.S (STRCPY_SSE2): Likewise.
38713         * sysdeps/x86_64/multiarch/strlen.S (__strlen_sse2): Likewise.
38714         * sysdeps/x86_64/multiarch/strnlen.S (__strnlen_sse2): Likewise.
38715         * sysdeps/x86_64/multiarch/strrchr.S (__strrchr_sse42): Likewise.
38716         (__strrchr_sse2): Likewise.
38717         * sysdeps/x86_64/multiarch/memcmp.S: Add comments for
38718         ifunc-impl-list.c.
38719         * sysdeps/x86_64/multiarch/memcpy.S: Likewise.
38720         * sysdeps/x86_64/multiarch/memcpy_chk.S: Likewise.
38721         * sysdeps/x86_64/multiarch/memmove.c: Likewise.
38722         * sysdeps/x86_64/multiarch/memmove_chk.c: Likewise.
38723         * sysdeps/x86_64/multiarch/mempcpy.S: Likewise.
38724         * sysdeps/x86_64/multiarch/mempcpy_chk.S: Likewise.
38725         * sysdeps/x86_64/multiarch/memset.S: Likewise.
38726         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
38727         * sysdeps/x86_64/multiarch/rawmemchr.S: Likewise.
38728         * sysdeps/x86_64/multiarch/stpcpy.S: Likewise.
38729         * sysdeps/x86_64/multiarch/stpncpy.S: Likewise.
38730         * sysdeps/x86_64/multiarch/strcasecmp_l.S: Likewise.
38731         * sysdeps/x86_64/multiarch/strcasestr-c.c: Likewise.
38732         * sysdeps/x86_64/multiarch/strcat.S: Likewise.
38733         * sysdeps/x86_64/multiarch/strchr.S: Likewise.
38734         * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
38735         * sysdeps/x86_64/multiarch/strcpy.S: Likewise.
38736         * sysdeps/x86_64/multiarch/strcspn.S: Likewise.
38737         * sysdeps/x86_64/multiarch/strlen.S: Likewise.
38738         * sysdeps/x86_64/multiarch/strncase_l.S: Likewise.
38739         * sysdeps/x86_64/multiarch/strncat.S: Likewise.
38740         * sysdeps/x86_64/multiarch/strncmp.S: Likewise.
38741         * sysdeps/x86_64/multiarch/strncpy.S: Likewise.
38742         * sysdeps/x86_64/multiarch/strnlen.S: Likewise.
38743         * sysdeps/x86_64/multiarch/strpbrk.S: Likewise.
38744         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
38745         * sysdeps/x86_64/multiarch/strspn.S: Likewise.
38746         * sysdeps/x86_64/multiarch/strstr-c.c: Likewise.
38747         * sysdeps/x86_64/multiarch/wcscpy.S: Likewise.
38748         * sysdeps/x86_64/multiarch/wmemcmp.S: Likewise.
38750         * sysdeps/i386/i686/multiarch/bcopy.S (__bcopy_ia32): Make it
38751         global and hidden.
38752         * sysdeps/i386/i686/multiarch/bzero.S (__bzero_ia32): Likewise.
38753         * sysdeps/i386/i686/multiarch/memcmp.S (__memcmp_ia32): Likewise.
38754         * sysdeps/i386/i686/multiarch/memcpy.S (__memcpy_ia32): Likewise.
38755         * sysdeps/i386/i686/multiarch/memmove.S (__memmove_ia32):
38756         Likewise.
38757         * sysdeps/i386/i686/multiarch/mempcpy.S (__mempcpy_ia32):
38758         Likewise.
38759         * sysdeps/i386/i686/multiarch/strcat.S (STRCAT_IA32): Likewise.
38760         * sysdeps/i386/i686/multiarch/strcmp.S (__STRCMP_IA32): Likewise.
38761         * sysdeps/i386/i686/multiarch/strcpy.S (STRCPY_IA32): Likewise.
38762         * sysdeps/i386/i686/multiarch/bcopy.S: Add comments for
38763         ifunc-impl-list.c.
38764         * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
38765         * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
38766         * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
38767         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
38768         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
38769         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
38770         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
38771         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
38772         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
38773         * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
38774         * sysdeps/i386/i686/multiarch/memset.S: Likewise.
38775         * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
38776         * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
38777         * sysdeps/i386/i686/multiarch/stpcpy.S: Likewise.
38778         * sysdeps/i386/i686/multiarch/stpncpy.S: Likewise.
38779         * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
38780         * sysdeps/i386/i686/multiarch/strcasecmp_l.S: Likewise.
38781         * sysdeps/i386/i686/multiarch/strcasestr-c.c: Likewise.
38782         * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
38783         * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
38784         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
38785         * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
38786         * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
38787         * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
38788         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
38789         * sysdeps/i386/i686/multiarch/strncase_l.S: Likewise.
38790         * sysdeps/i386/i686/multiarch/strncat.S: Likewise.
38791         * sysdeps/i386/i686/multiarch/strncmp.S: Likewise.
38792         * sysdeps/i386/i686/multiarch/strncpy.S: Likewise.
38793         * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
38794         * sysdeps/i386/i686/multiarch/strpbrk.S: Likewise.
38795         * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
38796         * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
38797         * sysdeps/i386/i686/multiarch/strstr-c.c: Likewise.
38798         * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
38799         * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
38800         * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
38801         * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
38802         * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
38803         * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
38804         * sysdeps/i386/i686/multiarch/ifunc-impl-list.c: New file.
38806         * Rules [$(multi-arch) = no] (tests): Filter out $(tests-ifunc).
38807         [$(multi-arch) = no] (xtests): Filter out $(xtests-ifunc).
38808         * include/ifunc-impl-list.h: New file.
38809         * misc/ifunc-impl-list.c: Likewise.
38810         * misc/Makefile (routines): Add ifunc-impl-list.
38811         * misc/Versions (GLIBC_PRIVATE): Add __libc_ifunc_impl_list.
38812         * string/test-string.h: Include <ifunc-impl-list.h>.
38813         (func_list, func_count, impl_count, impl_array) [TEST_IFUNC &&
38814         TEST_NAME]: New variables.
38815         (FOR_EACH_IMPL): Support func_list if TEST_IFUNC and TEST_NAME
38816         are defined.
38817         (test_init): Call __libc_ifunc_impl_list to initialize
38818         func_list if TEST_IFUNC and TEST_NAME are defined.
38820         * string/Makefile (strop-tests): Add bcopy and bzero.
38821         * string/test-bcopy.c: New file.
38822         * string/test-bzero.c: Likewise.
38823         * string/test-memmove.c: Support bcopy test if TEST_BCOPY is
38824         defined.
38825         * string/test-memset.c: Support bzero test if TEST_BZERO is
38826         defined.
38827         * sysdeps/x86_64/multiarch/bcopy.S (bcopy): Jump to
38828         __libc_memmove.
38829         * sysdeps/x86_64/multiarch/bzero.S (__bzero): Jump to
38830         __libc_memset.
38831         * sysdeps/x86_64/multiarch/memset.S (__libc_memset): New alias
38832         of memset.
38834 2012-10-10  Joseph Myers  <joseph@codesourcery.com>
38836         * configure.in: Run $CXX, not cc1plus, to locate C++ headers.
38837         * configure: Regenerated.
38839         * Makeconfig (+link-static-before-libc): Don't include
38840         $(link-static-libc).
38842         * libio/libio.h (_IO_pos_t): Remove.
38844 2012-10-10  Alexandre Oliva <aoliva@redhat.com>
38846         * NEWS: Add note about FIPS mode.  Wording suggested by Roland
38847         McGrath.
38849 2012-10-10  Alexandre Oliva <aoliva@redhat.com>
38851         * crypt/crypt-entry.c: Include fips-private.h.
38852         (__crypt_r, __crypt): Disable MD5 and DES if FIPS is enabled.
38853         * crypt/md5c-test.c (main): Tolerate disabled MD5.
38854         * sysdeps/unix/sysv/linux/fips-private.h: New file.
38855         * sysdeps/generic/fips-private.h: New file, dummy fallback.
38857 2012-10-10  Alexandre Oliva <aoliva@redhat.com>
38859         * crypt/crypt-private.h: Include stdbool.h.
38860         (_ufc_setup_salt_r): Return bool.
38861         * crypt/crypt-entry.c: Include errno.h.
38862         (__crypt_r): Return NULL with EINVAL for bad salt.
38863         * crypt/crypt_util.c (bad_for_salt): New.
38864         (_ufc_setup_salt_r): Check that salt is long enough and within
38865         the specified alphabet.
38866         * crypt/badsalttest.c: New file.
38867         * crypt/Makefile (tests): Add it.
38868         ($(objpfx)badsalttest): New.
38870 2012-10-09  Maxim Kuvyrkov  <maxim@codesourcery.com>
38872         * NEWS: Add entry for BZ #14602.
38874 2012-10-09  Joseph Myers  <joseph@codesourcery.com>
38876         * math/gen-libm-test.pl (parse_args): Handle comparison macros as
38877         type-generic.
38878         * math/libm-test.inc: Update comment listing what functions and
38879         macros are tested.
38880         (isgreater_test): New function.
38881         (isgreaterequal_test): Likewise.
38882         (isless_test): Likewise.
38883         (islessequal_test): Likewise.
38884         (islessgreater_test): Likewise.
38885         (isunordered_test): Likewise.
38886         (main): Call the new functions.
38888 2012-10-09  Roland McGrath  <roland@hack.frob.com>
38890         * aclocal.m4 (GLIBC_PROVIDES): Provide _AS_BASENAME_PREPARE,
38891         _AS_ME_PREPARE, _AS_VAR_ARITH_PREPARE, AS_SHELL_FN_as_fn_set_status,
38892         AS_SHELL_FN_as_fn_exit, AS_SHELL_FN_ac_fn_c_try_compile.
38893         * sysdeps/i386/configure: Regenerated.
38894         * sysdeps/ieee754/ldbl-opt/configure: Regenerated.
38895         * sysdeps/mach/configure: Regenerated.
38896         * sysdeps/mach/hurd/configure: Regenerated.
38897         * sysdeps/powerpc/configure: Regenerated.
38898         * sysdeps/powerpc/powerpc32/configure: Regenerated.
38899         * sysdeps/powerpc/powerpc64/configure: Regenerated.
38900         * sysdeps/s390/s390-32/configure: Regenerated.
38901         * sysdeps/s390/s390-64/configure: Regenerated.
38902         * sysdeps/sh/configure: Regenerated.
38903         * sysdeps/sparc/configure: Regenerated.
38904         * sysdeps/unix/sysv/linux/configure: Regenerated.
38905         * sysdeps/unix/sysv/linux/powerpc/configure: Regenerated.
38906         * sysdeps/x86_64/configure: Regenerated.
38908         * dlfcn/dlerror.c (check_free): Call _dl_addr only if SHARED is
38909         defined.  Don't check if MAP is NULL.
38911 2012-10-09  Joseph Myers  <joseph@codesourcery.com>
38913         * sysdeps/generic/_G_config.h (_G_off64_t): Remove.
38914         (_G_stat64): Likewise.
38915         * sysdeps/unix/sysv/linux/_G_config.h (_G_off64_t): Remove.
38916         (_G_stat64): Likewise.
38917         * libio/filedoalloc.c (_IO_file_doallocate): Use struct stat64
38918         instead of struct _G_stat64.
38919         * libio/fileops.c (mmap_remap_check): Likewise.
38920         (decide_maybe_mmap): Likewise.
38921         (_IO_new_file_seekoff): Likewise.
38922         (_IO_file_stat): Likewise.
38923         * libio/libio.h (_IO_off64_t): Define to __off64_t, not
38924         _G_off64_t.
38925         * libio/oldfileops.c (_IO_old_file_seekoff): Use struct stat64
38926         instead of struct _G_stat64.
38927         * libio/wfileops.c (_IO_wfile_seekoff): Likewise.
38929 2012-10-08  Maxim Kuvyrkov  <maxim@codesourcery.com>
38931         [BZ #14602]
38932         * string/str-two-way.h (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
38933         Replace with ...
38934         (CHECK_EOL): New macro.
38935         (two_way_short_needle): Check beginning of haystack for EOL.  Use
38936         CHECK_EOL.
38937         * string/strcasestr.c (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
38938         Replace with CHECK_EOL.
38939         * string/strstr.c (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
38940         Replace with CHECK_EOL.
38942 2012-10-08  Joseph Myers  <joseph@codesourcery.com>
38944         * math/gen-libm-test.pl (parse_args): Handle isinf and isnan as
38945         type-generic.
38946         * math/libm-test.inc: Update comment listing what functions and
38947         macros are tested.
38948         (finite_test): New function.
38949         (isinf_test): Likewise.
38950         (isnan_test): Likewise.
38951         (fpclassify_test): Test subnormal input.
38952         (isfinite_test): Likewise.
38953         (isnormal_test): Likewise.
38954         (main): Call the new functions.
38956 2012-10-08  Jonathan Nieder  <jrnieder@gmail.com>
38958         [BZ #14660]
38959         * Makerules (%.dynsym): Force C locale when running
38960         $(OBJDUMP) --dynamic-syms.
38962 2012-10-08  Andreas Schwab  <schwab@linux-m68k.org>
38964         * sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c: Include
38965         <stdint.h>.
38967 2012-10-06  David S. Miller  <davem@davemloft.net>
38969         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: On 32-bit, clear
38970         upper 32-bits of the length value in %o2 since we use branch-on-register
38971         tests which consider the entire 64-bit register.
38973 2012-10-06  H.J. Lu  <hongjiu.lu@intel.com>
38975         * string/test-strstr.c (check2): Add a test for page boundary.
38977 2012-10-05  David S. Miller  <davem@davemloft.net>
38979         * sysdeps/sparc/sparc64/multiarch/memset-niagara4.S: New file.
38980         * sysdeps/sparc/sparc32/sparcv9/multiarch/memset-niagara4.S: New
38981         file.
38982         * sysdeps/sparc/sparc64/multiarch/Makefile: Add to
38983         sysdep_routines.
38984         * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Likewise.
38985         * sysdeps/sparc/sparc64/multiarch/memset.S: Use Niagara-4 memset
38986         and bzero when HWCAP_SPARC_CRYPTO is present.
38988 2012-10-05  H.J. Lu  <hongjiu.lu@intel.com>
38990         [BZ #14602]
38991         * string/test-strstr.c (check2): New function.
38992         (test_main): Call check2.
38994         * string/Makefile (tests): Remove bug-strstr1, bug-strcasestr1
38995         and bug-strchr1.
38996         * string/bug-strcasestr1.c (do_test): Moved to ...
38997         * string/test-strcasestr.c (check1): Here.  New function.
38998         (do_one_test): Break out result checking code into ...
38999         (check_result): This.  New function.
39000         (do_one_test): Call check_result.
39001         (test_main): Call check1.
39002         * string/bug-strchr1.c (do_test): Moved to ...
39003         * string/test-strchr.c (check1): Here.  New function.
39004         (do_one_test): Break out result checking code into ...
39005         (check_result): This.  New function.
39006         (do_one_test): Call check_result.
39007         (test_main): Call check1.
39008         * string/bug-strstr1.c (main): Moved to ...
39009         * string/test-strstr.c (check1): Here.  New function.
39010         (do_one_test): Break out result checking code into ...
39011         (check_result): This.  New function.
39012         (do_one_test): Call check_result.
39013         (test_main): Call check1.
39014         * string/bug-strcasestr1.c: Removed.
39015         * string/bug-strchr1.c: Likewise.
39016         * string/bug-strstr1.c: Likewise.
39018         * elf/Makefile (dl-routines): Add hwcaps.
39019         * elf/dl-support.c (_dl_important_hwcaps): Removed.
39020         * elf/dl-sysdep.c (_DL_FIRST_EXTRA): Likewise.
39021         (_dl_important_hwcaps): Moved to ...
39022         * elf/dl-hwcaps.c: Here.  New file.
39023         * sysdeps/mach/hurd/dl-sysdep.c (_dl_important_hwcaps): Removed.
39025         [BZ #14557]
39026         * elf/setup-vdso.h (setup_vdso): Set GL(dl_nns) to 1 for vDSO
39027         if IS_IN_rtld isn't defined.
39029         * elf/dl-support.c (_dl_sysinfo_map): New.
39030         Include "get-dynamic-info.h" and "setup-vdso.h".
39031         (_dl_non_dynamic_init): Call setup_vdso.
39032         * elf/dynamic-link.h: Don't include <assert.h>.
39033         (elf_get_dynamic_info): Moved to ...
39034         * elf/get-dynamic-info.h: Here.  New file.
39035         * elf/dynamic-link.h: Include "get-dynamic-info.h".
39036         * elf/rtld.c (dl_main): Break out vDSO setup code into ...
39037         * elf/setup-vdso.h: Here.  New file.
39038         * elf/rtld.c: Include "setup-vdso.h".
39039         (dl_main): Call setup_vdso.
39041 2012-10-05  Joseph Myers  <joseph@codesourcery.com>
39043         * math/libm-test.inc: List nexttoward, cimag, clog10, conf and
39044         creal in comment listing functions tested.  List finite, isinf,
39045         isnan, isless, islessequal, isgreater, isgreaterequal,
39046         islessgreater, isunordered, lgamma_r and pow10 as functions and
39047         macros not tested.  Mention which functions not tested are aliases
39048         for other functions.  Fix typo.  Note that signs of NaNs are not
39049         tested.
39051         * scripts/config.guess: Update from config.git.
39052         * scripts/config.sub: Likewise.
39054 2012-10-04  Roland McGrath  <roland@hack.frob.com>
39056         * misc/Versions (GLIBC_PRIVATE): New set, add __madvise.
39057         * misc/madvise.c (madvise): Renamed to __madvise.
39058         Make madvise a weak alias.
39059         * include/sys/mman.h: Declare __madvise.
39060         Replace libc_hidden_proto (madvise) with libc_hidden_proto (__madvise).
39061         * sysdeps/unix/syscalls.list
39062         (madvise): Make __madvise the strong name, and madvise a weak alias.
39063         * sysdeps/unix/sysv/linux/syscalls.list
39064         (madvise, mmap): Remove redundant entries.
39065         * malloc/arena.c (shrink_heap): Use __madvise, not madvise.
39066         * malloc/malloc.c (mtrim): Likewise.
39067         * sysdeps/mach/hurd/malloc-machine.h (madvise): Renamed to __madvise.
39069 2012-10-03  Roland McGrath  <roland@hack.frob.com>
39071         * sysdeps/mach/hurd/dl-cache.c: File removed.
39072         * config.h.in (USE_LDCONFIG): New #undef.
39073         * configure.in (use_ldconfig): If set, define USE_LDCONFIG.
39074         * configure: Regenerated.
39075         * elf/Makefile (dl-routines): Add dl-cache only under
39076         [$(use-ldconfig) = yes].
39077         * elf/dl-load.c (_dl_map_object): Conditionalize code consulting the
39078         cache on [USE_LDCONFIG].
39079         * elf/dl-open.c (_dl_open): Call _dl_unload_cache only under
39080         [USE_LDCONFIG].
39081         * elf/rtld.c (dl_main): Likewise.
39083 2012-10-03  Pino Toscano  <toscano.pino@tiscali.it>
39085         * sysdeps/posix/sysconf.c (__sysconf): Return 0 also for
39086         _SC_LEVEL4_CACHE_LINESIZE.
39088 2012-10-03  Roland McGrath  <roland@hack.frob.com>
39090         * sysdeps/unix/bsd/confstr.h: File removed.
39092 2012-10-02  Alexandre Oliva <aoliva@redhat.com>
39094         * scripts/check-local-headers.sh: Exclude sys/sdt.h and
39095         sys/sdt-config.h.
39097 2012-10-02  Roland McGrath  <roland@hack.frob.com>
39099         * elf/dl-load.c (_dl_map_object_from_fd: struct loadcmd):
39100         Make 'mapoff' field ElfW(Off) rather than off_t.
39102 2012-10-02  Dmitry V. Levin  <ldv@altlinux.org>
39104         * nscd/Makefile: Remove nscd-cflags and all its users.
39105         (CPPFLAGS-nonlib): Add preprocessor flags for nscd modules.
39106         (CFLAGS-nonlib): Add compiler flags for nscd modules.
39108         [BZ #10631]
39109         * malloc.c (malloc_printerr): Clarify error message.
39111 2012-10-02  H.J. Lu  <hongjiu.lu@intel.com>
39113         [BZ #14648]
39114         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
39115         Set bit_FMA_Usable if FMA is supported.
39116         * sysdeps/x86_64/multiarch/init-arch.h (bit_FMA_Usable): New
39117         macro.
39118         (bit_FMA4_Usable): Updated.
39119         (index_FMA_Usable): New macro.
39120         (CPUID_FMA): Likewise
39121         (HAS_FMA): Defined with bit_FMA_Usable.
39123 2012-10-01  Roland McGrath  <roland@hack.frob.com>
39125         * bits/types.h (__swblk_t): Type removed.
39126         * bits/typesizes.h (__SWBLK_T_TYPE): Macro removed.
39127         * sysdeps/mach/hurd/bits/typesizes.h (__SWBLK_T_TYPE): Likewise.
39128         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
39129         (__SWBLK_T_TYPE): Likewise.
39130         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
39131         (__SWBLK_T_TYPE): Likewise.
39132         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
39133         (__SWBLK_T_TYPE): Likewise.
39134         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
39135         (__SWBLK_T_TYPE): Likewise.
39137 2012-10-01  Patsy Franklin <pfrankli@redhat.com>
39138             Honza Horak <hhorak@redhat.com>
39140         * nis/yp_xdr.c (xdr_domainname): Use YPMAXDOMAIN as maxsize.
39141         (xdr_mapname): Use YPMAXMAP as maxsize.
39142         (xdr_peername): Use YPMAXPEER as maxsize.
39143         (xdr_keydat): Use YPAXRECORD as maxsize.
39144         (xdr_valdat): Use YPMAXRECORD as maxsize.
39146 2012-10-01  Roland McGrath  <roland@hack.frob.com>
39148         * io/openat.c [!__ASSUME_ATFCTS] (__have_atfcts): New global variable.
39150         * sysdeps/unix/sysv/linux/init-first.c: Moved to ...
39151         * csu/init-first.c: ... here.
39152         * sysdeps/unix/sysv/linux/powerpc/init-first.c: Update #include.
39153         * sysdeps/unix/sysv/linux/s390/init-first.c: Likewise.
39154         * sysdeps/unix/sysv/linux/x86_64/init-first.c: Likewise.
39155         * sysdeps/unix/sysv/linux/x86_64/x32/init-first.c: Likewise.
39156         * sysdeps/i386/init-first.c: File removed.
39157         * sysdeps/sh/init-first.c: File removed.
39159 2012-10-01  Joseph Myers  <joseph@codesourcery.com>
39161         [BZ #14645]
39162         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Compute result as x * y
39163         if x * y might underflow to zero and z is zero.
39164         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
39165         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
39166         * math/libm-test.inc (min_subnorm_value): New variable.
39167         (fma_test): Add more tests.
39168         (fma_test_towardzero): Likewise.
39169         (fma_test_downward): Likewise
39170         (fma_test_upward): Likewise.
39171         (initialize): Set min_subnorm_value.
39173 2012-09-29  Joseph Myers  <joseph@codesourcery.com>
39175         [BZ #14638]
39176         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use x * y + z for exact
39177         0 + 0.
39178         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Use original rounding
39179         mode for addition resulting in exact zero.
39180         * sysdeps/ieee754/ldbl-128/s_fma.c (__fma): Likewise.
39181         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Use x * y + z for
39182         exact 0 + 0.
39183         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
39184         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
39185         * math/libm-test.inc (fma_test): Add more tests.
39186         (fma_test_towardzero): New function.
39187         (fma_test_downward): Likewise.
39188         (fma_test_upward): Likewise.
39189         (main): Call the new functions.
39191 2012-09-28  David S. Miller  <davem@davemloft.net>
39193         * sysdeps/sparc/fpu/libm-test-ulps: Fix garbage in file.
39195 2012-09-28  Roland McGrath  <roland@hack.frob.com>
39197         * sysdeps/posix/sleep.c (__sleep): Rewritten using __nanosleep
39198         instead of SIGALRM.
39200         * sysdeps/gnu/_G_config.h: Moved to ...
39201         * sysdeps/unix/sysv/linux/_G_config.h: ... here.
39202         * sysdeps/mach/hurd/_G_config.h: Moved to ...
39203         * sysdeps/generic/_G_config.h: ... here.
39205         * io/open.c (__open): Renamed to __libc_open.  Make __open an alias.
39207         * posix/Makefile ($(objpfx)config-name.h): Do $(make-target-directory).
39209         * nss/Makefile ($(objpfx)/libnss_test1.so$(libnss_test1.so-version)):
39210         Conditionalize target on [libnss_test1.so-version].
39212         * elf/dl-sysdep.c: Conditionalize whole contents on [SHARED].
39214         * Makeconfig (nssobjdir, resolvobjdir): Remove variables.
39215         (elfobjdir): Move out of conditionals.
39217         * nss/nsswitch.c (nss_new_service): Conditionalize definition and
39218         declaration on [!DO_STATIC_NSS || SHARED], matching its only caller.
39219         (__nss_lookup_function): Conditionalize label remove_from_tree on
39220         [!DO_STATIC_NSS || SHARED], matching its only use.
39222 2012-09-28  David S. Miller  <davem@davemloft.net>
39224         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: New file.
39225         * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy-niagara4.S: New
39226         file.
39227         * sysdeps/sparc/sparc64/multiarch/Makefile: Add to
39228         sysdep_routines.
39229         * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Likewise.
39230         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Use Niagara-4 memcpy
39231         when HWCAP_SPARC_CRYPTO is present.
39233 2012-09-28  Pino Toscano  <toscano.pino@tiscali.it>
39235         * io/tst-mknodat.c: Create a FIFO instead of a socket.
39237 2012-09-28  Andreas Schwab  <schwab@linux-m68k.org>
39239         [BZ #6530]
39240         * stdio-common/vfprintf.c (process_string_arg): Revert
39241         2000-07-22 change.
39243 2011-09-28  Jonathan Nieder  <jrnieder@gmail.com>
39245         * stdio-common/Makefile (tst-sprintf-ENV): Set environment
39246         for testcase.
39247         * stdio-common/tst-sprintf.c: Include <locale.h>
39248         (main): Test sprintf's handling of incomplete multibyte
39249         characters.
39251 2012-09-28  H.J. Lu  <hongjiu.lu@intel.com>
39253         * elf/dl-runtime.c (VERSYMIDX): Removed.
39254         * elf/dl-version.c (VERSYMIDX): Likewise.
39255         * elf/do-rel.h (VERSYMIDX): Likewise.
39256         (VALIDX): Likewise.
39257         * elf/dynamic-link.h (VERSYMIDX): Likewise.
39258         * elf/rtld.c (VALIDX): Likewise.
39259         (ADDRIDX): Likewise.
39260         * sysdeps/sparc/sparc32/dl-machine.h (VALIDX): Likewise.
39261         * sysdeps/sparc/sparc64/dl-machine.h (VALIDX): Likewise.
39262         * sysdeps/x86_64/dl-tlsdesc.h (ADDRIDX): Likewise.
39263         * sysdeps/generic/ldsodefs.h (VERSYMIDX): New macro.
39264         (VALIDX): Likewise.
39265         (ADDRIDX): Likewise.
39267 2012-09-28  Pino Toscano  <toscano.pino@tiscali.it>
39269         * sysdeps/pthread/aio_fsync.c: Fix the file mode checking.
39271 2012-09-28  Dmitry V. Levin  <ldv@altlinux.org>
39273         [BZ #11438]
39274         * sysdeps/posix/getaddrinfo.c (default_scopes): Map RFC 1918 addresses
39275         to global scope.
39276         * posix/tst-rfc3484.c: Verify 10/8, 172.16/12 and 196.128/16
39277         addresses are in the same scope as 192.0.2/24.
39278         * posix/gai.conf: Document new scope table defaults.
39280 2012-09-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
39282         [BZ #5298]
39283         * libio/fileops.c (_IO_new_file_seekoff): Don't flush buffer
39284         for ftell.  Compute offsets from write pointers instead.
39285         * libio/wfileops.c (_IO_wfile_seekoff): Likewise.
39287 2012-09-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
39289         [BZ #14543]
39290         * libio/Makefile (tests): New test case tst-fseek.
39291         * libio/tst-fseek.c: New test case to verify that fseek/ftell
39292         combination works in wide mode.
39293         * libio/wfileops.c (_IO_wfile_seekoff): Adjust internal buffer
39294         state when the external buffer state changes.
39296 2012-09-27  David S. Miller  <davem@davemloft.net>
39298         [BZ #14376]
39299         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Do not
39300         pass reloc->r_addend in as the 'high' argument to
39301         sparc64_fixup_plt when handling R_SPARC_JMP_IREL relocations.
39303         * sysdeps/sparc/fpu/libm-test-ulps: Update.
39305 2012-09-28  Pino Toscano  <toscano.pino@tiscali.it>
39307         * rt/tst-aio2.c: Include <pthread.h>.
39308         * rt/tst-aio3.c: Likewise.
39310 2012-09-27  Steve Ellcey  <sellcey@mips.com>
39312         * sysdeps/ieee754/ldbl-128/bits/huge_vall.h: Remove.
39314 2012-09-27  H.J. Lu  <hongjiu.lu@intel.com>
39316         * sysdeps/x86_64/multiarch/strncmp-ssse3.S: Conditionalize
39317         contents on [SHARED].
39319 2012-09-26  Marek Polacek  <polacek@redhat.com>
39321         [BZ #14530]
39322         [BZ #13741]
39323         * misc/sys/cdefs.h: Define __extern_inline and __extern_always_inline
39324         for C++ and GCC <4.3 as well as for non GCC compilers.
39326 2012-09-26  Markus Trippelsdorf  <markus@trippelsdorf.de>
39328         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
39330 2012-09-25  Roland McGrath  <roland@hack.frob.com>
39332         * Makefile.in (all, install): Declare with .PHONY.
39333         Reported by Michael Hope <michael.hope@linaro.org>.
39335 2012-09-25  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
39337         * manual/platform.texi (PowerPC): Document __ppc_get_timebase_freq.
39338         * sysdeps/powerpc/sys/platform/ppc.h: Include the operating
39339         system header.
39340         * sysdeps/unix/sysv/linux/powerpc/Makefile (sysdep_headers):
39341         Likewise.
39342         (sydep_routines): Add the new and the internal functions.
39343         * sysdeps/unix/sysv/linux/powerpc/bits/ppc.h: New file.
39344         * sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c: Likewise.
39345         * sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions
39346         (GLIBC_2.17): Add the new function.
39347         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist
39348         (GLIBC_2.17): Likewise.
39349         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions
39350         (GLIBC_2.17): Likewise.
39351         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist
39352         (GLIBC_2.17): Likewise.
39353         * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c: New file.
39355 2012-09-25  Alan Modra  <amodra@gmail.com>
39357         * sysdeps/unix/sysv/linux/powerpc/pthread_once.c (__pthread_once):
39358         Add release barrier before setting once_control to say
39359         initialisation is done.  Add hints on lwarx.  Use macro in
39360         place of isync.
39361         (clear_once_control): Add release barrier.
39363 2012-09-25  Joseph Myers  <joseph@codesourcery.com>
39365         [BZ #13629]
39366         * math/s_clog.c (__clog): Handle more values close to |z| = 1
39367         specially.
39368         * math/s_clog10.c (__clog10): Likewise.
39369         * math/s_clog10f.c (__clog10f): Likewise.
39370         * math/s_clog10l.c (__clog10l): Likewise.
39371         * math/s_clogf.c (__clogf): Likewise.
39372         * math/s_clogl.c (__clogl): Likewise.
39373         * math/Makefile (libm-calls): Add x2y2m1.
39374         * sysdeps/generic/math_private.h (__x2y2m1f): Declare.
39375         (__x2y2m1): Likewise.
39376         (__x2y2m1l): Likewise.
39377         * sysdeps/ieee754/dbl-64/x2y2m1.c: New file.
39378         * sysdeps/ieee754/dbl-64/x2y2m1f.c: Likewise.
39379         * sysdeps/ieee754/ldbl-128/x2y2m1l.c: Likewise.
39380         * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
39381         * sysdeps/ieee754/ldbl-96/x2y2m1.c: Likewise.
39382         * sysdeps/ieee754/ldbl-96/x2y2m1l.c: Likewise.
39383         * math/libm-test.inc (clog_test, clog10_test): Add more tests.
39384         * sysdeps/i386/fpu/libm-test-ulps: Update.
39385         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39387         [BZ #14621]
39388         * posix/glob.c (next_brace_sub): Use size_t instead of unsigned
39389         int as type of variable DEPTH.
39390         (glob): Use size_t instead of int as type of variables NEWCOUNT
39391         and OLD_PATHC.
39393 2012-09-25  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
39395         * sysdeps/i386/i686/fpu/multiarch/Makefile (sysdep_routines):
39396         Add s_sincosf-sse2.
39397         * sysdeps/i386/i686/fpu/multiarch/s_sincosf.c: New file.
39398         * sysdeps/i386/i686/fpu/multiarch/s_sincosf-sse2.S: New file.
39399         * sysdeps/ieee754/flt-32/s_sincosf.c (SINCOSF, SINCOSF_FUNC): Add
39400         macros for using routine as __sincosf_ia32.
39401         Use macro for function declaration and weak_alias.
39402         * sysdeps/i386/fpu/libm-test-ulps: Update.
39404         * sysdeps/x86_64/fpu/s_sincosf.S: New file.
39405         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
39407         * math/s_ccoshf.c (__ccoshf): Fix wrong usage of sincos for
39408         subnormal argument.
39409         * math/s_cexpf.c (__cexpf): Likewise.
39410         * math/s_csinf.c (__csinf): Likewise.
39411         * math/s_csinhf.c (__csinhf): Likewise.
39412         * math/s_ctanf.c (__ctanf): Likewise.
39413         * math/s_ctanhf.c (__ctanhf): Likewise.
39414         * math/s_ccosh.c (__ccoshf): Likewise.
39415         * math/s_cexp.c (__cexpl): Likewise.
39416         * math/s_csin.c (__csin): Likewise.
39417         * math/s_csinh.c (__csinh): Likewise.
39418         * math/s_ctan.c (__ctan): Likewise.
39419         * math/s_ctanh.c (ctanh): Likewise.
39420         * math/s_ccoshl.c (__ccoshl): Likewise.
39421         * math/s_cexpl.c (__cexpl): Likewise.
39422         * math/s_csinl.c (__csinl): Likewise.
39423         * math/s_csinhl.c (__csinhl): Likewise.
39424         * math/s_ctanl.c (__ctanl): Likewise.
39425         * math/s_ctanhl.c (__ctanhl): Likewise.
39427 2012-09-25  Joseph Myers  <joseph@codesourcery.com>
39429         * libio/libio.h (_IO_size_t): Define to size_t, not _G_size_t.
39430         (_IO_ssize_t): Define to __ssize_t, not _G_ssize_t.
39431         (_IO_off_t): Define to __off_t, not _G_off_t.
39432         (_IO_pid_t): Define to __pid_t, not _G_pid_t.
39433         (_IO_uid_t): Define to __uid_t, not _G_uid_t.
39434         (_IO_wint_t): Define to wint_t, not _G_wint_t.
39435         * libio/libioP.h (struct _IO_jump_t): Use size_t not _G_size_t as
39436         type of __dummy and __dummy2 fields.
39437         * sysdeps/generic/_G_config.h (_G_size_t): Remove.
39438         (_G_ssize_t): Likewise.
39439         (_G_off_t): Likewise.
39440         (_G_pid_t): Likewise.
39441         (_G_uid_t): Likewise.
39442         (_G_wchar_t): Likewise.
39443         (_G_wint_t): Likewise.
39444         * sysdeps/gnu/_G_config.h (_G_size_t): Remove.
39445         (_G_ssize_t): Likewise.
39446         (_G_off_t): Likewise.
39447         (_G_pid_t): Likewise.
39448         (_G_uid_t): Likewise.
39449         (_G_wchar_t): Likewise.
39450         (_G_wint_t): Likewise.
39451         * sysdeps/mach/hurd/_G_config.h (_G_size_t): Remove.
39452         (_G_ssize_t): Likewise.
39453         (_G_off_t): Likewise.
39454         (_G_pid_t): Likewise.
39455         (_G_uid_t): Likewise.
39456         (_G_wchar_t): Likewise.
39457         (_G_wint_t): Likewise.
39459 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
39461         * malloc/arena.c: Include malloc-sysdep.h.
39462         (shrink_heap): Use check_may_shrink_heap to decide if madvise
39463         is sufficient to shrink the heap or an unmap is needed.
39464         * sysdeps/generic/malloc-sysdep.h: New file.  Define
39465         new function check_may_shrink_heap.
39466         * sysdeps/unix/sysv/linux/malloc-sysdep.h: New file.  Define
39467         new function check_may_shrink_heap.
39469 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
39471         * libio/fileops.c (_IO_new_file_seekoff): Fix typos in
39472         comments.
39474 2012-09-24  Dmitry V. Levin  <ldv@altlinux.org>
39476         * catgets/test-gencat.sh: Add "set -e".
39477         * elf/tst-pathopt.sh: Likewise.
39478         * grp/tst_fgetgrent.sh: Likewise.
39479         * iconvdata/run-iconv-test.sh: Likewise.
39480         * intl/tst-gettext.sh: Likewise.
39481         * intl/tst-gettext2.sh: Likewise.
39482         * intl/tst-gettext4.sh: Likewise.
39483         * intl/tst-gettext6.sh: Likewise.
39484         * intl/tst-translit.sh: Likewise.
39485         * io/ftwtest-sh: Likewise.
39486         * libio/test-freopen.sh: Likewise.
39487         * malloc/tst-mtrace.sh: Likewise.
39488         * posix/globtest.sh: Likewise.
39489         * posix/tst-getconf.sh: Likewise.
39490         * posix/wordexp-tst.sh: Likewise.
39491         * stdio-common/tst-printf.sh: Likewise.
39492         * stdio-common/tst-unbputc.sh: Likewise.
39493         * stdlib/tst-fmtmsg.sh: Likewise.
39494         * sysdeps/x86_64/tst-xmmymm.sh: Likewise.
39495         * catgets/Makefile: Do not specify -e option when running
39496         testsuite shell scripts.
39497         * elf/Makefile: Likewise.
39498         * grp/Makefile: Likewise.
39499         * iconvdata/Makefile: Likewise.
39500         * intl/Makefile: Likewise.
39501         * io/Makefile: Likewise.
39502         * libio/Makefile: Likewise.
39503         * malloc/Makefile: Likewise.
39504         * posix/Makefile: Likewise.
39505         * stdio-common/Makefile: Likewise.
39506         * stdlib/Makefile: Likewise.
39507         * sysdeps/x86_64/Makefile: Likewise.
39509         * io/ftwtest-sh: Add copyright header.
39510         * posix/globtest.sh: Likewise.
39511         * posix/tst-getconf.sh: Likewise.
39512         * posix/wordexp-tst.sh: Likewise.
39513         * sysdeps/x86_64/tst-xmmymm.sh: Likewise.
39515 2012-09-24  H.J. Lu  <hongjiu.lu@intel.com>
39517         [BZ #13679]
39518         * Makeconfig (+link): Defined as $(+link-static) if
39519         $(build-shared) isn't yes.
39520         (link-tests): Defined as $(+link-static-tests) if $(build-shared)
39521         isn't yes.
39522         (static-gnulib): Add -lgcc_eh if $(build-shared) isn't yes.
39524         * Makeconfig (+postctorT): Replace crtendS.o with crtend.o.
39526         [BZ #14562]
39527         * malloc/arena.c (heap_trim): Properly get fencepost and adjust
39528         new chunk size with MALLOC_ALIGN_MASK.
39530 2012-09-24  Joseph Myers  <joseph@codesourcery.com>
39532         [BZ #5044]
39533         * stdio-common/printf_fphex.c: Include <stdbool.h> and
39534         <rounding-mode.h>.
39535         (__printf_fphex): Determine rounding using get_rounding_mode and
39536         round_away.
39537         * stdio-common/tst-printf-round.c (struct hex_test): New
39538         structure.
39539         (hex_tests): New variable.
39540         (test_hex_in_one_mode): New function.
39541         (do_test): Also run tests for hex float output.
39543 2012-09-21  Joseph Myers  <joseph@codesourcery.com>
39545         * libio/iopopen.c [_IO_HAVE_SYS_WAIT]: Make code unconditional.
39546         [!_IO_HAVE_SYS_WAIT]: Remove conditional code.
39547         * libio/libio.h (_IO_HAVE_SYS_WAIT): Remove.
39548         * libio/oldiopopen.c [_IO_HAVE_SYS_WAIT]: Make code unconditional.
39549         [!_IO_HAVE_SYS_WAIT]: Remove conditional code.
39550         * sysdeps/generic/_G_config.h (_G_HAVE_SYS_WAIT): Remove.
39551         * sysdeps/gnu/_G_config.h (_G_HAVE_SYS_WAIT): Likewise.
39552         * sysdeps/mach/hurd/_G_config.h (_G_HAVE_SYS_WAIT): Likewise.
39554 2012-09-20  Joseph Myers  <joseph@codesourcery.com>
39556         * libio/libio.h [_G_NEED_STDARG_H]: Make code unconditional.
39557         * sysdeps/generic/_G_config.h (_G_NEED_STDARG_H): Remove.
39558         * sysdeps/gnu/_G_config.h (_G_NEED_STDARG_H): Remove.
39559         * sysdeps/mach/hurd/_G_config.h (_G_NEED_STDARG_H): Remove.
39561 2012-09-19  Dmitry V. Levin  <ldv@altlinux.org>
39563         [BZ #14579]
39564         * elf/rtld.c (dl_main): Limit the check for self loading to normal
39565         mode only.
39566         * elf/tst-rtld-load-self.sh: New test.
39567         * elf/Makefile: Run it.
39569 2012-09-18  Joseph Myers  <joseph@codesourcery.com>
39571         * sysdeps/wordsize-64/Makefile [$(subdir) = misc]
39572         (tst-writev-ENV): Remove.
39573         * sysdeps/wordsize-64/tst-writev.c (TIMEOUT): Define.
39575 2012-09-17  Chris Metcalf  <cmetcalf@tilera.com>
39577         * crypt/md5test-giant.c (TIMEOUT): Increase to 8 minutes for tilegx.
39579 2012-09-17  Joseph Myers  <joseph@codesourcery.com>
39581         * libio/iogetline.c [_LIBC || !_G_HAVE_IO_GETLINE_INFO]: Make code
39582         unconditional.
39583         * libio/iogetwline.c [_LIBC || !_G_HAVE_IO_GETLINE_INFO]:
39584         Likewise.
39585         * sysdeps/generic/_G_config.h (_G_HAVE_IO_GETLINE_INFO): Remove.
39586         * sysdeps/gnu/_G_config.h (_G_HAVE_IO_GETLINE_INFO): Likewise.
39587         * sysdeps/mach/hurd/_G_config.h (_G_HAVE_IO_GETLINE_INFO):
39588         Likewise.
39590 2012-09-14  H.J. Lu  <hongjiu.lu@intel.com>
39592         [BZ #14587]
39593         * Makeconfig (ASFLAGS): Remove $(have-cpp-asm-debuginfo) check.
39594         * config.make.in (have-cpp-asm-debuginfo): Removed.
39595         * configure.in: Don't substitute libc_cv_cpp_asm_debuginfo.
39596         * configure: Regenerated.
39598 2012-09-14  Joseph Myers  <joseph@codesourcery.com>
39600         [BZ #5044]
39601         * stdio-common/printf_fp.c: Include <stdbool.h> and
39602         <rounding-mode.h>.
39603         (___printf_fp): Determine rounding using get_rounding_mode and
39604         round_away.
39605         * stdio-common/tst-printf-round.c: New file.
39606         * stdio-common/Makefile (tests): Add tst-printf-round.
39607         (link-libm): New variable.
39608         ($(objpfx)tst-printf-round): Depend in $(link-libm).
39610 2012-09-13  H.J. Lu  <hongjiu.lu@intel.com>
39612         [BZ #14576]
39613         * bits/libc-lock.h (__rtld_lock_init_recursive): Removed.
39614         * sysdeps/mach/bits/libc-lock.h (__rtld_lock_init_recursive):
39615         Likewise.
39616         * sysdeps/mach/hurd/bits/libc-lock.h (__rtld_lock_init_recursive):
39617         Likewise.
39619 2012-09-13  Joseph Myers  <joseph@codesourcery.com>
39621         * libio/libio.h [!_G_HAVE_PRINTF_FP] (_IO_USE_DTOA): Remove.
39622         * sysdeps/generic/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
39623         * sysdeps/gnu/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
39624         * sysdeps/mach/hurd/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
39626 2012-09-12  Joseph Myers  <joseph@codesourcery.com>
39628         [BZ #14518]
39629         * include/rounding-mode.h: New file.
39630         * sysdeps/generic/get-rounding-mode.h: Likewise.
39631         * sysdeps/s390/fpu/get-rounding-mode.h: Likewise.
39632         * stdlib/strtod_l.c: Include <rounding-mode.h>.
39633         (MAX_VALUE): New macro.
39634         (MIN_VALUE): Likewise.
39635         (overflow_value): New function.
39636         (underflow_value): Likewise.
39637         (round_and_return): Use overflow_value and underflow_value to
39638         determine return values in overflow and underflow cases.  Use
39639         round_away to determine rounding depending on rounding mode.
39640         (____STRTOF_INTERNAL): Use overflow_value and underflow_value to
39641         determine return values in overflow and underflow cases.
39642         * stdlib/tst-strtod-round.c: Include <fenv.h>.
39643         (struct test_results): New structure.
39644         (struct test): Use struct test_results to store expected results
39645         for all rounding modes.
39646         (TEST): Include expected results for all rounding modes.
39647         (test_in_one_mode): New function.
39648         (do_test): Use test_in_one_mode to compute and check results.
39649         Check results for all rounding modes.
39650         * stdlib/Makefile ($(objpfx)tst-strtod-round): Depend on
39651         $(link-libm).
39653 2012-12-09  Allan McRae  <allan@archlinux.org>
39655         * sysdeps/i386/fpu/libm-test-ulps: Update
39657 2012-09-11  Joseph Myers  <joseph@codesourcery.com>
39659         * sysdeps/generic/_G_config.h (_G_int16_t): Remove.
39660         (_G_int32_t): Likewise.
39661         (_G_uint16_t): Likewise.
39662         (_G_uint32_t): Likewise.
39663         (_G_HAVE_BOOL): Likewise.
39664         (_G_HAVE_ATEXIT): Likewise.
39665         (_G_HAVE_LONG_DOUBLE_IO): Likewise.
39666         (_G_HAVE_IO_FILE_OPEN): Likewise.
39667         * sysdeps/gnu/_G_config.h (_G_int16_t): Remove.
39668         (_G_int32_t): Likewise.
39669         (_G_uint16_t): Likewise.
39670         (_G_uint32_t): Likewise.
39671         (_G_HAVE_BOOL): Likewise.
39672         (_G_HAVE_ATEXIT): Likewise.
39673         (_G_HAVE_LONG_DOUBLE_IO): Likewise.
39674         (_G_HAVE_IO_FILE_OPEN): Likewise.
39675         * sysdeps/mach/hurd/_G_config.h (_G_int16_t): Remove.
39676         (_G_int32_t): Likewise.
39677         (_G_uint16_t): Likewise.
39678         (_G_uint32_t): Likewise.
39679         (_G_HAVE_BOOL): Likewise.
39680         (_G_HAVE_ATEXIT): Likewise.
39681         (_G_HAVE_LONG_DOUBLE_IO): Likewise.
39682         (_G_HAVE_IO_FILE_OPEN): Likewise.
39684 2012-09-11  H.J. Lu  <hongjiu.lu@intel.com>
39686         * csu/libc-tls.c: Update copyright years.
39688 2012-09-10  Joseph Myers  <joseph@codesourcery.com>
39690         * libioP.h [_G_USING_THUNKS]: Make code unconditional.
39691         [!_G_USING_THUNKS]: Remove conditional code.
39692         * sysdeps/gnu/_G_config.h (_G_USING_THUNKS): Remove.
39693         * sysdeps/mach/hurd/_G_config.h (_G_USING_THUNKS): Likewise.
39695         * libio/libioP.h [__GNUC__] (VTABLE_LABEL): Remove.
39696         [!builtinbuf_vtable && __cplusplus] (builtinbuf_vtable): Likewise.
39697         * sysdeps/generic/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
39698         (_G_VTABLE_LABEL_PREFIX): Likewise.
39699         (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
39700         * sysdeps/gnu/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
39701         (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
39702         (_G_VTABLE_LABEL_PREFIX): Likewise.
39703         (_G_VTABLE_LABEL_PREFIX_ID): Likewise.
39704         * sysdeps/mach/hurd/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
39705         (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
39706         (_G_VTABLE_LABEL_PREFIX): Likewise.
39707         (_G_VTABLE_LABEL_PREFIX_ID): Likewise.
39709 2012-09-10  H.J. Lu  <hongjiu.lu@intel.com>
39711         * libio/Makefile: Include ../Makeconfig before tests.
39712         (tests): Add tst-fopenloc and depend on $(objpfx)tst-fopenloc.check
39713         only if $(build-shared) is yes.
39715         * iconv/gconv_db.c: Update copyright years.
39717 2012-09-10  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
39719         * sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S: Fix
39720         unwind info if defined PIC. Fix special cases description.
39721         * sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S: Likewise.
39723         * sysdeps/x86_64/fpu/s_sinf.S: Fix special cases description, fix
39724         DP_HI_MASK entry.
39725         * sysdeps/x86_64/fpu/s_cosf.S: Likewise.
39727 2012-09-07  H.J. Lu  <hongjiu.lu@intel.com>
39729         * scripts/check-local-headers.sh: Add "shopt -s nullglob".
39731         * iconv/gconv_db.c (free_derivation): Check if deriv->steps
39732         is NULL.
39734         * debug/Makefile (LDFLAGS-tst-chk4): Renamed to ...
39735         (LDLIBS-tst-chk4): This.
39736         (LDFLAGS-tst-chk5): Renamed to ...
39737         (LDLIBS-tst-chk5): This.
39738         (LDFLAGS-tst-chk6): Renamed to ...
39739         (LDLIBS-tst-chk6): This.
39740         (LDFLAGS-tst-lfschk4): Renamed to ...
39741         (LDLIBS-tst-lfschk4): This.
39742         (LDFLAGS-tst-lfschk5): Renamed to ...
39743         (LDLIBS-tst-lfschk5): This.
39744         (LDFLAGS-tst-lfschk6): Renamed to ...
39745         (LDLIBS-tst-lfschk6): This.
39747         * Makefile ($(inst_includedir)/gnu/stubs.h): Remove dependency
39748         on $(common-objpfx)soversions.mk.
39750 2012-09-07  Joseph Myers  <joseph@codesourcery.com>
39752         [BZ #10014]
39753         * manual/examples/inetcli.c (SERVERHOST): Use www.gnu.org as
39754         example host name.
39756 2012-09-07  Siddhesh Poyarekar  <siddhesh@redhat.com>
39758         * malloc/arena.c (arena_get_retry): New function that gets
39759         another arena for the caller to try its request on.
39760         * malloc/malloc.c (__libc_malloc): Use get_another_arena if the
39761         current arena cannot fulfill the request.
39762         (__libc_memalign): Likewise.
39763         (__libc_memalign): Likewise.
39764         (__libc_pvalloc): Likewise.
39765         (__libc_calloc): Likewise.
39767 2012-09-05  John Tobey  <john.tobey@gmail.com>
39769         [BZ #13542]
39770         * manual/arith.texi (Operations on Complex): Fix description
39771         of carg branch cut.
39773 2012-09-06  Joseph Myers  <joseph@codesourcery.com>
39775         [BZ #10014]
39776         * manual/socket.texi (Host Addresses): Use www.gnu.org as example
39777         host name.
39779         [BZ #10038]
39780         * manual/memory.texi (Memory): Make order of menu items match
39781         order of sections.
39783 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
39785         * elf/dl-tls.c (DL_INITIAL_DTV): Removed.
39786         (_dl_initial_dtv): New.  Defined if SHARED isn't defined.
39787         (_dl_deallocate_tls): Restore GL(dl_initial_dtv).
39789 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
39791         * csu/libc-tls.c (static_dtv): Renamed to ...
39792         (_dl_static_dtv): This.  Make it global.
39793         (_dl_initial_dtv): Removed.
39794         (__libc_setup_tls): Updated.
39795         * elf/dl-tls.c (DL_INITIAL_DTV): New macro.
39796         (_dl_deallocate_tls): Replace GL(dl_initial_dtv) with
39797         DL_INITIAL_DTV.
39799 2012-09-06  Petr Machata  <pmachata@redhat.com>
39801         * elf/elf.h (NT_S390_HIGH_GPRS): New macro.
39802         (NT_S390_TIMER, NT_S390_TODCMP, NT_S390_TODPREG): Likewise.
39803         (NT_S390_CTRS, NT_S390_PREFIX, NT_S390_LAST_BREAK): Likewise.
39804         (NT_S390_SYSTEM_CALL, NT_ARM_VFP): Likewise.
39806 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
39808         [BZ #14545]
39809         * csu/libc-tls.c (_dl_initial_dtv): New variable.
39810         * elf/dl-tls.c (_dl_deallocate_tls): Always check dtv before
39811         freeing dtv[-1].
39813 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
39815         [BZ #14544]
39816         * Makeconfig (link-static-before-libc): Replace $(+prector)
39817         with $(+prectorT).
39818         (link-static-after-libc): Replace $(+postctor) with
39819         $(+postctorT).
39820         (link-bounded): Replace $(+prector)/$(+postctor) with
39821         $(+prectorT)/$(+postctorT).
39822         (+prectorT): New macro.
39823         (+postctorT): Likewise.
39825 2012-09-06  Joseph Myers  <joseph@codesourcery.com>
39827         * stdlib/gen-tst-strtod-round.c: Include <assert.h>.
39828         (round_str): Handle values above the maximum for IBM long double
39829         as inexact.
39830         * stdlib/tst-strtod-round.c (tests): Regenerated.
39832 2012-09-06  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
39834         * sysdeps/s390/s390-32/multiarch/Makefile: Remove -mzarch
39835         assembler flag.
39836         * sysdeps/s390/s390-32/multiarch/memcmp.S: Use .machinemode
39837         zarch_nohighgprs around the zarch optimized routines.
39838         * sysdeps/s390/s390-32/multiarch/memcpy.S: Likewise.
39839         * sysdeps/s390/s390-32/multiarch/memset.S: Likewise.
39840         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Explicitly check
39841         for zarch.
39843 2012-09-05  David S. Miller  <davem@davemloft.net>
39845         * sysdeps/sparc/fpu/libm-test-ulps: Update.
39847         * sysdeps/sparc/bits/hwcap.h (HWCAP_SPARC_PAUSE)
39848         (HWCAP_SPARC_CBCOND, HWCAP_SPARC_CRYPTO): Define.
39849         * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Increase to 27.
39850         * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add new
39851         entries.
39853 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
39855         * malloc/arena.c: Fold copyright years.
39856         * malloc/mcheck.c, malloc/memusage.c: Likewise.
39858 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
39860         * malloc/malloc.c (__libc_mallopt) <M_MMAP_MAX>: Fix indentation.
39862 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
39864         * manual/contrib.texi (Contributors): Fix typo.  Complete entry.
39866 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
39868         * malloc/malloc.c (__libc_mallopt) <M_MMAP_THRESHOLD>: Do not
39869         change internal state upon failure.
39871 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
39873         * malloc/mcheck.c (mcheck_check_all): Fix typo.
39874         * malloc/memusage.c (mmap): Likewise.
39875         (mmap64, mremap): Likewise.  Adjust name in comment.
39877 2012-09-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
39879         * libio/fileops.c: Fix typos in comments.
39880         * libio/oldfileops.c: Likewise.
39881         * libio/wfileops.c: Likewise.
39883 2012-09-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
39885         [BZ #1349]
39886         * malloc/Makefile (tests): Add tst-malloc-usable test case.
39887         (tst-malloc-usable-ENV): Set environment for test case.
39888         * malloc/hooks.c (malloc_check_get_size): New function to get
39889         requested size.
39890         * malloc/malloc.c (musable): Use malloc_check_get_size.
39891         * malloc/tst-malloc-usable.c: New test case.
39893 2012-09-05  Andreas Schwab  <schwab@linux-m68k.org>
39895         * stdlib/tst-strtod-overflow.c (TIMEOUT): Define.
39897 2012-09-05  Allan McRae  <allan@archlinux.org>
39899         [BZ #13966]
39900         * configure.in (CXX_SYSINCLUDES): Use compiler output to
39901         determine header location.
39902         * configure: Regenerated.
39904 2012-09-05  Andreas Schwab  <schwab@linux-m68k.org>
39906         * stdlib/gen-tst-strtod-round.c (formats): Add Motorola extended
39907         float format.
39908         * stdlib/tst-strtod-round.c (TEST) [LDBL_MANT_DIG == 64 &&
39909         LDBL_MAX_EXP == 16384]: Add case for Motorola extended float
39910         format.
39911         (test): Regenerate.
39913 2012-09-04  David S. Miller  <davem@davemloft.net>
39915         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: New file.
39916         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: New file.
39917         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: New file.
39919 2012-09-04  Florian Weimer  <fweimer@redhat.com>
39921         * stdlib/tst-secure-getenv.c (alternative_main): Only warn on SGID
39922         failures.
39924         * stdlib/tst-secure-getenv.c: Fix whitespace in comments.
39926 2012-09-04  Joseph Myers  <joseph@codesourcery.com>
39928         [BZ #9914]
39929         * libio/iogetdelim.c: Include <limits.h>.
39930         (_IO_getdelim): Avoid integer overflow in testing whether cur_len
39931         + len + 1 would overflow.
39933 2012-09-03  Andreas Jaeger  <aj@suse.de>
39935         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
39936         * sysdeps/i386/fpu/libm-test-ulps: Update.
39938 2012-09-03  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
39940         * sysdeps/i386/i686/fpu/multiarch/Makefile (sysdep_routines):
39941         Add s_sinf-sse2, s_conf-sse2.
39943         * sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S: New file.
39944         * sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S: New file.
39945         * sysdeps/i386/i686/fpu/multiarch/s_sinf.c: New file.
39946         * sysdeps/i386/i686/fpu/multiarch/s_cosf.c: New file.
39948         * sysdeps/ieee754/flt-32/s_sinf.c (SINF, SINF_FUNC): Add macros
39949         for using routine as __sinf_ia32.
39950         Use macro for function declaration and weak_alias.
39951         * sysdeps/ieee754/flt-32/s_cosf.c (COSF, COSF_FUNC): Add macros
39952         for using routine as __cosf_ia32.
39953         Use macro for function declaration and weak_alias.
39955         * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Fix Copyright.
39956         * sysdeps/i386/i686/fpu/multiarch/e_expf.c: Fix Copyright.
39958         * sysdeps/x86_64/fpu/s_sinf.S: New file.
39959         * sysdeps/x86_64/fpu/s_cosf.S: New file.
39960         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
39962         * math/libm-test.inc (cos_test): Add more test cases.
39963         (sin_test): Likewise.
39964         (sincos_test): Likewise.
39966 2012-09-03  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
39968         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c
39969         (IFUNC_RESOLVE): Make pointers to the specialized implementations
39970         hidden.
39971         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
39973 2012-09-02  H.J. Lu  <hongjiu.lu@intel.com>
39975         [BZ #14538]
39976         * sysdeps/x86_64/dl-machine.h (elf_machine_dynamic): Use the
39977         first element of the GOT.
39978         (elf_machine_load_address): Return the difference between
39979         the runtime address of _DYNAMIC and elf_machine_dynamic ().
39981 2012-09-01  Allan McRae  <allan@archlinux.org>
39983         [BZ #13412]
39984         * configure.in (AWK): Require gawk version 3.0 or later.
39985         * configure: Regenerated.
39987 2012-09-01  Joseph Myers  <joseph@codesourcery.com>
39989         * sysdeps/unix/sysv/linux/kernel-features.h
39990         (__ASSUME_POSIX_CPU_TIMERS): Remove.
39991         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
39992         [__NR_clock_getres]: Make code unconditional.
39993         [!__ASSUME_POSIX_CPU_TIMERS]: Remoce conditional code.
39994         (clock_getcpuclockid): Remove code left unreachable by removal of
39995         conditionals.
39996         * sysdeps/unix/sysv/linux/clock_getres.c [__NR_clock_getres]: Make
39997         code unconditional.
39998         [__ASSUME_POSIX_CPU_TIMERS]: Likewise.
39999         [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
40000         * sysdeps/unix/sysv/linux/clock_gettime.c [__NR_clock_gettime]:
40001         Make code unconditional.
40002         [__ASSUME_POSIX_CPU_TIMERS]: Likewise.
40003         [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
40004         * sysdeps/unix/sysv/linux/clock_settime.c
40005         [__ASSUME_POSIX_CPU_TIMERS <= 0 && __NR_clock_settime]: Remove
40006         conditional code.
40007         [__ASSUME_POSIX_CPU_TIMERS]: Make code unconditional.
40008         [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
40010 2012-08-29  H.J. Lu  <hongjiu.lu@intel.com>
40012         [BZ #14476]
40013         * Makefile (install): Also pass LD_SO=$(ld.so-version) to
40014         scripts/test-installation.pl.
40016         * scripts/test-installation.pl: Use LD_SO to get $ld_so_name
40017         and $ld_so_version if it is set.
40019 2012-08-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
40021         [BZ #14516]
40022         * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Don't return
40023         failure if reading from procfs failed.
40024         * sysdeps/unix/sysv/linux/ttyname_r.c (ttyname_r): Likewise.
40026 2012-08-27  Joseph Myers  <joseph@codesourcery.com>
40028         * sysdeps/unix/sysv/linux/kernel-features.h
40029         (__ASSUME_STAT64_SYSCALL): Remove all definitions.
40030         * sysdeps/unix/sysv/linux/fxstat64.c [!__ASSUME_STAT64_SYSCALL]:
40031         Remove conditional code.
40032         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
40033         * sysdeps/unix/sysv/linux/fxstatat64.c [!__ASSUME_STAT64_SYSCALL]:
40034         Remove conditional code.
40035         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
40036         * sysdeps/unix/sysv/linux/i386/fxstat.c
40037         [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
40038         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
40039         * sysdeps/unix/sysv/linux/i386/fxstatat.c
40040         [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
40041         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
40042         * sysdeps/unix/sysv/linux/i386/lxstat.c
40043         [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
40044         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
40045         * sysdeps/unix/sysv/linux/i386/xstat.c [!__ASSUME_STAT64_SYSCALL]:
40046         Remove conditional code.
40047         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
40048         * sysdeps/unix/sysv/linux/lxstat64.c [!__ASSUME_STAT64_SYSCALL]:
40049         Remove conditional code.
40050         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
40051         * sysdeps/unix/sysv/linux/sparc/sparc64/xstat.c: Do not include
40052         <kernel-features.h>.
40053         [__NR_stat64 && !__ASSUME_STAT64_SYSCALL] (__have_no_stat64):
40054         Remove.
40055         * sysdeps/unix/sysv/linux/xstat64.c [!__ASSUME_STAT64_SYSCALL]:
40056         Remove conditional code.
40057         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
40058         * sysdeps/unix/sysv/linux/xstatconv.c [!__ASSUME_STAT64_SYSCALL]:
40059         Remove conditional.
40061 2012-08-27  Mike Frysinger  <vapier@gentoo.org>
40063         [BZ #5400]
40064         * NEWS: Add fixed bug number.
40066 2012-08-27  Joseph Myers  <joseph@codesourcery.com>
40068         [BZ #14519]
40069         * stdlib/strtod_l.c (round_and_return): Return -0.0 for
40070         underflowing exponent in case of negative sign.
40071         * stdlib/tst-strtod-round-data: Add more tests.
40072         * stdlib/tst-strtod-round.c (tests): Regenerated.
40074         [BZ #3479]
40075         * stdlib/strtod_l.c (NDIG): Remove.
40076         (HEXNDIG): Likewise.
40077         (MPNSIZE): Increase to represent 10^n where 2^-n is 1/4 ulp of the
40078         smallest representable value.
40079         (____STRTOF_INTERNAL): Use all fractional decimal digits that may
40080         lie within an exact representation of 1/2 ulp of the result.
40081         * stdlib/fpioconst.c (__tens): Include 10^2^9 and 10^2^10
40082         unconditionally.
40083         (TENS_P9_IDX): Define unconditionally.
40084         (TENS_P9_SIZE): Likewise.
40085         (TENS_P10_IDX): Likewise.
40086         (TENS_P10_SIZE): Likewise.
40087         [BITS_PER_MP_LIMB == 32]: Change condition for larger powers of 10
40088         to !defined __NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024.
40089         [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024] (__tens): Add
40090         entries for 10^2^13 and 10^2^14.
40091         [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024]
40092         (TENS_P13_IDX): Define.
40093         (TENS_P13_SIZE): Likewise.
40094         (TENS_P14_IDX): Likewise.
40095         (TENS_P14_SIZE): Likewise.
40096         (_fpioconst_pow10): Change array size to
40097         FPIOCONST_POW10_ARRAY_SIZE.  Make entries for 10^2^9 and 10^2^10
40098         unconditional.
40099         (_fpioconst_pow10) [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ >
40100         1024]: Add entries for 10^2^13 and 10^2^14.
40101         [LAST_POW10 > _LAST_POW10]: Remove #error.
40102         * stdlib/fpioconst.h (FPIOCONST_POW10_ARRAY_SIZE): Define.
40103         (_fpioconst_pow10): Change array size to
40104         FPIOCONST_POW10_ARRAY_SIZE.
40105         * stdlib/gen-fpioconst.c: New file.
40106         * stdlib/gen-tst-strtod-round.c: Likewise.
40107         * stdlib/tst-strtod-round-data: Likewise.
40108         * stdlib/tst-strtod-round.c: Likewise.
40109         * stdlib/Makefile (tests): Add tst-strtod-round.
40111         [BZ #14459]
40112         * stdlib/strtod_l.c: Include <stdint.h>.
40113         (NDEBUG): Do not define.
40114         (round_and_return): Change EXPONENT parameter to type intmax_t.
40115         Rearrange calculations to avoid internal overflow possibilities.
40116         (str_to_mpn): Change EXPONENT parameter to type intmax_t *.
40117         Rearrange calculations to avoid internal overflow possibilities.
40118         Assert that number fits inside MPNSIZE limbs.
40119         (____STRTOF_INTERNAL): Change EXPONENT variable to type intmax_t.
40120         Change DIG_NO, INT_NO and LEAD_ZERO to type size_t.  Rearrange
40121         calculations and add assertions to avoid internal overflow
40122         possibilities.  Add casts to avoid signed/unsigned operations.
40123         * stdlib/tst-strtod-overflow.c: New file.
40124         * stdlib/Makefile (tests): Add tst-strtod-overflow.
40126 2012-08-25  Marek Polacek  <polacek@redhat.com>
40128         * time/time.h: Fix some typos in comments.
40130 2012-08-23  Roland McGrath  <roland@hack.frob.com>
40132         * posix/tst-rfc3484.c: #undef USE_NSCD before including getaddrinfo.c.
40133         * posix/tst-rfc3484-2.c: Likewise.
40134         * posix/tst-rfc3484-3.c: Likewise.
40136 2012-08-23  Steve McIntyre  <steve.mcintyre@linaro.org>
40138         * elf/elf.h (EF_ARM_ABI_FLOAT_SOFT): New macro.
40139         (EF_ARM_ABI_FLOAT_HARD): Likewise.
40141 2012-08-23  Joseph Myers  <joseph@codesourcery.com>
40143         * sysdeps/unix/sysv/linux/dl-fxstatat64.c: Use <> instead of "" in
40144         #include of fxstatat64.c.
40146 2012-08-22  Roland McGrath  <roland@hack.frob.com>
40148         * shadow/getspent.c: #undef USE_NSCD before #include that gets the code.
40149         * shadow/getspent_r.c: Likewise.
40150         * shadow/getspnam.c: Likewise.
40151         * shadow/getspnam_r.c: Likewise.
40152         * gshadow/getsgent.c: Likewise.
40153         * gshadow/getsgent_r.c: Likewise.
40154         * gshadow/getsgnam.c: Likewise.
40155         * gshadow/getsgnam_r.c: Likewise.
40156         * inet/getnetbyad.c: Likewise.
40157         * inet/getnetbyad_r.c: Likewise.
40158         * inet/getnetbynm.c: Likewise.
40159         * inet/getnetbynm_r.c: Likewise.
40160         * inet/getnetent.c: Likewise.
40161         * inet/getnetent_r.c: Likewise.
40162         * inet/getproto.c: Likewise.
40163         * inet/getproto_r.c: Likewise.
40164         * inet/getprtent.c: Likewise.
40165         * inet/getprtent_r.c: Likewise.
40166         * inet/getprtname.c: Likewise.
40167         * inet/getprtname_r.c: Likewise.
40168         * inet/getrpcbyname.c: Likewise.
40169         * inet/getrpcbyname_r.c: Likewise.
40170         * inet/getrpcbynumber.c: Likewise.
40171         * inet/getrpcbynumber_r.c: Likewise.
40172         * inet/getrpcent.c: Likewise.
40173         * inet/getrpcent_r.c: Likewise.
40174         * inet/getaliasent.c: Likewise.
40175         * inet/getaliasent_r.c: Likewise.
40176         * inet/getaliasname.c: Likewise.
40177         * inet/getaliasname_r.c: Likewise.
40178         * nscd/getgrgid_r.c: Likewise.
40179         * nscd/getgrnam_r.c: Likewise.
40180         * nscd/gethstbyad_r.c: Likewise.
40181         * nscd/gethstbynm3_r.c: Likewise.
40182         * nscd/getpwnam_r.c: Likewise.
40183         * nscd/getpwuid_r.c: Likewise.
40184         * nscd/getsrvbynm_r.c: Likewise.
40185         * nscd/getsrvbypt_r.c: Likewise.
40186         * nscd/gai.c: Likewise.
40188         * configure.in (build_nscd): New substituted variable, set
40189         by --disable-build-nscd and defaults to $use_nscd.
40190         * configure: Regenerated.
40191         * config.make.in (build-nscd): New substituted variable.
40192         * nscd/Makefile (others, others-pie, install-sbin, extra-objs):
40193         Change conditional to require [$(build-nscd) = yes] as well.
40194         * NEWS: Mention --disable-build-nscd in the --disable-nscd item.
40196         [BZ# 13696]
40197         * configure.in (use_nscd): New substituted variable, set by
40198         --disable-nscd.  If enabled, define USE_NSCD.
40199         * configure: Regenerated.
40200         * config.h.in: Add USE_NSCD.
40201         * config.make.in (use-nscd): New substituted variable.
40202         * inet/Makefile (CFLAGS-gethstbyad_r.c): Likewise.
40203         (CFLAGS-gethstbynm_r.c, CFLAGS-gethstbynm2_r.c): Likewise.
40204         (CFLAGS-getsrvbynm_r.c, CFLAGS-getsrvbypt_r.c): Variables removed.
40205         * grp/Makefile (CFLAGS-getgrgid_r.c): Remove -DUSE_NSCD.
40206         (CFLAGS-getgrnam_r.c): Likewise.
40207         (CFLAGS-initgroups.c): Likewise.
40208         * posix/Makefile (CFLAGS-getaddrinfo.c): Remove -DUSE_NSCD.
40209         * pwd/Makefile (CFLAGS-getpwuid_r.c, CFLAGS-getpwnam_r.c):
40210         Variables removed.
40211         * inet/getnetgrent_r.c
40212         (nscd_setnetgrent): New function, broken out of ...
40213         (setnetgrent): ... here.  Call it.
40214         (innetgr): Conditionalize nscd bits on [USE_NSCD].
40215         (nscd_getnetgrent): Conditionalize on [USE_NSCD].
40216         (__internal_getnetgrent_r): Conditionalize its use on [USE_NSCD].
40217         * nscd/Makefile (routines, aux): Move definitions after include of
40218         Makeconfig.  Conditionalize on [$(use-nscd) != no].
40219         * nss/nsswitch.c (nss_load_all_libraries, __nss_disable_nscd):
40220         Conditionalize on [USE_NSCD].
40221         (is_nscd, nscd_init_cb): Likewise.
40222         (nss_load_library): Conditionalize init callback on [USE_NSCD].
40223         * nss/nss_files/files-init.c: Conditionalize body on [USE_NSCD].
40224         * nss/nss_db/db-init.c: Likewise.
40225         * nscd/nscd.c (main): Conditionalize __nss_disable_nscd call on
40226         [USE_NSCD].
40227         * sysdeps/unix/sysv/linux/check_pf.c (get_nl_timestamp): New function.
40228         (make_request): Use it.
40229         (cache_valid_p): New function.
40230         (__check_pf): Use it.
40231         * NEWS: Add item for --disable-nscd.
40233 2012-08-22  Dmitry V. Levin  <ldv@altlinux.org>
40235         * configure.in (SED): Update AC_CHECK_PROG_VER's version extract regexp
40236         to support sed >= 4.2.1-20-ga9bf076.
40237         * configure: Regenerated.
40239 2012-08-22  Roland McGrath  <roland@hack.frob.com>
40241         * csu/libc-start.c (apply_irel): Move extern declarations inside here.
40242         Conditionalize whole body on [IREL].
40244 2012-08-22  Jeff Law <law@redhat.com>
40246         [BZ #14505]
40247         * sysdeps/posix/getaddrinfo.c (gaih_inet): Only use gethostbyname4_r
40248         if the family is PF_UNSPEC.
40250 2012-08-22  Mike Frysinger  <vapier@gentoo.org>
40252         * Makerules (lib-version): Rename from V.
40253         (install-lib-nosubdir): Change V to lib-version.
40255 2012-08-22  Will Schmidt  <will_schmidt@vnet.ibm.com>
40257         [BZ #14252]
40258         * powerpc32/power6/wcschr.c: New file.
40259         * powerpc32/power6/wcscpy.c: New file.
40260         * powerpc32/power6/wcsrchr.c: New file.
40261         * powerpc64/power6/wcschr.c: New file.
40262         * powerpc64/power6/wcscpy.c: New file.
40263         * powerpc64/power6/wcsrchr.c: New file.
40265 2012-08-21  Maxim Kuvyrkov  <maxim@codesourcery.com>
40267         * string/str-two-way.h (AVAILABLE1_USES_J): New macro, define default.
40268         (two_way_short_needle): Use it.
40269         * string/strstr.c (AVAILABLE1_USES_J): Define.
40270         * string/strcasestr.c: Likewise.
40272         * string/str-two-way.h (two_way_short_needle): Use pointers instead of
40273         array references.
40274         * string/strcasestr.c (TOLOWER): Make side-effect safe.
40276         [BZ #11607]
40277         * NEWS: Add an entry.
40278         * string/str-two-way.h (AVAILABLE1, AVAILABLE2, RET0_IF_0): New macros,
40279         define their defaults.
40280         (two_way_short_needle): Detect end-of-string on-the-fly.
40281         * string/strcasestr.c, string/strstr.c (AVAILABLE): Update.
40282         (AVAILABLE1, AVAILABLE2, RET0_IF_0, AVAILABLE_USES_J): Define.
40283         * string/bug-strcasestr1.c: New test.
40284         * string/Makefile: Run it.
40286 2012-08-21  Maxim Kuvyrkov  <maxim@codesourcery.com>
40288         [BZ #11607]
40289         * string/str-two-way.h (two_way_short_needle): Optimize matching of
40290         the first character.
40292 2012-08-21  Roland McGrath  <roland@hack.frob.com>
40294         * csu/elf-init.c (__libc_csu_irel): Function removed.
40295         * csu/libc-start.c (apply_irel): New function.
40296         (LIBC_START_MAIN): Call it instead of __libc_csu_irel.
40298 2012-08-21  Joseph Myers  <joseph@codesourcery.com>
40300         * sysdeps/unix/sysv/linux/kernel-features.h
40301         (__ASSUME_FADVISE64_64_SYSCALL): Remove.
40302         * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Do not include
40303         <kernel-features.h>.
40304         [__NR_fadvise64_64]: Make code unconditional.
40305         [!__ASSUME_FADVISE64_64_SYSCALL]: Remove conditional code.
40306         [__NR_fadvise64 && (!__ASSUME_FADVISE64_64_SYSCALL ||
40307         !__NR_fadvise64_64)]: Likewise.
40308         [!(__NR_fadvise64 && (!__ASSUME_FADVISE64_64_SYSCALL ||
40309         !__NR_fadvise64_64))]: Likewise.
40310         [__NR_fadvise64]: Make code unconditional.
40311         [!__NR_fadvise64]: Remove conditional code.
40312         * sysdeps/unix/sysv/linux/posix_fadvise64.c: Do not include
40313         <kernel-features.h>.
40314         (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
40315         unconditional.
40316         (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
40317         conditional code.
40318         * sysdeps/unix/sysv/linux/powerpc/powerpc32/posix_fadvise64.c: Do
40319         not include <kernel-features.h>.
40320         (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
40321         unconditional.
40322         (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
40323         conditional code.
40324         * sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c: Do not
40325         include <kernel-features.h>.
40326         (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
40327         unconditional.
40328         (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
40329         conditional code.
40331 2012-08-21  Will Schmidt  <will_schmidt@vnet.ibm.com>
40333         * sysdeps/powerpc/powerpc64/power7/memchr.S: Unrolled short loop and
40334         slight instruction rearrangements per scrollpipe analysis.
40335         * sysdeps/powerpc/powerpc64/power7/memchr.S: Likewise.
40337 2012-08-20  Roland McGrath  <roland@hack.frob.com>
40339         * manual/syslog.texi (syslog; vsyslog, closelog):
40340         Fix typo repeated twice: @file{dev/log} -> @file{/dev/log}.
40341         Reported by Ricardo Catalinas Jiménez <jimenezrick@gmail.com>.
40343         * elf/dl-sysdep.c (_dl_important_hwcaps): Fix conditional on using
40344         DSOCAPS to match condition on defining it.
40346 2012-08-20  Joseph Myers  <joseph@codesourcery.com>
40348         * sysdeps/unix/sysv/linux/kernel-features.h
40349         (__ASSUME_SWAPCONTEXT_SYSCALL): Remove.
40350         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
40351         [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
40352         [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
40353         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S
40354         [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
40355         [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
40356         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
40357         [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
40358         [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
40360         * sysdeps/unix/sysv/linux/kernel-features.h [__s390__ &&
40361         __LINUX_KERNEL_VERSION >= 0x020616] (__ASSUME_UTIMES): Define.
40363         * sysdeps/unix/sysv/linux/kernel-features.h
40364         (__ASSUME_MMAP2_SYSCALL): Remove all definitions.
40365         * sysdeps/unix/sysv/linux/mmap64.c [__NR_mmap2]: Make code
40366         unconditional.
40367         [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
40368         * sysdeps/unix/sysv/linux/i386/mmap.S (__mmap)
40369         [__ASSUME_MMAP2_SYSCALL]: Make code unconditional.
40370         (__mmap) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
40371         * sysdeps/unix/sysv/linux/i386/mmap64.S (__mmap64) [__NR_mmap2]:
40372         Make code unconditional.
40373         (__mmap64) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
40374         (__mmap64) [!__NR_mmap2]: Likewise.
40375         * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S (__mmap)
40376         [__ASSUME_MMAP2_SYSCALL]: Make code unconditional.
40377         (__mmap) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
40378         * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S (__mmap64)
40379         [__NR_mmap2]: Make code unconditional.
40380         (__mmap64) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
40381         (__mmap64) [!__NR_mmap2]: Likewise.
40383 2012-08-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
40385         * sysdeps/unix/sysv/linux/s390/s390-32/getrlimit.c: Remove.
40387 2012-08-18  Andreas Jaeger  <aj@suse.de>
40389         * stdio-common/_itoa.c (_itoa): Add missing DUMMY variable.
40391 2012-08-18  Mike Frysinger  <vapier@gentoo.org>
40393         * include/sys/socket.h (__have_sock_cloexec): Add attribute_hidden.
40394         * include/unistd.h (__have_sock_cloexec): Likewise.
40395         (__have_pipe2): Likewise.
40396         (__have_dup3): Likewise.
40398 2012-08-18  Mike Frysinger  <vapier@gentoo.org>
40400         [BZ #9685]
40401         * include/unistd.h (__have_pipe2): Change define into an extern int.
40402         (__have_dup3): Likewise.
40403         * socket/have_sock_cloexec.c: Include fcntl.h.
40404         (__have_pipe2): New variable.
40405         (__have_dup3): Likewise.
40407 2012-08-17  Mike Frysinger  <vapier@gentoo.org>
40409         * sysdeps/unix/sysv/linux/nice.c: Adjust #include.
40411 2012-08-17  Marek Polacek  <polacek@redhat.com>
40413         * sysdeps/ieee754/ldbl-96/s_sincosl.c (__sincosl): Use __attribute__
40414         ((unused)) on I1, which is set by GET_LDOUBLE_WORDS but never used.
40416 2012-08-17  Roland McGrath  <roland@hack.frob.com>
40418         * configure.in: Add AC_SUBST for sysheaders.
40419         * configure: Regenerated.
40420         * config.make.in (sysheaders): New substituted variable.
40422         * sysdeps/unix/mkfifo.c: Moved ...
40423         * sysdeps/posix/mkfifo.c: ... here.
40424         * sysdeps/unix/mkfifoat.c: Moved ...
40425         * sysdeps/posix/mkfifoat.c: ... here.
40427         * sysdeps/unix/utime.c: Moved ...
40428         * sysdeps/posix/utime.c: ... here.
40430         * sysdeps/unix/time.c: Moved ...
40431         * sysdeps/posix/time.c: ... here.
40432         * sysdeps/unix/sysv/linux/time.c: Adjust #include.
40433         * sysdeps/unix/sysv/linux/sparc/sparc64/time.c: Likewise.
40435         * sysdeps/unix/nice.c: Moved ...
40436         * sysdeps/posix/nice.c: ... here.
40438         * sysdeps/unix/alarm.c: Moved ...
40439         * sysdeps/posix/alarm.c: ... here.
40441         * intl/Makefile ($(codeset_mo)): Depend on the input file.
40443 2012-08-17  Jeff Law <law@redhat.com>
40445         * intl/Makefile (codeset_mo): New variable.
40446         ($(codeset_mo)): New target.
40447         (tst-codeset.out): Depend on that.  Remove explicit rule.
40448         (tst-gettext3.out, tst-gettext5.out): Likewise.
40449         (LOCPATH-ENV, tst-codeset-ENV): New variables.
40450         (tst-gettext3-ENV, tst-gettext5-ENV): Likewise.
40451         * intl/tst-codeset.sh: Remove.
40452         * intl/tst-gettext3.sh: Likewise.
40453         * intl/tst-gettext5.sh: Likewise.
40455 2012-08-17  Roland McGrath  <roland@hack.frob.com>
40457         * sysdeps/unix/inet/syscalls.list: File removed.  Move contents into ...
40458         * sysdeps/unix/syscalls.list: ... here.
40460         * sysdeps/posix/getaddrinfo.c
40461         (save_gaiconf_mtime, check_gaiconf_mtime): New functions.
40462         (gaiconf_init, gaiconf_reload): Use them.
40463         [!_STATBUF_ST_NSEC]
40464         (gaiconf_mtime, save_gaiconf_mtime, check_gaiconf_mtime):
40465         Define using time_t rather than struct timespec.
40467         * sysdeps/generic/malloc-machine.h (MUTEX_INITIALIZER): New macro.
40468         (atomic_full_barrier, atomic_read_barrier, atomic_write_barrier):
40469         Macros removed.
40470         * malloc/arena.c (save_malloc_hook, save_free_hook): Conditionalize on
40471         [!NO_THREADS].
40472         (malloc_atfork, free_atfork, atfork_recursive_cntr): Likewise.
40473         (ptmalloc_lock_all, ptmalloc_unlock_all, ptmalloc_unlock_all2):
40474         Likewise.
40476         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Use NULL rather than 0 for
40477         __libc_cleanup_push argument.
40479         * bits/param.h: New file.
40480         * misc/sys/param.h: New file.
40481         * include/sys/param.h: New file.
40482         * misc/Makefile (headers): Add bits/param.h.
40483         * sysdeps/generic/sys/param.h: File removed.
40484         * sysdeps/unix/sysv/linux/bits/param.h: New file.
40485         * sysdeps/unix/sysv/linux/sys/param.h: File removed.
40486         * sysdeps/mach/hurd/bits/param.h: New file.
40487         * sysdeps/mach/hurd/sys/param.h: File removed.
40489         * elf/dl-close.c (_dl_close_worker): Add a cast and a comment to the
40490         last change.
40492         * libio/genops.c (_IO_unbuffer_write): Conditionalize locking code on
40493         [_IO_MTSAFE_IO].
40494         * libio/libioP.h [!_IO_MTSAFE_IO && !NOT_IN_libc]
40495         (_IO_acquire_lock, _IO_acquire_lock_clear_flags2, _IO_release_lock):
40496         New macros.
40498         * Makeconfig [$(libc-reentrant) = yes] (libio-mtsafe): New variable.
40499         * libio/Makefile (CPPFLAGS): Append $(libio-mtsafe) unconditionally
40500         rather than -D_IO_MTSAFE_IO conditionally.
40501         * stdio-common/Makefile (CPPFLAGS): Likewise.
40502         * wcsmbs/Makefile (CPPFLAGS): Likewise.
40503         * stdlib/Makefile (CFLAGS-strfmon.c, CFLAGS-strfmon_l.c):
40504         Use $(libio-mtsafe).
40505         * debug/Makefile (CFLAGS-sprintf_chk.c): Use $(libio-mtsafe) instead
40506         of -D_IO_MTSAFE_IO.
40507         (CFLAGS-snprintf_chk.c, CFLAGS-vsprintf_chk.c): Likewise.
40508         (CFLAGS-vsnprintf_chk.c, CFLAGS-asprintf_chk.c): Likewise.
40509         (CFLAGS-vasprintf_chk.c, CFLAGS-obprintf_chk.c): Likewise.
40510         (CFLAGS-dprintf_chk.c, CFLAGS-vdprintf_chk.c): Likewise.
40511         (CFLAGS-printf_chk.c, CFLAGS-fprintf_chk.c): Likewise.
40512         (CFLAGS-vprintf_chk.c, CFLAGS-vfprintf_chk.c): Likewise.
40513         (CFLAGS-gets_chk.c, CFLAGS-fgets_chk.c): Likewise.
40514         (CFLAGS-fgets_u_chk.c, CFLAGS-fread_chk.c): Likewise.
40515         (CFLAGS-fread_u_chk.c): Likewise.
40516         (CFLAGS-swprintf_chk.c, CFLAGS-vswprintf_chk.c): Likewise.
40517         (CFLAGS-wprintf_chk.c, CFLAGS-fwprintf_chk.c): Likewise.
40518         (CFLAGS-vwprintf_chk.c, CFLAGS-vfwprintf_chk.c): Likewise.
40519         (CFLAGS-fgetws_chk.c, CFLAGS-fgetws_u_chk.c): Likewise.
40520         * grp/Makefile (CFLAGS-fgetgrent_r.c, CFLAGS-putgrent.c): Likewise.
40521         * gshadow/Makefile (CFLAGS-fgetsgent_r.c, CFLAGS-putsgent.c): Likewise.
40522         * misc/Makefile (CFLAGS-mntent_r.c): Likewise.
40523         * pwd/Makefile (CFLAGS-fgetpwent_r.c): Likewise.
40524         * shadow/Makefile (CFLAGS-fgetspent_r.c, CFLAGS-putspent.c): Likewise.
40526         * libio/Makefile: Test [$(libc-reentrant) = yes]
40527         instead of [$(filter %REENTRANT, $(defines)) nonempty].
40529         * Makeconfig
40530         [$(libc-reentrant) = yes] (defines): Append -D_LIBC_REENTRANT.
40531         * sysdeps/pthread/configure: File removed.
40532         * sysdeps/pthread/Makeconfig: New file.
40533         * sysdeps/mach/hurd/Makeconfig (libc-reentrant): New variable.
40534         * sysdeps/mach/hurd/configure.in: Don't touch DEFINES here.
40536 2012-08-16  Gary Benson  <gbenson@redhat.com>
40538         * elf/dl-close.c (_dl_close_worker): Also set r->r_map when
40539         unmapping the first object in a namespace.
40541 2012-08-16  Roland McGrath  <roland@hack.frob.com>
40543         * inet/getnetgrent_r.c (internal_setnetgrent): Renamed to ...
40544         (__internal_setnetgrent): ... this.  Add internal_function to
40545         definition.  Add libc_hidden_def.
40546         (setnetgrent): Update caller.
40547         (internal_endnetgrent): Renamed to ...
40548         (__internal_endnetgrent): ... this.  Add internal_function to
40549         definition.  Add libc_hidden_def.
40550         (endnetgrent): Update caller.
40551         (internal_getnetgrent_r): Renamed to ...
40552         (__internal_getnetgrent_r): ... this.  Add internal_function to
40553         definition.  Add libc_hidden_def.
40554         (__getnetgrent_r): Update caller.
40555         * inet/netgroup.h: Update declarations.  Add libc_hidden_proto uses.
40557 2012-08-16  Joseph Myers  <joseph@codesourcery.com>
40559         * stdlib/longlong.h: Update from GCC.
40561 2012-08-16  Roland McGrath  <roland@hack.frob.com>
40563         * stdlib/gmp-impl.h (udiv_qrnnd_preinv): Use __attribute__ ((unused))
40564         on _QL, which is set by umul_ppmm but never used.
40565         * stdio-common/_itoa.c (_itoa): Use __attribute__ ((unused)) on DUMMY
40566         variables, which are set by GMP macros but never used.
40567         * stdio-common/_itowa.c (_itowa): Likewise.
40568         * stdlib/divmod_1.c (mpn_divmod_1): Likewise.
40569         * stdlib/mod_1.c (mpn_mod_1): Likewise.
40571 2012-08-16  Carlos O'Donell  <carlos_odonell@mentor.com>
40573         * sysdeps/sh/ldsodefs.h (ARCH_PLTENTER_MEMBERS) <sh_gnu_pltenter>:
40574         struct La_sh_regs is not constant.
40575         * sysdeps/sparc/ldsodefs.h (ARCH_PLTENTER_MEMBERS)
40576         <sparc32_gnu_pltenter, sparc64_gnu_pltenter>: struct La_sparc32_regs
40577         and struct La_sparc64_regs are not constant.
40579 2012-08-16  Joseph Myers  <joseph@codesourcery.com>
40581         * sysdeps/unix/sysv/linux/kernel-features.h
40582         (__ASSUME_POSIX_TIMERS): Remove.
40583         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
40584         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
40585         * sysdeps/unix/sysv/linux/clock_getres.c [__ASSUME_POSIX_TIMERS]:
40586         Make code unconditional.
40587         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
40588         * sysdeps/unix/sysv/linux/clock_gettime.c [__ASSUME_POSIX_TIMERS]:
40589         Make code unconditional.
40590         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
40591         * sysdeps/unix/sysv/linux/clock_nanosleep.c
40592         [__ASSUME_POSIX_TIMERS]: Make code unconditional.
40593         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
40594         * sysdeps/unix/sysv/linux/clock_settime.c [__ASSUME_POSIX_TIMERS]:
40595         Make code unconditional.
40596         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
40597         [__ASSUME_POSIX_CPU_TIMERS <= 0 && __NR_clock_settime]
40598         (__libc_missing_posix_timers): Remove.
40600 2012-08-15  Roland McGrath  <roland@hack.frob.com>
40602         * elf/dl-load.c (_dl_map_object_from_fd) [SHARED]: Conditionalize
40603         check of GL(dl_error_catch_tsd) on [_LIBC_REENTRANT].
40605         * bits/libc-lock.h (__rtld_lock_initialize): New macro.
40607         * elf/dl-sym.c: Include <stdlib.h>.
40609         * posix/regcomp.c (init_word_char): Use temporaries to hold the 64-bit
40610         constants, which avoids warnings in 32-bit builds.
40612         * bits/fcntl.h [__USE_POSIX199309 || __USE_UNIX98]:
40613         (O_DSYNC, O_RSYNC): New macros (with NetBSD values).
40615         * misc/lseek.c: File moved to ...
40616         * io/lseek.c: ... here.
40618         * rt/clock_nanosleep.c: Include <time.h>, not <sys/time.h>.
40620         * crypt/sha512.c (sha512_process_block) [!USE_TOTAL128]: Avoid
40621         shifting LEN more than 31 bits at once.
40623 2012-08-15  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
40625         [BZ #14195]
40626         * sysdeps/i386/i686/multiarch/strcmp-sssse3.S: Fix
40627         segmentation fault for a case of two empty input strings.
40628         * string/test-strncasecmp.c (check1): Renamed to...
40629         (bz12205): ...this.
40630         (bz14195): Add new testcase for two empty input strings and N > 0.
40631         (test_main): Call new testcase, adapt for renamed function.
40633 2012-08-15  Andreas Jaeger  <aj@suse.de>
40635         [BZ #14090]
40636         * crypt/md5test2.c: New test, based on test supplied by Serge
40637         Belyshev <belyshev@depni.sinp.msu.ru>.
40638         * crypt/Makefile (xtests): Add md5test-giant..
40639         * crypt/Makefile ($(objpfx)md5test-giant): Add.
40641 2012-08-15  Paul Eggert  <eggert@cs.ucla.edu>
40643         [BZ #14090]
40644         * crypt/md5.c (md5_process_block): Don't assume the buffer
40645         length is less than 2**32.
40646         * crypt/sha512.c (sha512_process_block): Don't assume the buffer
40647         length is less than 2**64.
40649 2012-08-15  Roland McGrath  <roland@hack.frob.com>
40651         * string/str-two-way.h: Include <sys/param.h>.
40652         (MAX): Macro removed.
40654         * sysdeps/x86_64/multiarch/strstr-c.c: Add copyright header.
40655         Move #define and #undef of memmove to just before and after
40656         including <string.h>.
40658         * sysdeps/x86_64/multiarch/memmove.c: Don't include <stddef.h>.
40659         [!NOT_IN_libc]: Move #define and #undef of memmove to just before
40660         and after including <string.h>.  Move declarations of
40661         __memmove_sse2, __memmove_ssse3, and __memmove_ssse3_back
40662         to before #include "string/memmove.c".
40664         * include/dirent.h: Declare __getdirentries.
40666         * sysdeps/posix/system.c (do_system): Cast SUB_REF () to void when not
40667         using its value, to avoid warnings in the [!_LIBC_REENTRANT] case.
40669 2012-08-14  Mike Frysinger  <vapier@gentoo.org>
40671         * config.h.in (HAVE_CPP_ASM_DEBUGINFO): Delete.
40672         * sysdeps/i386/configure.in: Remove assembler-with-cpp debug check.
40673         * sysdeps/i386/configure: Regenerated.
40674         * sysdeps/i386/sysdep.h (ENTRY): Remove calls to STABS_CURRENT_FILE1,
40675         STABS_CURRENT_FILE, and STABS_FUN.
40676         (END): Remove call to STABS_FUN_END.
40677         (STABS_CURRENT_FILE1): Delete.
40678         (STABS_CURRENT_FILE): Likewise.
40679         (STABS_FUN): Likewise.
40680         (STABS_FUN_END): Likewise.
40681         (STABS_FUN2): Likewise.
40682         * sysdeps/x86_64/configure.in: Remove assembler-with-cpp debug check.
40683         * sysdeps/x86_64/configure: Regenerated.
40685 2012-08-14  Roland McGrath  <roland@hack.frob.com>
40687         * elf/dl-open.c: Include <atomic.h>.
40688         * elf/dl-lookup.c: Likewise.
40690 2012-08-14  Joseph Myers  <joseph@codesourcery.com>
40692         * sysdeps/unix/sysv/linux/kernel-features.h
40693         (__ASSUME_CLONE_THREAD_FLAGS): Remove.
40694         * sysdeps/unix/sysv/linux/s390/system.c (FORK): Define
40695         unconditionally.
40696         * sysdeps/unix/sysv/linux/sparc/system.c (FORK): Define
40697         unconditionally.
40698         * sysdeps/unix/sysv/linux/system.c [!FORK] (FORK): Do not
40699         condition on __ASSUME_CLONE_THREAD_FLAGS.
40701 2012-08-14  Andreas Jaeger  <aj@suse.de>
40703         * sysdeps/i386/fpu/libm-test-ulps: Update.
40705 2012-08-13  Maxim Kuvyrkov  <maxim@codesourcery.com>
40707         * include/atomic.h (atomic_exchange_and_add): Split into ...
40708         (atomic_exchange_and_add_acq, atomic_exchange_and_add_rel): ... these.
40709         New atomic macros.
40711 2012-08-13  Markus Trippelsdorf  <markus@trippelsdorf.de>
40713         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
40715 2012-08-13  Jeff Law <law@redhat.com>
40717         * manual/stdio.texi (snprintf): Clarify handling of the trailing
40718         null byte in the output string.
40720 2012-08-10  Joseph Myers  <joseph@codesourcery.com>
40722         * sysdeps/unix/sysv/linux/kernel-features.h
40723         (__LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL): Define.
40724         [__LINUX_KERNEL_VERSION >= __LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL]
40725         (__ASSUME_ARG_MAX_STACK_BASED): Define.
40726         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf)
40727         [__LINUX_KERNEL_VERSION < 0x020617]: Change condition to
40728         !__ASSUME_ARG_MAX_STACK_BASED.  Compare version with
40729         __LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL.
40731 2012-08-09  Jeff Law <law@redhat.com>
40733         [BZ #13939]
40734         * malloc.c/arena.c (reused_arena): New parameter, avoid_arena.
40735         When avoid_arena is set, don't retry in the that arena.  Pick the
40736         next one, whatever it might be.
40737         (arena_get2): New parameter avoid_arena, pass through to reused_arena.
40738         (arena_lock): Pass in new parameter to arena_get2.
40739         * malloc/malloc.c (__libc_memalign): Pass in new parameter to
40740         arena_get2.
40741         (__libc_malloc): Unify retrying after main arena failure with
40742         __libc_memalign version.
40743         (__libc_valloc, __libc_pvalloc, __libc_calloc): Likewise.
40745 2012-08-09  H.J. Lu  <hongjiu.lu@intel.com>
40747         [BZ #14166]
40748         * sysdeps/i386/i686/multiarch/strstr-c.c (strstr): Redefined
40749         to __redirect_strstr.
40750         (__strstr_sse42): Use typeof __redirect_strstr.
40751         (__strstr_ia32): Likewise.
40752         (__libc_strstr): New prototype.
40753         (strstr): Renamed to ...
40754         (__libc_strstr): This.
40755         (strstr): New strong alias of __libc_strstr.
40756         * sysdeps/x86_64/multiarch/strstr-c.c: Likewise.
40757         * sysdeps/unix/sysv/linux/x86_64/time.c (time): Redefined to
40758         __redirect_time.
40759         Include <time.h>.
40760         (__libc_time): New prototype.
40761         (time_ifunc): Replace time with __libc_time.
40762         (time): New strong alias and hidden definition of __libc_time.
40763         (__GI_time): Remove strong alias.
40764         * sysdeps/x86_64/multiarch/memmove.c: Don't include <string.h>.
40765         Include <stddef.h>.
40766         (memmove): Redefined to __redirect_memmove.
40767         (__memmove_sse2): Use typeof __redirect_memmove.
40768         (__memmove_ssse3): Likewise.
40769         (__memmove_ssse3_back): Likewise.
40770         (__libc_memmove): New prototype.
40771         (memmove): Renamed to ...
40772         (__libc_memmove): This.
40773         (memmove): New strong alias of __libc_memmove.
40775 2012-08-08  Mark Salter  <msalter@redhat.com>
40777         * elf/elf.h
40778         (R_MN10300_TLS_GD): Define.
40779         (R_MN10300_TLS_LD): Likewise.
40780         (R_MN10300_TLS_LDO): Likewise.
40781         (R_MN10300_TLS_GOTIE): Likewise.
40782         (R_MN10300_TLS_IE): Likewise.
40783         (R_MN10300_TLS_LE): Likewise.
40784         (R_MN10300_TLS_DTPMOD): Likewise.
40785         (R_MN10300_TLS_DTPOFF): Likewise.
40786         (R_MN10300_TLS_TPOFF): Likewise.
40787         (R_MN10300_SYM_DIFF): Likewise.
40788         (R_MN10300_ALIGN): Likewise.
40789         (R_MN10300_NUM): Update.
40791 2012-08-08  Joseph Myers  <joseph@codesourcery.com>
40793         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_TGKILL):
40794         Remove.
40796 2012-08-08  Roland McGrath  <roland@hack.frob.com>
40798         * sysdeps/posix/fdopendir.c: Include <stddef.h>.
40800         * sysdeps/unix/sysv/linux/readdir64_r.c: Update #include for
40801         sysdeps/unix -> sysdeps/posix move.
40802         * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
40804 2012-08-07      Allan McRae     <allan@archlinux.org>
40806         [BZ #14303]
40807         * sunrpc/rpc_main.c (SVR4_CPP): Remove.
40808         (SUNOS_CPP): Likewise.
40809         (find_cpp): Fall back to selecting system cpp when /lib/cpp is
40810         not found.
40811         (open_input): Call CPP using execvp.
40813 2012-08-07  Joseph Myers  <joseph@codesourcery.com>
40815         * sysdeps/unix/sysv/linux/kernel-features.h
40816         (__ASSUME_PROT_GROWSUPDOWN): Remove.
40817         (__ASSUME_NO_CLONE_DETACHED): Likewise.
40818         (__ASSUME_GETDENTS32_D_TYPE): Likewise.
40819         (__ASSUME_WAITID_SYSCALL): Likewise.
40820         * sysdeps/unix/sysv/linux/dl-execstack.c
40821         (_dl_make_stack_executable) [PROT_GROWSDOWN || PROT_GROWSUP]: Make
40822         code unconditional.
40823         (_dl_make_stack_executable) [!__ASSUME_PROT_GROWSUPDOWN]: Remove
40824         conditional code.
40825         * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS)
40826         [__ASSUME_GETDENTS32_D_TYPE]: Make code unconditional.
40827         (__GETDENTS) [!__ASSUME_GETDENTS32_D_TYPE]: Remove conditional
40828         code.
40829         * sysdeps/unix/sysv/linux/waitid.c [__NR_waitid]: Make code
40830         unconditional.
40831         [__ASSUME_WAITID_SYSCALL]: Likewise.
40832         [!__ASSUME_WAITID_SYSCALL]: Remove conditional code.
40834 2012-08-07  Roland McGrath  <roland@hack.frob.com>
40836         * sysdeps/unix/closedir.c: Renamed to ...
40837         * sysdeps/posix/closedir.c: ... here.
40838         * sysdeps/unix/dirfd.c: Renamed to ...
40839         * sysdeps/posix/dirfd.c: ... here.
40840         * sysdeps/unix/dirstream.h: Renamed to ...
40841         * sysdeps/posix/dirstream.h: ... here.
40842         * sysdeps/unix/fdopendir.c: Renamed to ...
40843         * sysdeps/posix/fdopendir.c: ... here.
40844         * sysdeps/unix/opendir.c: Renamed to ...
40845         * sysdeps/posix/opendir.c: ... here.
40846         * sysdeps/unix/readdir.c: Renamed to ...
40847         * sysdeps/posix/readdir.c: ... here.
40848         * sysdeps/unix/readdir_r.c: Renamed to ...
40849         * sysdeps/posix/readdir_r.c: ... here.
40850         * sysdeps/unix/rewinddir.c: Renamed to ...
40851         * sysdeps/posix/rewinddir.c: ... here.
40852         * sysdeps/unix/seekdir.c: Renamed to ...
40853         * sysdeps/posix/seekdir.c: ... here.
40854         * sysdeps/unix/telldir.c: Renamed to ...
40855         * sysdeps/posix/telldir.c: ... here.
40856         * sysdeps/unix/sysv/linux/opendir.c: Update #include.
40857         * sysdeps/unix/sysv/linux/readdir64.c: Likewise.
40858         * sysdeps/unix/sysv/linux/i386/readdir64.c: Likewise.
40859         * sysdeps/unix/sysv/linux/wordsize-64/readdir.c: Likewise.
40861         * sysdeps/unix/bsd/bsd4.4/bits/fcntl.h: Renamed to ...
40862         * bits/fcntl.h: ... here.
40864         * sysdeps/unix/bsd/bsd4.4/bits/fcntl.h (O_NOCTTY): Define to 0x8000,
40865         not 0.
40866         (O_ASYNC, O_FSYNC, O_SYNC): Move outside [__USE_MISC].
40867         [__USE_XOPEN2K8] (O_DIRECTORY, O_NOFOLLOW, O_CLOEXEC): New macros.
40868         (FCREAT, FEXCL, FTRUNC, FNOCTTY, FNONBLOCK): Macros removed.
40869         (struct flock): Move l_start, l_len to the beginning.
40870         Use __pid_t for l_pid.
40871         [__USE_XOPEN2K] (POSIX_FADV_NORMAL, POSIX_FADV_RANDOM): New macros.
40872         [__USE_XOPEN2K] (POSIX_FADV_SEQUENTIAL, POSIX_FADV_WILLNEED): Likewise.
40873         [__USE_XOPEN2K] (POSIX_FADV_DONTNEED, POSIX_FADV_NOREUSE): Likewise.
40874         (F_GETLK64, F_SETLK64, F_SETLKW64): New macros.
40875         [__USE_XOPEN2K8] (F_DUPFD_CLOEXEC): New macro.
40876         [__USE_LARGEFILE64] (struct flock64): New type.
40877         (F_GETOWN, F_SETOWN): Also define for [__USE_XOPEN2K8].
40879         * sysdeps/unix/bsd/bsd4.4/bits/dirent.h: Renamed to ...
40880         * bits/dirent.h: ... here.
40882         * sysdeps/unix/bsd/bsd4.4/bits/dirent.h
40883         [__INO_T_MATCHES_INO64_T] (_DIRENT_MATCHES_DIRENT64): New macro.
40885 2012-08-07  Joseph Myers  <joseph@codesourcery.com>
40887         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
40888         Change from 2.6.0 to 2.6.16.
40889         * sysdeps/unix/sysv/linux/configure: Regenerated.
40890         * sysdeps/unix/sysv/linux/kernel-features.h
40891         (__ASSUME_POSIX_CPU_TIMERS): Define unconditionally.
40892         (__ASSUME_TGKILL): Define conditional on architectures, not kernel
40893         version.
40894         (__ASSUME_UTIMES): Likewise.
40895         (__ASSUME_CLONE_STOPPED): Remove.
40896         (__ASSUME_FADVISE64_64_SYSCALL): Define conditional on
40897         architectures, not kernel version.
40898         (__ASSUME_PROT_GROWSUPDOWN): Define unconditionally.
40899         (__ASSUME_NO_CLONE_DETACHED): Likewise.
40900         (__ASSUME_GETDENTS32_D_TYPE): Likewise.
40901         (__ASSUME_WAITID_SYSCALL): Likewise.
40902         [__sparc__ && __arch64__] (__ASSUME_STAT64_SYSCALL): Do not
40903         condition definition on __LINUX_KERNEL_VERSION >= 0x02060c.
40904         * README: State 2.6.16 as minimum Linux kernel version.  Do not
40905         refer to older versions.
40907 2012-08-06  Roland McGrath  <roland@hack.frob.com>
40909         * dirent/alphasort.c [_DIRENT_MATCHES_DIRENT64]:
40910         Define alphasort64 as an alias.
40911         * dirent/versionsort.c [_DIRENT_MATCHES_DIRENT64]:
40912         Define versionsort64 as an alias.
40913         * dirent/scandir.c [_DIRENT_MATCHES_DIRENT64]:
40914         Define scandir64 as an alias.
40915         * dirent/scandirat.c [_DIRENT_MATCHES_DIRENT64]:
40916         Define scandirat64 as an alias.
40917         * dirent/alphasort64.c (alphasort64):
40918         Conditionalize on [!_DIRENT_MATCHES_DIRENT64].
40919         * dirent/versionsort64.c: Likewise.
40920         * dirent/scandir64.c: Likewise.
40921         * dirent/scandirat64.c: Likewise.
40922         * sysdeps/wordsize-64/alphasort.c: File removed.
40923         * sysdeps/wordsize-64/alphasort64.c: File removed.
40924         * sysdeps/wordsize-64/scandir.c: File removed.
40925         * sysdeps/wordsize-64/scandir64.c: File removed.
40926         * sysdeps/wordsize-64/scandirat.c: File removed.
40927         * sysdeps/wordsize-64/scandirat64.c: File removed.
40928         * sysdeps/wordsize-64/versionsort.c: File removed.
40929         * sysdeps/wordsize-64/versionsort64.c: File removed.
40930         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort.c: File removed.
40931         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort64.c: File removed.
40932         * sysdeps/unix/sysv/linux/x86_64/x32/scandir.c: File removed.
40933         * sysdeps/unix/sysv/linux/x86_64/x32/scandir64.c: File removed.
40934         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat.c: File removed.
40935         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat64.c: File removed.
40936         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort.c: File removed.
40937         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort64.c: File removed.
40939         * bits/typesizes.h [__LP64__] (__INO_T_MATCHES_INO64_T): New macros.
40940         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h:
40941         [__s390x__] (__INO_T_MATCHES_INO64_T): New macro.
40942         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
40943         [defined __arch64__ || defined __sparcv9]
40944         (__INO_T_MATCHES_INO64_T): New macro.
40945         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
40946         [__x86_64__] (__INO_T_MATCHES_INO64_T): New macro.
40947         * bits/dirent.h (_DIRENT_MATCHES_DIRENT64): New macro.
40948         * sysdeps/unix/sysv/linux/bits/dirent.h
40949         [defined __OFF_T_MATCHES_OFF64_T && defined __INO_T_MATCHES_INO64_T]
40950         (_DIRENT_MATCHES_DIRENT64): New macro.
40952         * io/lockf.c [__OFF_T_MATCHES_OFF64_T]:
40953         Define lockf64 as an alias.
40954         * libio/fseeko.c [__OFF_T_MATCHES_OFF64_T]:
40955         Define fseeko64 as an alias.
40956         * libio/ftello.c [__OFF_T_MATCHES_OFF64_T]:
40957         Define ftello64 as an alias.
40958         * libio/iofgetpos.c [__OFF_T_MATCHES_OFF64_T]:
40959         Define _IO_fgetpos64 and fgetpos64 as aliases.
40960         * libio/iofsetpos.c [__OFF_T_MATCHES_OFF64_T]:
40961         Define _IO_fsetpos64 and fsetpos64 as aliases.
40962         * io/lockf64.c [!__OFF_T_MATCHES_OFF64_T]:
40963         Conditionalize body on this.
40964         * libio/fseeko64.c: Likewise.
40965         * libio/ftello64.c: Likewise.
40966         * libio/iofgetpos64.c: Likewise.
40967         * libio/iofsetpos64.c: Likewise.
40968         * sysdeps/wordsize-64/lockf.c: File removed.
40969         * sysdeps/wordsize-64/lockf64.c: File removed.
40970         * sysdeps/wordsize-64/fseeko.c: File removed.
40971         * sysdeps/wordsize-64/fseeko64.c: File removed.
40972         * sysdeps/wordsize-64/ftello.c: File removed.
40973         * sysdeps/wordsize-64/ftello64.c: File removed.
40974         * sysdeps/wordsize-64/iofgetpos.c: File removed.
40975         * sysdeps/wordsize-64/iofgetpos64.c: File removed.
40976         * sysdeps/wordsize-64/iofsetpos.c: File removed.
40977         * sysdeps/wordsize-64/iofsetpos64.c: File removed.
40978         * sysdeps/unix/sysv/linux/x86_64/x32/lockf.c: File removed.
40979         * sysdeps/unix/sysv/linux/x86_64/x32/lockf64.c: File removed.
40980         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko.c: File removed.
40981         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko64.c: File removed.
40982         * sysdeps/unix/sysv/linux/x86_64/x32/ftello.c: File removed.
40983         * sysdeps/unix/sysv/linux/x86_64/x32/ftello64.c: File removed.
40984         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos.c: File removed.
40985         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos64.c: File removed.
40986         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos.c: File removed.
40987         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos64.c: File removed.
40989         * bits/typesizes.h [__LP64__] (__OFF_T_MATCHES_OFF64_T): New macro.
40990         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h:
40991         [__s390x__] (__OFF_T_MATCHES_OFF64_T): New macro.
40992         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
40993         [defined __arch64__ || defined __sparcv9]
40994         (__OFF_T_MATCHES_OFF64_T): New macro.
40995         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
40996         [__x86_64__] (__OFF_T_MATCHES_OFF64_T): New macro.
40997         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
40998         (__OFF_T_MATCHES_OFF64_T): New macro.
41000 2012-08-06  H.J. Lu  <hongjiu.lu@intel.com>
41002         * stdlib/secure-getenv.c (__secure_getenv): Replace
41003         GLIBC_2_16 with GLIBC_2_17.
41005 2012-08-06  H.J. Lu  <hongjiu.lu@intel.com>
41007         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen.c: Removed.
41008         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen64.c: Likewise.
41010 2012-08-03  David S. Miller  <davem@davemloft.net>
41012         * sysdeps/sparc/fpu/libm-test-ulps: Update.
41014 2012-08-03  Joseph Myers  <joseph@codesourcery.com>
41016         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_AT_SECURE):
41017         Remove.
41018         (__ASSUME_CORRECT_SI_PID): Likewise.
41019         (__ASSUME_BRK_PAGE_ROUNDED): Likewise.
41020         (__ASSUME_TMPFS_NAME): Likewise.
41021         * sysdeps/unix/sysv/linux/dl-sysdep.c (frob_brk)
41022         [!__ASSUME_BRK_PAGE_ROUNDED]: Remove conditional code.
41023         * sysdeps/unix/sysv/linux/ldsodefs.h [__ASSUME_AT_SECURE]
41024         (HAVE_AUX_SECURE): Make definition unconditional.
41025         * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs)
41026         [!__ASSUME_TMPFS_NAME]: Remove conditional code.
41028 2012-08-03  Roland McGrath  <roland@hack.frob.com>
41030         * sysdeps/mach/hurd/sys/param.h (MAXSYMLINKS): Macro removed.
41031         * sysdeps/mach/hurd/bits/local_lim.h (SYMLOOP_MAX): Macro removed.
41032         * sysdeps/mach/hurd/eloop-threshold.h: New file.
41033         * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use
41034         __eloop_threshold instead of SYMLOOP_MAX.
41036         * sysdeps/generic/eloop-threshold.h: New file.
41037         * stdlib/canonicalize.c (__realpath): Use __eloop_threshold instead
41038         of MAXSYMLINKS.
41039         * elf/chroot_canon.c (chroot_canon): Likewise.
41041 2012-08-03  Joseph Myers  <joseph@codesourcery.com>
41043         [BZ #13717]
41044         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
41045         Change to 2.6.0 everywhere.
41046         * sysdeps/unix/sysv/linux/configure: Regenerated.
41047         * sysdeps/unix/sysv/linux/kernel-features.h
41048         (__ASSUME_SET_THREAD_AREA_SYSCALL): Remove.
41049         (__ASSUME_CLONE_THREAD_FLAGS): Condition on architectures, not
41050         kernel versions.
41051         (__ASSUME_POSIX_TIMERS): Define unconditionally.
41052         (__ASSUME_FUTEX_REQUEUE): Remove.
41053         (__ASSUME_STATFS64): Define unconditionally.
41054         (__ASSUME_AT_SECURE): Likewise.
41055         (__ASSUME_CORRECT_SI_PID): Likewise.
41056         (__ASSUME_TGKILL): Define without depending on kernel version for
41057         i386.
41058         (__ASSUME_UTIMES): Likewise.
41059         (__ASSUME_SWAPCONTEXT_SYSCALL): Condition on architecture, not
41060         kernel version.
41061         (__ASSUME_BRK_PAGE_ROUNDED): Define unconditionally.
41062         (__ASSUME_TMPFS_NAME): Likewise.
41063         * README: Update reference to Linux kernel versions.
41065 2012-08-02  Marek Polacek  <polacek@redhat.com>
41067         [BZ# 14150]
41068         * configure.in (libc_cv_asm_type_prefix): Remove test.  Replace
41069         libc_cv_asm_type_prefix with %.
41070         * configure: Regenerated.
41071         * include/libc-symbols.h: Remove comment about
41072         ASM_TYPE_DIRECTIVE_PREFIX.  Replace ASM_TYPE_DIRECTIVE_PREFIX with %.
41073         (declare_symbol_alias_1_paste) [__ASSEMBLER__]: Do not define.
41074         (declare_symbol_alias_1_paste_1) [__ASSEMBLER__]: Likewise.
41075         (declare_symbol_alias_1_stringify) [!__ASSEMBLER__]: Likewise.
41076         (declare_symbol_alias_1_stringify_1) [!__ASSEMBLER__]: Likewise.
41077         * elf/tst-unique2mod2.c: Replace ASM_TYPE_DIRECTIVE_PREFIX with %.
41078         [HAVE_ASM_UNIQUE_OBJECT]: Do not define S.
41079         [HAVE_ASM_UNIQUE_OBJECT]: Do not define _S.
41080         * elf/tst-unique2mod1.c: Likewise.
41081         * elf/tst-unique1mod2.c: Likewise.
41082         * elf/tst-unique1mod1.c: Likewise.
41083         * config.h.in: Do not undef ASM_TYPE_DIRECTIVE_PREFIX.
41084         * sysdeps/s390/s390-32/sysdep.h: Do not define ASM_TYPE_DIRECTIVE.
41085         Replace ASM_TYPE_DIRECTIVE with .type.
41086         * sysdeps/s390/s390-64/sysdep.h: Likewise.
41087         * sysdeps/i386/sysdep.h: Likewise.
41088         * sysdeps/x86_64/sysdep.h: Likewise.
41089         * sysdeps/sh/sysdep.h: Likewise.
41090         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h:
41091         Do not define ASM_TYPE_DIRECTIVE.
41092         * sysdeps/powerpc/sysdep.h: Likewise.
41093         * sysdeps/powerpc/powerpc32/sysdep.h:
41094         Replace ASM_TYPE_DIRECTIVE with .type.
41095         * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
41096         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
41097         * sysdeps/i386/fpu/e_powf.S: Likewise.
41098         * sysdeps/i386/fpu/e_expl.S: Likewise.
41099         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
41100         * sysdeps/i386/fpu/e_acosh.S: Likewise.
41101         * sysdeps/i386/fpu/e_pow.S: Likewise.
41102         * sysdeps/i386/fpu/s_asinhl.S: Likewise.
41103         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
41104         * sysdeps/i386/fpu/s_expm1.S: Likewise.
41105         * sysdeps/i386/fpu/s_frexpf.S: Likewise.
41106         * sysdeps/i386/fpu/e_log2.S: Likewise.
41107         * sysdeps/i386/fpu/e_log2l.S: Likewise.
41108         * sysdeps/i386/fpu/e_scalb.S: Likewise.
41109         * sysdeps/i386/fpu/e_powl.S: Likewise.
41110         * sysdeps/i386/fpu/e_log10f.S: Likewise.
41111         * sysdeps/i386/fpu/s_cbrtf.S: Likewise.
41112         * sysdeps/i386/fpu/e_logl.S: Likewise.
41113         * sysdeps/i386/fpu/s_cbrt.S: Likewise.
41114         * sysdeps/i386/fpu/s_frexpl.S: Likewise.
41115         * sysdeps/i386/fpu/s_expm1f.S: Likewise.
41116         * sysdeps/i386/fpu/e_log2f.S: Likewise.
41117         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
41118         * sysdeps/i386/fpu/e_log.S: Likewise.
41119         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
41120         * sysdeps/i386/fpu/e_logf.S: Likewise.
41121         * sysdeps/i386/fpu/e_log10l.S: Likewise.
41122         * sysdeps/i386/fpu/e_atanh.S: Likewise.
41123         * sysdeps/i386/fpu/s_asinhf.S: Likewise.
41124         * sysdeps/i386/fpu/e_log10.S: Likewise.
41125         * sysdeps/i386/fpu/s_frexp.S: Likewise.
41126         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
41127         * sysdeps/i386/fpu/s_asinh.S: Likewise.
41128         * sysdeps/i386/fpu/s_cbrtl.S: Likewise.
41129         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
41130         * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Likewise.
41131         * sysdeps/i386/i686/fpu/e_logl.S: Likewise.
41132         * sysdeps/i386/i686/strtok.S: Likewise.
41133         * sysdeps/i386/i386-mcount.S: Likewise.
41134         * sysdeps/i386/strtok.S: Likewise.
41135         * sysdeps/x86_64/fpu/e_expl.S: Likewise.
41136         * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
41137         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
41138         * sysdeps/x86_64/fpu/e_logl.S: Likewise.
41139         * sysdeps/x86_64/fpu/e_expf.S: Likewise.
41140         * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
41141         * sysdeps/x86_64/fpu/s_copysignf.S: Likewise.
41142         * sysdeps/x86_64/fpu/s_copysign.S: Likewise.
41143         * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
41144         * sysdeps/x86_64/_mcount.S: Likewise.
41145         * sysdeps/x86_64/strtok.S: Likewise.
41146         * sysdeps/sh/_mcount.S: Likewise.
41148 2012-08-01  Roland McGrath  <roland@hack.frob.com>
41150         * libio/iofopen.c: Include <fcntl.h>.
41151         [_LIBC] [!defined O_LARGEFILE || O_LARGEFILE == 0]
41152         (_IO_fopen64, fopen64): Define as aliases.
41153         * libio/iofopen64.c: Include <fcntl.h>.
41154         [!defined _LIBC || (defined O_LARGEFILE && O_LARGEFILE != 0)]:
41155         Conditionalize body on this.
41156         * sysdeps/wordsize-64/iofopen.c: File removed.
41157         * sysdeps/wordsize-64/iofopen64.c: File removed.
41159 2012-08-01  Marek Polacek  <polacek@redhat.com>
41161         * libc/Makeconfig: Use elf in place of binfmt-subdir.
41162         Use dlfcn directly instead of a variable.
41163         (binfmt-subdir): Do not define.
41164         (dlfcn): Likewise.
41166 2012-08-01  Joseph Myers  <joseph@codesourcery.com>
41168         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_FCNTL64):
41169         Remove all definitions.
41170         * sysdeps/unix/sysv/linux/i386/fcntl.c: Do not include
41171         <kernel-features.h>.
41172         [!__ASSUME_FCNTL64] (__have_no_fcntl64): Remove.
41173         (miss_F_GETOWN_EX): Remove all definitions.
41174         [NO_CANCELLATION && !__ASSUME_FCNTL64] (__fcntl_nocancel): Remove
41175         macro definition.
41176         [!__ASSUME_FCNTL64]: Remove conditional code.
41177         [__ASSUME_FCNTL64]: Make code unconditional.
41178         * sysdeps/unix/sysv/linux/i386/lockf64.c: Do not include
41179         <kernel-features.h>.
41180         [__NR_fcntl64 && !__ASSUME_FCNTL64] (__have_no_fcntl64): Remove.
41181         (lockf64) [!__ASSUME_FCNTL64]: Remove conditional code.
41182         (lockf64) [__NR_fcntl64]: Make code unconditional.
41183         (lockf64) [__ASSUME_FCNTL64]: Likewise.
41185         * sysdeps/unix/sysv/linux/kernel-features.h
41186         (__ASSUME_VFORK_SYSCALL): Remove all definitions.
41187         * sysdeps/unix/sysv/linux/i386/vfork.S (__vfork) [__NR_vfork]:
41188         Make code unconditional.
41189         (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
41190         (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
41191         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S (__vfork)
41192         [__NR_vfork]: Make code unconditional.
41193         (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
41194         (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
41195         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S (__vfork)
41196         [__NR_vfork]: Make code unconditional.
41197         (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
41198         (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
41200 2012-08-01  Roland McGrath  <roland@hack.frob.com>
41202         * sysdeps/generic/sys/param.h (NGROUPS): Define only if [NGROUPS_MAX].
41203         (MAXSYMLINKS): Define only if [SYMLOOP_MAX].
41205         * misc/mkstemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
41206         Define mkstemp64 as an alias.
41207         * misc/mkstemps.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
41208         Define mkstemps64 as an alias.
41209         * misc/mkostemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
41210         Define mkostemp64 as an alias.
41211         * misc/mkostemps.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
41212         Define mkostemps64 as an alias.
41213         * misc/mkstemp64.c [defined O_LARGEFILE && O_LARGEFILE != 0]:
41214         Conditionalize body on this.
41215         * misc/mkostemp64.c: Likewise.
41216         * misc/mkostemps64.c: Likewise.
41217         * misc/mkstemps64.c: Likewise.
41218         * sysdeps/wordsize-64/mkstemp64.c: File removed.
41219         * sysdeps/wordsize-64/mkostemp64.c: File removed.
41220         * sysdeps/wordsize-64/mkostemp.c: File removed.
41221         * sysdeps/wordsize-64/mkstemp.c: File removed.
41222         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c: File removed.
41223         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c: File removed.
41224         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c: File removed.
41225         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c: File removed.
41227         [BZ #14138]
41228         * sysdeps/unix/sysv/linux/syscalls.list: Add getrlimit/ugetrlimit line.
41229         * sysdeps/unix/sysv/linux/i386/getrlimit.c: File removed.
41230         * sysdeps/unix/sysv/linux/powerpc/getrlimit.c: File removed.
41231         * sysdeps/unix/sysv/linux/sh/getrlimit.c: File removed.
41233         * sysdeps/unix/make-syscalls.sh: Emit uses of the versioned_symbol and
41234         compat_symbol macros from <shlib-compat.h> rather than the underlying
41235         default_symbol_version and symbol_version macros, so that DEFAULT
41236         lines in shlib-versions are respected.
41237         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Likewise.
41239 2012-08-01  Florian Weimer  <fweimer@redhat.com>
41241         * posix/unistd.h (setuid, setreuid, seteuid, setresuid):
41242         Declare with warn_unused_result.
41243         (setgid, setregid, setegid, setresgid): Likewise.
41244         * sysdeps/unix/sysv/linux/sys/fsuid.h (setfsuid, setfsgid):
41245         Likewise.
41246         * WUR-REPORT: Remove set*id functions.
41248 2012-07-31  Pino Toscano  <toscano.pino@tiscali.it>
41250         * sysdeps/mach/hurd/renameat.c: New file, mostly copied from rename.c.
41252 2012-07-31  Roland McGrath  <roland@hack.frob.com>
41254         [BZ #10191]
41255         * include/sys/socket.h (__libc_accept, __libc_accept4):
41256         Add attribute_hidden.
41257         * socket/accept4.c (__libc_accept4): Remove libc_hidden_def.
41259         * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Conditionalize
41260         use of PTR_MANGLE.
41261         * inet/getnetgrent_r.c (setup): Likewise.
41263         * sysdeps/generic/siglist.h: Put SIGWINCH under #ifdef.
41265 2012-07-31  David S. Miller  <davem@davemloft.net>
41267         * sysdeps/sparc/fpu/libm-test-ulps: Update.
41269 2012-07-31  Joseph Myers  <joseph@codesourcery.com>
41271         [BZ #13629]
41272         * math/s_clog.c (__clog): Use __log1p if larger part has absolute
41273         value between 1.0 and 2.0 and smaller part has absolute value less
41274         than 1.0.
41275         * math/s_clog10.c (__clog10): Likewise.
41276         * math/s_clog10f.c (__clog10f): Likewise.
41277         * math/s_clog10l.c (__clog10l): Likewise.
41278         * math/s_clogf.c (__clogf): Likewise.
41279         * math/s_clogl.c (__clogl): Likewise.
41280         * math/libm-test.inc (clog_test): Add more tests.
41281         (clog10_test): Likewise.
41282         * sysdeps/i386/fpu/libm-test-ulps: Update.
41283         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
41285 2012-07-31  Florian Weimer  <fweimer@redhat.com>
41287         * stdlib/tst-secure-getenv.c: Use printf for error reporting.
41288         Exit with zero in case no suitable GID is found, and write a
41289         message to standard error.
41291 2012-07-30  Roland McGrath  <roland@hack.frob.com>
41293         * sysdeps/generic/sys/param.h (MAXSYMLINKS): Define to SYMLOOP_MAX
41294         rather than to 1.
41295         (NBBY, NGROUPS, CANBSIZ, NCARGS): New macros.
41296         (MAXPATHLEN): Removed.
41297         (NOGROUP, NODEV): New macros.
41298         (setbit, clrbit, isset, isclr): New macros.
41299         (howmany, roundup, powerof2): New macros.
41300         (DEV_BSIZE): New macro.
41302         * include/unistd.h: Add attribute_hidden on __libc_pwrite64.
41303         * sysdeps/posix/pwrite64.c: Remove libc_hidden_def (__libc_pwrite64).
41305         * sysdeps/ieee754/k_standard.c (__kernel_standard_l): Conditionalize
41306         definition on [!__NO_LONG_DOUBLE_MATH].
41308         * nss/nsswitch.c (__nss_lookup_function): Conditionalize use of
41309         PTR_MANGLE and PTR_DEMANGLE.
41311         * socket/accept4.c (accept4): Rename to __libc_accept4.
41312         Define accept4 as a weak alias.
41314         * sysdeps/posix/getcwd.c (__getcwd): Conditionalize d_type field use
41315         on [_DIRENT_HAVE_D_TYPE].
41316         * io/ftw.c (ftw_dir): Likewise.
41318         * io/xmknod.c (__xmknod): Don't check PATH for being null.
41320         * libio/genops.c (flush_cleanup): Move inside [_IO_MTSAFE_IO].
41322         * bits/signum.h (SIGSTOP, SIGCONT, SIGTSTP, SIGTTIN, SIGTTOU, SIGCHLD):
41323         Use the BSD numbers rather than the arbitrary ones we had.
41324         (SIGBUS, SIGIO, SIGPOLL, SIGPROF, SIGSYS): New macros.
41325         (SIGTRAP, SIGURG, SIGUSR1, SIGUSR2, SIGVTALRM): New macros.
41326         (SIGXCPU, SIGXFSZ): New macros.
41327         (_NSIG): Now 32.
41329         * elf/rtld.c (_rtld_global): Conditionalize .dl_ns[LM_ID_BASE]
41330         initializer on [_LIBC_REENTRANT].
41332         * iconv/iconv_charmap.c (charmap_conversion): Move ST, ADDR
41333         definitions inside [_POSIX_MAPPED_FILES].
41335         * posix/regex.c: Include <sys/param.h> for MIN/MAX.
41337         * dirent/opendir.c: Include <fcntl.h>.
41339         * bits/libc-lock.h (__libc_setspecific): Evaluate arguments.
41340         (__libc_getspecific): Likewise.
41341         (__libc_key_create): Likewise.
41343         * stdio-common/tmpfile64.c: Include <fcntl.h> first.
41344         [defined O_LARGEFILE && O_LARGEFILE != 0]: Conditionalize on this.
41345         * stdio-common/tmpfile.c [!defined O_LARGEFILE || O_LARGEFILE == 0]
41346         (tmpfile64): Define as alias.
41347         * sysdeps/wordsize-64/tmpfile.c: File removed.
41348         * sysdeps/wordsize-64/tmpfile64.c: File removed.
41349         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile64.c: File removed.
41350         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile.c: File removed.
41352         * stdio-common/vfscanf.c: Include <stdbool.h>.
41353         * nss/makedb.c: Likewise.
41354         * stdio-common/_i18n_number.h: Likewise.
41355         * argp/argp-help.c: Likewise.
41356         * posix/wordexp.c: Likewise.
41357         * sysdeps/posix/spawni.c: Likewise.
41358         * nss/nss_files/files-initgroups.c: Likewise.
41359         * stdio-common/reg-modifier.c: Include <stdlib.h>.
41360         * nss/nss_files/files-initgroups.c: Likewise.
41361         * nss/nss_db/db-netgrp.c: Likewise.
41362         * nss/nss_db/db-initgroups.c: Likewise.
41363         * io/fchmodat.c: Include <sys/stat.h>.
41365         * sysdeps/generic/ldsodefs.h (struct rtld_global): Use
41366         __rtld_lock_define_recursive macro instead of __rtld_lock_recursive_t.
41368         * intl/loadmsgcat.c (_nl_load_domain): Don't use MAP_FAILED outside of
41369         [HAVE_MMAP].
41371         * bits/stat.h: Fix inclusion guard to accept _FCNTL_H too.
41372         Add multiple inclusion protection.
41374 2012-07-27  David S. Miller  <davem@davemloft.net>
41376         * sysdeps/sparc/fpu/libm-test-ulps: Update.
41378 2012-07-27  Gary Benson  <gbenson@redhat.com>
41380         [BZ #14298]
41381         * elf/rtld.c: Include <stap-probe.h>.
41382         (dl_main): Added static probes "init_start" and "init_complete".
41383         * elf/dl-load.c: Include <stap-probe.h>.
41384         (lose): Take new parameter "nsid".
41385         Added static probe "map_failed".
41386         (_dl_map_object_from_fd): Pass namespace id to lose.
41387         Added static probe "map_start".
41388         (open_verify): Pass namespace id to lose.
41389         * elf/dl-open.c: Include <stap-probe.h>.
41390         (dl_open_worker) Added static probes "map_complete", "reloc_start"
41391         and "reloc_complete".
41392         * elf/dl-close.c: Include <stap-probe.h>.
41393         (_dl_close_worker): Added static probes "unmap_start" and
41394         "unmap_complete".
41395         * elf/rtld-debugger-interface.txt: New file documenting the above.
41397 2012-07-26  Roland McGrath  <roland@hack.frob.com>
41399         * sunrpc/rpc_hout.c (pdeclaration): Call f_print with a "%s" format
41400         rather than a string variable.
41401         * sunrpc/rpc_main.c (h_output): Likewise.
41402         * sunrpc/rpc_svcout.c (write_real_program): Likewise.
41404 2012-07-26  Pino Toscano  <toscano.pino@tiscali.it>
41406         * inet/check_native.c: New file.
41408 2012-07-26  Joseph Myers  <joseph@codesourcery.com>
41410         [BZ #13629]
41411         * math/s_clog.c (__clog): Use __log1p or direct log1p calculation
41412         if larger part has absolute value 1.0.
41413         * math/s_clog10.c (__clog10): Likewise.
41414         * math/s_clog10f.c (__clog10f): Likewise.
41415         * math/s_clog10l.c (__clog10l): Likewise.
41416         * math/s_clogf.c (__clogf): Likewise.
41417         * math/s_clogl.c (__clogl): Likewise.
41418         * math/libm-test.inc (clog_test): Add more tests.
41419         (clog10_test): Likewise.
41420         * sysdeps/i386/fpu/libm-test-ulps: Update.
41421         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
41423         * elf/tst-auditmod1.c (pltenter): Remove all definitions of macro.
41424         (pltexit): Likewise.
41425         (La_regs): Likewise.
41426         (La_retval): Likewise.
41427         (int_retval): Likewise.
41428         Update #error for removed macros to refer only to definitions in
41429         tst-audit.h.
41430         * elf/tst-auditmod3b.c (pltenter): Remove all definitions of
41431         macro.
41432         (pltexit): Likewise.
41433         (La_regs): Likewise.
41434         (La_retval): Likewise.
41435         (int_retval): Likewise.
41436         * elf/tst-auditmod4b.c (pltenter): Remove all definitions of
41437         macro.
41438         (pltexit): Likewise.
41439         (La_regs): Likewise.
41440         (La_retval): Likewise.
41441         (int_retval): Likewise.
41442         * elf/tst-auditmod5b.c (pltenter): Remove all definitions of
41443         macro.
41444         (pltexit): Likewise.
41445         (La_regs): Likewise.
41446         (La_retval): Likewise.
41447         (int_retval): Likewise.
41448         * elf/tst-auditmod6b.c (pltenter): Remove all definitions of
41449         macro.
41450         (pltexit): Likewise.
41451         (La_regs): Likewise.
41452         (La_retval): Likewise.
41453         (int_retval): Likewise.
41454         * elf/tst-auditmod6c.c (pltenter): Remove all definitions of
41455         macro.
41456         (pltexit): Likewise.
41457         (La_regs): Likewise.
41458         (La_retval): Likewise.
41459         (int_retval): Likewise.
41460         * elf/tst-auditmod7b.c (pltenter): Remove all definitions of
41461         macro.
41462         (pltexit): Likewise.
41463         (La_regs): Likewise.
41464         (La_retval): Likewise.
41465         (int_retval): Likewise.
41466         * sysdeps/generic/tst-audit.h: Update comment to refer only to
41467         macro definitions in tst-audit.h.
41468         * sysdeps/i386/tst-audit.h: New file.
41469         * sysdeps/powerpc/powerpc32/tst-audit.h: Likewise.
41470         * sysdeps/powerpc/powerpc64/tst-audit.h: Likewise.
41471         * sysdeps/s390/s390-32/tst-audit.h: Likewise.
41472         * sysdeps/s390/s390-64/tst-audit.h: Likewise.
41473         * sysdeps/sh/tst-audit.h: Likewise.
41474         * sysdeps/sparc/sparc32/tst-audit.h: Likewise.
41475         * sysdeps/sparc/sparc64/tst-audit.h: Likewise.
41476         * sysdeps/x86_64/tst-audit.h: Likewise.
41478 2012-07-26  Andreas Jaeger  <aj@suse.de>
41480         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Add __THROW for
41481         ptrace.
41483         * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_eventcodes): Add
41484         new value PTRACE_EVENT_SECCOMP from Linux 3.5.
41485         (__ptrace_setoptions): Add new value PTRACE_O_TRACESECCOMP, adjust
41486         PTRACE_O_MASK.
41487         * sysdeps/unix/sysv/linux/s390/bits/ptrace.h: Likewise.
41488         * sysdeps/unix/sysv/linux/sparc/bits/ptrace.h: Likewise.
41489         * sysdeps/unix/sysv/linux/powerpc/bits/ptrace.h: Likewise.
41491         * sysdeps/unix/sysv/linux/sys/epoll.h (EPOLLWAKEUP): Add new
41492         value.
41494         * sysdeps/unix/sysv/linux/bits/siginfo.h (siginfo_t): Add
41495         _sigsys.
41496         (si_call_addr, si_syscall, si_arch): Define new macro.
41497         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (siginfo_t): Add
41498         _sigsys.
41499         (si_call_addr, si_syscall, si_arch): Define new marcro.
41500         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (siginfo_t): Add
41501         _sigsys.
41502         (si_call_addr, si_syscall, si_arch): Define new macro.
41503         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h (struct): Add
41504         _sigsys.
41505         (si_call_addr, si_syscall, si_arch): Define new macro.
41507 2012-07-25  Joseph Myers  <joseph@codesourcery.com>
41509         [BZ #13717]
41510         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
41511         Change to 2.4.21 where previously 2.4.1.
41512         * sysdeps/unix/sysv/linux/configure: Regenerated.
41513         * sysdeps/unix/sysv/linux/kernel-features.h [(__powerpc__ ||
41514         __sh__) && !__powerpc64__] (__ASSUME_FCNTL64): Do not condition on
41515         Linux kernel version.
41516         (__ASSUME_STD_AUXV): Remove.
41517         [__powerpc__] (__ASSUME_VFORK_SYSCALL): Do not condition on Linux
41518         kernel version.
41519         [__powerpc__ && !__powerpc64] (__ASSUME_MMAP2_SYSCALL): Likewise.
41520         (__ASSUME_NEW_PRCTL_SYSCALL): Remove.
41521         (__ASSUME_FIXED_CLONE_SYSCALL): Likewise.
41522         (__ASSUME_NEW_RT_SIGRETURN_SYSCALL): Likewise.
41523         (__ASSUME_NETLINK_SUPPORT): Likewise.
41524         * nscd/gai.c [NEED_NETLINK && __ASSUME_NETLINK_SUPPORT == 0]
41525         (__no_netlink_support): Remove conditional definition.
41526         * sysdeps/unix/sysv/linux/check_pf.c (__no_netlink_support):
41527         Remove.
41528         (__check_pf) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional code.
41529         [__ASSUME_NETLINK_SUPPORT]: Make code unconditional.
41530         * sysdeps/unix/sysv/linux/if_index.c [!__ASSUME_NETLINK_SUPPORT]
41531         (if_nameindex_ioctl): Remove.
41532         (if_nameindex_netlink): Do not handle __no_netlink_support.
41533         (if_nameindex) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional
41534         code.
41535         * sysdeps/unix/sysv/linux/ifaddrs.c [!__ASSUME_NETLINK_SUPPORT]:
41536         Remove conditional code.
41537         (__netlink_open) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional
41538         code.
41539         (getifaddrs_internal) [__ASSUME_NETLINK_SUPPORT]: Make code
41540         unconditional.
41541         [!__ASSUME_NETLINK_SUPPORT]: Remove conditional code.
41542         [__ASSUME_NETLINK_SUPPORT] (freeifaddrs): Make code unconditional.
41543         * sysdeps/unix/sysv/linux/netlinkaccess.h (__no_netlink_support):
41544         Remove.
41545         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
41546         [!__ASSUME_STD_AUXV]: Remove conditional code.
41547         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S (__clone)
41548         [!__ASSUME_FIXED_CLONE_SYSCALL]: Remove conditional code.
41549         [__ASSUME_FIXED_CLONE_SYSCALL]: Make code unconditional.
41550         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c
41551         [!__ASSUME_NEW_PRCTL_SYSCALL] (fe_mask_handler): Remove.
41552         (__fe_mask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove conditional
41553         code.
41554         [__ASSUME_NEW_PRCTL_SYSCALL]: Make code unconditional.
41555         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
41556         [!__ASSUME_NEW_PRCTL_SYSCALL] (fe_nomask_handler): Remove.
41557         (__fe_nomask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove
41558         conditional code.
41559         [__ASSUME_NEW_PRCTL_SYSCALL]: Make code unconditional.
41560         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c
41561         (__fe_mask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove conditional
41562         code.
41563         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
41564         (__fe_nomask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove
41565         conditional code.
41566         * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
41567         (__novec_getcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
41568         code unconditional.
41569         (__novec_getcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
41570         conditional code.
41571         (__getcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
41572         unconditional.
41573         (__getcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
41574         conditional code.
41575         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
41576         (__makecontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
41577         unconditional.
41578         (__makecontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
41579         conditional code.
41580         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
41581         (__novec_setcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
41582         code unconditional.
41583         (__novec_setcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
41584         conditional code.
41585         (__setcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
41586         unconditional.
41587         (__setcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
41588         conditional code.
41589         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
41590         (__novec_swapcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
41591         code unconditional.
41592         (__novec_swapcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
41593         conditional code.
41594         (__swapcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
41595         unconditional.
41596         (__swapcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
41597         conditional code.
41599 2012-07-25  Andreas Schwab  <schwab@linux-m68k.org>
41601         * sysdeps/unix/sysv/linux/i386/accept4.S: Remove pseudo_end label.
41602         * sysdeps/unix/sysv/linux/i386/call_sync_file_range.S: Likewise.
41603         * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
41604         * sysdeps/unix/sysv/linux/i386/epoll_pwait.S: Likewise.
41605         * sysdeps/unix/sysv/linux/i386/getcontext.S: Likewise.
41606         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
41607         * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
41608         * sysdeps/unix/sysv/linux/i386/semtimedop.S: Likewise.
41609         * sysdeps/unix/sysv/linux/i386/setcontext.S: Likewise.
41610         * sysdeps/unix/sysv/linux/i386/socket.S: Likewise.
41611         * sysdeps/unix/sysv/linux/i386/swapcontext.S: Likewise.
41612         * sysdeps/unix/sysv/linux/i386/syscall.S: Likewise.
41613         * sysdeps/unix/sysv/linux/i386/sysdep.h (PSEUDO): Likewise.
41614         * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise.
41615         * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
41616         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Likewise.
41617         * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Likewise.
41618         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Likewise.
41619         * sysdeps/unix/sysv/linux/x86_64/syscall.S: Likewise.
41620         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PSEUDO): Likewise.
41621         * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Likewise.
41622         * sysdeps/unix/sysv/linux/x86_64/vfork.S: Likewise.
41623         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Likewise.
41625 2012-07-25  Florian Weimer  <fweimer@redhat.com>
41627         * Versions.def: Add GLIBC_2.17.
41628         * stdlib/stdlib.h: Rename __secure_getenv to secure_getenv.
41629         * include/stdlib.h: Rename __secure_getenv to secure_getenv.
41630         Introduce __libc_secure_getenv.
41631         * stdlib/Versions (2.17): Add secure_getenv
41632         (GLIBC_PRIVATE): Add __libc_secure_getenv.
41633         * stdlib/secure-getenv.c: Rename __secure_getenv to
41634         __libc_secure_getenv.  Add secure_getenv alias.  Add compatibility
41635         symbol __secure_getenv for GLIBC_2.0.
41636         * stdlib/tst-secure-getenv.c: New.
41637         * stdlib/Makefile (tests): Add testcase.
41638         * manual/startup.texi (Environment Access): Document
41639         secure_getenv.
41640         * hesiod/hesiod.c (hesiod_init): Rename __secure_getenv to
41641         __libc_secure_getenv.
41642         * inet/ruserpass.c (ruserpass): Likewise.
41643         * malloc/mtrace.c (mtrace): Likewise.
41644         * sysdeps/mach/hurd/tmpfile.c (__tmpfile): Likewise.
41645         * sysdeps/posix/libc_fatal.c (__libc_fatal): Likewise.
41646         * sysdeps/posix/sysconf.c (__sysconf__check_spec): Likewise.
41647         * sysdeps/posix/tempname.c: Likewise.  Evaluate
41648         HAVE_SECURE_GETENV.
41649         * sysdeps/unix/sysv/linux/libc_fatal.c (__libc_message): Rename
41650         __secure_getenv to __libc_secure_getenv.
41651         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Add secure_getenv.
41652         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
41653         Likewise.
41654         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
41655         Likewise.
41656         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Likewise.
41657         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Likewise.
41658         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
41659         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Likewise.
41660         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Likewise.
41661         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
41662         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Likewise.
41664 2012-07-25  Joseph Myers  <joseph@codesourcery.com>
41666         * sysdeps/generic/ldsodefs.h (struct La_i86_regs): Remove.
41667         (struct La_i86_retval): Likewise.
41668         (struct La_x86_64_regs): Likewise.
41669         (struct La_x86_64_retval): Likewise.
41670         (struct La_x32_regs): Likewise.
41671         (struct La_x32_retval): Likewise.
41672         (struct La_ppc32_regs): Likewise.
41673         (struct La_ppc32_retval): Likewise.
41674         (struct La_ppc64_regs): Likewise.
41675         (struct La_ppc64_retval): Likewise.
41676         (struct La_sh_regs): Likewise.
41677         (struct La_sh_retval): Likewise.
41678         (struct La_s390_32_regs): Likewise.
41679         (struct La_s390_32_retval): Likewise.
41680         (struct La_s390_64_regs): Likewise.
41681         (struct La_s390_64_retval): Likewise.
41682         (struct La_sparc32_regs): Likewise.
41683         (struct La_sparc32_retval): Likewise.
41684         (struct La_sparc64_regs): Likewise.
41685         (struct La_sparc64_retval): Likewise.
41686         (struct audit_ifaces): Remove architecture-specific pltenter and
41687         pltexit members.
41688         * sysdeps/i386/ldsodefs.h: New file.
41689         * sysdeps/powerpc/ldsodefs.h: Likewise.
41690         * sysdeps/s390/ldsodefs.h: Likewise.
41691         * sysdeps/sh/ldsodefs.h: Likewise.
41692         * sysdeps/sparc/ldsodefs.h: Likewise.
41693         * sysdeps/x86_64/ldsodefs.h: Likewise.
41695 2012-07-25  Marek Polacek  <polacek@redhat.com>
41697         [BZ #6808]
41698         * math/libm-test.inc (yn_test): Add another test.
41699         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_ynl): Set errno
41700         to ERANGE when the result is +-Inf.
41701         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Likewise.
41702         * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_ynf): Likewise.
41703         * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_ynl): Likewise.
41704         * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_yn): Likewise.
41706 2012-07-24  Joseph Myers  <joseph@codesourcery.com>
41708         * conform/data/time.h-data (NULL): Use macro-constant.  Require
41709         equal to 0.
41710         (CLOCKS_PER_SEC): Use macro instead of constant.  Specify type as
41711         clock_t.
41712         [ISO11] (TIME_UTC): Use macro-int-constant.  Require value > 0.
41714 2012-07-23  Thomas Schwinge  <thomas@codesourcery.com>
41716         * configure.in <sysdeps resolving>: Correct printing
41717         Implies_before.
41718         * configure: Regenerate.
41720 2012-07-22  Thomas Schwinge  <thomas@codesourcery.com>
41722         * math/w_ilogb.c: Include <limits.h>.
41723         * math/w_ilogbl.c: Likewise.
41725 2012-07-20  Joseph Myers  <joseph@codesourcery.com>
41727         * manual/lang.texi (__va_copy): Document primarily as ISO C99
41728         va_copy.  Document allowing for unavailable va_copy only as
41729         pre-C99 compatibility.
41730         * manual/string.texi (Copying and Concatenation): Use va_copy
41731         instead of __va_copy in concat example.
41733 2012-07-20  Pino Toscano  <toscano.pino@tiscali.it>
41735         * sysdeps/mach/hurd/sendto.c (create_address_port): New subroutine.
41736         (__sendto): Use create_address_port.  Initialize APORT and deallocate
41737         it if not null.
41739         * sysdeps/mach/hurd/llistxattr.c: New file, copied from listxattr.c
41740         with O_NOLINK passed to __file_name_lookup.
41742         * sysdeps/mach/hurd/lremovexattr.c: New file, copied from removexattr.c
41743         with O_NOLINK passed to __file_name_lookup.
41745         * sysdeps/mach/hurd/getgroups.c: Return -1 and set EINVAL for
41746         negative N or less than NGIDS.
41748         * sysdeps/mach/hurd/getlogin_r.c: Make LOGIN non-static and change its
41749         type to string_t.  Set ERANGE as errno and return it if NAME is not big
41750         enough.  Use memcpy instead of strncpy.
41752 2012-07-20  Joseph Myers  <joseph@codesourcery.com>
41754         * elf/Makefile (check-data): Remove.
41755         (localplt.data): New vpath directive.
41756         ($(objpfx)check-localplt.out): Use localplt.data from vpath
41757         instead of $(check-data).
41758         * scripts/data/localplt-generic.data: Move to ...
41759         * sysdeps/generic/localplt.data: ... here.
41760         * scripts/data/localplt-i386-linux-gnu.data: Move to ...
41761         * sysdeps/unix/sysv/linux/i386/nptl/localplt.data: ... here.
41762         * scripts/data/localplt-powerpc-linux-gnu.data: Move to ...
41763         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/localplt.data:
41764         ... here.
41765         * scripts/data/localplt-powerpc64-linux-gnu.data: Move to ...
41766         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/localplt.data:
41767         ... here.
41768         * scripts/data/localplt-s390-linux-gnu.data: Move to ...
41769         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/localplt.data:
41770         ... here.
41771         * scripts/data/localplt-s390x-linux-gnu.data: Move to ...
41772         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/localplt.data:
41773         ... here.
41774         * scripts/data/localplt-sparc-linux-gnu.data: Move to ...
41775         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/localplt.data:
41776         ... here.
41777         * scripts/data/localplt-sparc64-linux-gnu.data: Move to ...
41778         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/localplt.data:
41779         ... here.
41781 2012-07-19 Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
41783         * sysdeps/powerpc/tls-macros.h: Split PowerPC definitions in
41784         PPC32 and PPC64 files.
41785         * sysdeps/powerpc/powerpc32/tls-macros.h: New file.
41786         * sysdeps/powerpc/powerpc64/tls-macros.h: Likewise.
41788 2012-07-19  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
41790         * sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c: Move
41791         __makecontext_ret to ...
41792         * sysdeps/unix/sysv/linux/s390/s390-32/__makecontext_ret.S:
41793         ... here and call exit if uc_link is NULL.  New file.
41794         * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Add
41795         __makecontext_ret.S.
41796         * sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c: Move
41797         __makecontext_ret to ...
41798         * sysdeps/unix/sysv/linux/s390/s390-64/__makecontext_ret.S:
41799         ... here and call exit if uc_link is NULL.  New file.
41800         * sysdeps/unix/sysv/linux/s390/s390-64/Makefile: Add
41801         __makecontext_ret.S.
41803 2012-07-19  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
41805         * elf/elf.h (R_390_IRELATIVE): New definition.
41806         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela): Invoke the
41807         resolver function for IFUNC symbols.  Support R_390_IRELATIVE.
41808         (elf_machine_lazy_rel): Support R_390_IRELATIVE.
41809         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela):
41810         (elf_machine_lazy_rel): Likewise.
41811         * sysdeps/s390/dl-irel.h: New file.
41812         * sysdeps/s390/s390-64/memcpy.S: New asm code.
41813         * sysdeps/s390/s390-64/memset.S: New asm code.
41814         * sysdeps/s390/s390-64/memcmp.S: New asm code.
41815         * sysdeps/s390/s390-64/multiarch/memset.S: New file.
41816         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: New file.
41817         * sysdeps/s390/s390-64/multiarch/memcmp.S: New file.
41818         * sysdeps/s390/s390-64/multiarch/memcpy.S: New file.
41819         * sysdeps/s390/s390-64/multiarch/Makefile: New file.
41820         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: New file.
41821         * sysdeps/s390/s390-32/multiarch/Makefile: New file.
41822         * sysdeps/s390/s390-32/multiarch/memcmp.S: New file.
41823         * sysdeps/s390/s390-32/multiarch/memcpy.S: New file.
41824         * sysdeps/s390/s390-32/multiarch/memset.S: New file.
41825         * sysdeps/s390/s390-32/memcpy.S: New asm code.
41826         * sysdeps/s390/s390-32/memset.S: New asm code.
41827         * sysdeps/s390/s390-32/memcmp.S: New asm code.
41829 2012-07-17  Marek Polacek  <polacek@redhat.com>
41831         [BZ #14349]
41832         * sysdeps/s390/s390-32/configure.in: Remove TLS check.
41833         * sysdeps/s390/s390-64/configure.in: Likewise.
41834         * sysdeps/sparc/configure.in: Likewise.
41835         * sysdeps/powerpc/powerpc32/configure.in: Likewise.
41836         * sysdeps/powerpc/powerpc64/configure.in: Likewise.
41837         * sysdeps/i386/configure.in: Likewise.
41838         * sysdeps/x86_64/configure.in: Likewise.
41839         * sysdeps/sh/configure.in: Likewise.
41840         * sysdeps/s390/s390-32/configure: Regenerated.
41841         * sysdeps/s390/s390-64/configure: Likewise.
41842         * sysdeps/x86_64/configure: Likewise.
41843         * sysdeps/sh/configure: Likewise.
41844         * sysdeps/powerpc/powerpc64/configure: Likewise.
41845         * sysdeps/powerpc/powerpc32/configure: Likewise.
41846         * sysdeps/sparc/configure: Likwise.
41847         * sysdeps/i386/configure: Likewise.
41849         * elf/dl-open.c: Comment fixes.
41851 2012-07-17  Joseph Myers  <joseph@codesourcery.com>
41853         * Makefile [CXX] (check-data): Remove.
41854         [CXX] (c++-types.data): New vpath directive.
41855         [CXX] ($(objpfx)c++-types-check.out): Use c++-types.data from
41856         vpath.  Do not allow for C++ type data being missing.
41857         * scripts/data/c++-types-alpha-linux-gnu.data: Move to
41858         ports/sysdeps/unix/sysv/linux/alpha/nptl/c++-types.data.
41859         * scripts/data/c++-types-ia64-linux-gnu.data: Move to
41860         ports/sysdeps/unix/sysv/linux/ia64/nptl/c++-types.data.
41861         * scripts/data/c++-types-i386-linux-gnu.data: Move to ...
41862         * sysdeps/unix/sysv/linux/i386/nptl/c++-types.data: ... here.
41863         * scripts/data/c++-types-powerpc-linux-gnu.data: Move to ...
41864         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/c++-types.data:
41865         ... here.
41866         * scripts/data/c++-types-powerpc64-linux-gnu.data: Move to ...
41867         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/c++-types.data:
41868         ... here.
41869         * scripts/data/c++-types-s390-linux-gnu.data: Move to ...
41870         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/c++-types.data:
41871         ... here.
41872         * scripts/data/c++-types-s390x-linux-gnu.data: Move to ...
41873         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/c++-types.data:
41874         ... here.
41875         * scripts/data/c++-types-sparc-linux-gnu.data: Move to ...
41876         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/c++-types.data:
41877         ... here.
41878         * scripts/data/c++-types-sparc64-linux-gnu.data: Move to ...
41879         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/c++-types.data:
41880         ... here.
41881         * scripts/data/c++-types-x32-linux-gnu.data: Move to ...
41882         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/c++-types.data:
41883         ... here.
41884         * scripts/data/c++-types-x86_64-linux-gnu.data: Move to ...
41885         * sysdeps/unix/sysv/linux/x86_64/64/nptl/c++-types.data: ... here.
41887         * elf/tls-macros.h (TLS_LE): Move architecture-specific
41888         definitions to architecture-specific files.
41889         (TLS_IE): Likewise.
41890         (TLS_LD): Likewise.
41891         (TLS_GD): Likewise.
41892         * sysdeps/i386/tls-macros.h: New file.
41893         * sysdeps/powerpc/tls-macros.h: Likewise.
41894         * sysdeps/s390/s390-32/tls-macros.h: Likewise.
41895         * sysdeps/s390/s390-64/tls-macros.h: Likewise.
41896         * sysdeps/sh/tls-macros.h: Likewise.
41897         * sysdeps/sparc/sparc32/tls-macros.h: Likewise.
41898         * sysdeps/sparc/sparc64/tls-macros.h: Likewise.
41899         * sysdeps/x86_64/tls-macros.h: Likewise.
41901 2012-07-17  Thomas Schwinge  <thomas@codesourcery.com>
41903         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Preserve
41904         zero value for regular exit case.
41906         * sysdeps/unix/sysv/linux/x86_64/__start_context.S
41907         (__start_context): Preserve zero value for regular exit case.
41909 2012-07-17  Thomas Schwinge  <thomas@codesourcery.com>
41910             Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
41912         * manual/setjmp.texi (setcontext): Clarify normal process
41913         termination when uc_link is the null pointer.
41914         * stdlib/tst-makecontext.c (cf): Exercise this: remove explicit
41915         exit call.
41917 2012-07-16  Andreas Schwab  <schwab@linux-m68k.org>
41919         * stdlib/bug-getcontext.c (do_test): Don't test FE_ALL_EXCEPT in
41920         preprocessor.  Test for each exception mask separately.
41922 2012-07-16  Andreas Jaeger  <aj@suse.de>
41924         * po/ru.po: Update from translation team.
41926 2012-07-15  Joseph Myers  <joseph@codesourcery.com>
41928         * conform/data/string.h-data (NULL): Use macro-constant.  Require
41929         equal to 0.
41930         [ISO || ISO99 || ISO11] (stddef.h): Do not allow header.
41931         (str*): Change to str[abcdefghijklmnopqrstuvwxyz]*.
41932         (wcs*): Change to wcs[abcdefghijklmnopqrstuvwxyz]*.
41933         (mem[abcdefghijklmnopqrstuvwxyz]*): Allow.
41934         [ISO || ISO99 || ISO11] (*_t): Do not allow.
41936 2012-07-13  Andreas Jaeger  <aj@suse.de>
41938         * po/fr.po: Update from translation team.
41940 2012-07-12  Marek Polacek  <polacek@redhat.com>
41942         [BZ #14173]
41943         * math/libm-test.inc (yn_test): Add test for BZ #14173.
41944         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Correct
41945         loop condition.
41947 2012-07-12  Joseph Myers  <joseph@codesourcery.com>
41949         [BZ #13717]
41950         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
41951         Change to 2.4.1 where previously 2.4.0.
41952         * sysdeps/unix/sysv/linux/configure: Regenerated.
41953         * sysdeps/unix/sysv/linux/kernel-features.h [!__sh__]
41954         (__ASSUME_ST_INO_64_BIT): Do not condition definition on kernel
41955         version.
41956         [__i386__ || __sparc__] (__ASSUME_FCNTL64): Likewise.
41957         (__ASSUME_AT_CLKTCK): Remove.
41958         (__ASSUME_AT_PAGESIZE): Likewise.
41959         (__ASSUME_AT_XID): Likewise.
41960         (__ASSUME_GETDENTS64_SYSCALL): Define unconditionally.
41961         [__i386__] (__ASSUME_VFORK_SYSCALL): Define unconditionally.
41962         * sysdeps/unix/sysv/linux/ldsodefs.h (HAVE_AUX_XID): Define
41963         unconditionally.
41964         (HAVE_AUX_PAGESIZE): Likewise.
41965         * sysdeps/unix/sysv/linux/prof-freq.c (__profile_frequency)
41966         [__ASSUME_AT_CLKTCK]: Make code unconditional.
41967         [!__ASSUME_AT_CLKTCK]: Remove conditional code.
41969 2012-07-12  Jeroen van Bemmel  <jvb127@gmail.com>
41971         [BZ #14307]
41972         * sysdeps/posix/getaddrinfo.c (gaih_inet): Increase the size of
41973         the temporary buffer used to invoke __gethostbyname2_r,
41974         __gethostbyaddr_r and gethostbyname4_r to make room for struct
41975         host_data / struct gaih_addrtuple.
41976         * resolv/nss_dns/dns-host.c (global scope): Move definition of
41977         implementation constants MAX_NR_ALIASES and MAX_NR_ADDRS to
41978         header file nss/nsswitch.h.
41979         * nss/nsswitch.h (global scope): Add definition of implementation
41980         constants MAX_NR_ALIASES and MAX_NR_ADDRS (moved from
41981         resolv/nss_dns/dns-host.c).
41983 2012-07-11  Andreas Jaeger  <aj@suse.de>
41985         * po/fr.po: Update from translation team.
41987         * po/sv.po: Update from translation team
41988         * po/fr.po: Another update from translation team.
41990 2012-07-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
41992         * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c: Do not call sinh and cosh
41993         for subnormals or multiply small sinh result by itself.
41994         * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c: Likewise.
41995         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
41997 2012-07-11  David S. Miller  <davem@davemloft.net>
41999         * sysdeps/sparc/fpu/libm-test-ulps: Update.
42001 2012-07-10  Andreas Schwab  <schwab@linux-m68k.org>
42003         [BZ #14347]
42004         * misc/sys/syslog.h (LOG_MAKEPRI): Don't shift first argument.
42005         (INTERNAL_MARK): Shift it here.
42007 2012-07-10  Marek Polacek  <polacek@redhat.com>
42009         [BZ #14151]
42010         * configure.in (libc_cv_asm_global_directive): Remove test.  Replace
42011         libc_cv_asm_global_directive with .globl.
42012         * configure: Regenerated.
42013         * sysdeps/i386/configure.in: Replace libc_cv_asm_global_directive
42014         with .globl.
42015         * sysdeps/i386/configure: Regenerated.
42016         * sysdeps/x86_64/configure.in: Replace libc_cv_asm_global_directive
42017         with .globl.
42018         * sysdeps/x86_64/configure: Regenerated.
42019         * config.h.in: Do not undefine ASM_GLOBAL_DIRECTIVE.
42020         * include/libc-symbols.h: Replace ASM_GLOBAL_DIRECTIVE with .globl.
42021         * elf/tst-unique2mod2.c: Likewise.
42022         * elf/tst-unique2mod1.c: Likewise.
42023         * elf/tst-unique1mod2.c: Likewise.
42024         * elf/tst-unique1mod1.c: Likewise.
42025         * sysdeps/s390/s390-32/sysdep.h: Likewise.
42026         * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
42027         * sysdeps/s390/s390-64/sysdep.h: Likewise.
42028         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
42029         * sysdeps/mach/sysdep.h: Likewise.
42030         * sysdeps/i386/sysdep.h: Likewise.
42031         * sysdeps/i386/i386-mcount.S: Likewise.
42032         * sysdeps/x86_64/_mcount.S: Likewise.
42033         * sysdeps/x86_64/sysdep.h: Likewise.
42034         * sysdeps/sh/_mcount.S: Likewise.
42035         * sysdeps/sh/sysdep.h: Likewise.
42036         * sysdeps/powerpc/powerpc32/gprsave1.S: Likewise.
42037         * sysdeps/powerpc/powerpc32/fpu/fprrest.S: Likewise.
42038         * sysdeps/powerpc/powerpc32/fpu/fprsave.S: Likewise.
42039         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
42040         * sysdeps/powerpc/powerpc32/gprrest1.S: Likewise.
42041         * sysdeps/powerpc/powerpc32/gprsave0.S: Likewise.
42042         * sysdeps/powerpc/powerpc32/gprrest0.S: Likewise.
42043         * locale/localeinfo.h: Likewise.
42044         (_NL_CURRENT_DEFINE_STRINGIFY): Delete macro.
42045         (_NL_CURRENT_DEFINE_STRINGIFY_1): Likewise.
42047 2012-07-09  Roland McGrath  <roland@hack.frob.com>
42049         [BZ #14336]
42050         * manual/charset.texi (Extended Char Intro): Word use fix, "operating
42051         system".
42052         * manual/message.texi (The Uniforum approach): Likewise.
42053         * manual/charset.texi (Extended Char Intro): Spelling fix, "affected".
42054         (glibc iconv Implementation): Likewise.
42056 2012-07-09  Joseph Myers  <joseph@codesourcery.com>
42058         [BZ #14337]
42059         * math/s_clog.c (__clog): Avoid scaling a value down where that
42060         could result in underflow.
42061         * math/s_clog10.c (__clog10): Likewise.
42062         * math/s_clog10f.c (__clog10f): Likewise.
42063         * math/s_clog10l.c (__clog10l): Likewise.
42064         * math/s_clogf.c (__clogf): Likewise.
42065         * math/s_clogl.c (__clogl): Likewise.
42066         * math/libm-test.inc (clog_test): Add more tests.
42067         (clog10_test): Likewise.
42068         * sysdeps/i386/fpu/libm-test-ulps: Update.
42069         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
42071 2012-07-06  Andreas Schwab  <schwab@linux-m68k.org>
42073         [BZ #14283]
42074         * sysdeps/powerpc/fpu/k_rem_pio2f.c (__fp_kernel_rem_pio2f): Shift
42075         by 7 not 8 to examine high bit of fractional part.
42077         [BZ #14042]
42078         * sysdeps/powerpc/powerpc32/ppc-mcount.S [SHARED]: Don't use PLT
42079         for call to __mcount_internal.
42080         * sysdeps/powerpc/powerpc32/Makefile (sysdep_routines)
42081         (shared-only-routines) [$(subdir) = gmon]: Add compat-ppc-mcount.
42082         * sysdeps/powerpc/powerpc32/compat-ppc-mcount.S: New file.
42084 2012-07-06  Joseph Myers  <joseph@codesourcery.com>
42086         [BZ #14154]
42087         * sysdeps/ieee754/flt-32/k_tanf.c (__kernel_tanf): Use linear
42088         approximation for values within 0x1p-13f of an odd multiple of
42089         pi/4.
42090         * math/libm-test.inc (tan_test): Do not allow spurious underflow
42091         exception.  Add more tests.
42092         * sysdeps/i386/fpu/libm-test-ulps: Update.
42094         [BZ #6778]
42095         * sysdeps/i386/fpu/s_expm1.S (__expm1): Check for large negative
42096         inputs and return -1 for them.  Do not check for +Inf in case not
42097         reachable for +Inf.
42098         * sysdeps/i386/fpu/s_expm1f.S (__expm1f): Likewise.
42099         * sysdeps/i386/fpu/e_expl.S [USE_AS_EXPM1L] (csat): Do not define.
42100         (IEEE754_EXPL) [USE_AS_EXPM1L]: Check for large negative inputs
42101         and return -1 for them.  Do not check for +Inf in case not
42102         reachable for +Inf.
42103         * sysdeps/x86_64/fpu/e_expl.S [USE_AS_EXPM1L] (csat): Do not
42104         define.
42105         (IEEE754_EXPL) [USE_AS_EXPM1L]: Check for large negative inputs
42106         and return -1 for them.  Do not check for +Inf in case not
42107         reachable for +Inf.
42108         * math/libm-test.inc (expm1_test): Add more tests.  Do not allow
42109         spurious underflow.
42110         * sysdeps/i386/fpu/libm-test-ulps: Update.
42111         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
42113 2012-07-06  Mike Frysinger  <vapier@gentoo.org>
42115         * sunrpc/rpc_clntout.c: Change <rpc/types.h> to "rpc/types.h".
42117 2012-07-05  Joseph Myers  <joseph@codesourcery.com>
42119         [BZ #14157]
42120         [BZ #14331]
42121         * math/s_csqrt.c (__csqrt): Avoid multiplying by 0.5 where this
42122         could result in spurious underflow.  Scale down values above
42123         DBL_MAX / 4.0 instead of DBL_MAX / 2.0.
42124         * math/s_csqrtf.c (__csqrtf): Likewise.
42125         * math/s_csqrtl.c (__csqrtl): Likewise.
42126         * math/libm-test.inc (csqrt_test): Add more tests.  Do not allow
42127         spurious underflow.
42128         * sysdeps/i386/fpu/libm-test-ulps: Update.
42129         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
42131 2012-07-04  Andreas Schwab  <schwab@linux-m68k.org>
42133         * catgets/Makefile ($(objpfx)de.msg): Use xopen-msg.awk instead of
42134         xopen-msg.sed.
42135         * catgets/xopen-msg.awk: New file.
42136         * catgets/xopen-msg.sed: Removed.
42138         * intl/Makefile ($(objpfx)msgs.h): Use po2test.awk instead of
42139         po2text.sed.
42140         * intl/po2test.awk: New file.
42141         * intl/po2test.sed: Removed.
42143 2012-07-04  Joseph Myers  <joseph@codesourcery.com>
42145         [BZ #14328]
42146         * math/s_ctan.c (__ctan): Do not call sinh and cosh for subnormals
42147         or multiply small sinh result by itself.
42148         * math/s_ctanf.c (__ctanf): Likewise.
42149         * math/s_ctanh.c (__ctanh): Likewise.
42150         * math/s_ctanhf.c (__ctanhf): Likewise.
42151         * math/s_ctanhl.c (__ctanhl): Likewise.
42152         * math/s_ctanl.c (__ctanl): Likewise.
42153         * math/libm-test.inc (ctan_test_tonearest): New function.
42154         (ctan_test_towardzero): Likewise.
42155         (ctan_test_downward): Likewise.
42156         (ctan_test_upward): Likewise.
42157         (ctanh_test_tonearest): Likewise.
42158         (ctanh_test_towardzero): Likewise.
42159         (ctanh_test_downward): Likewise.
42160         (ctanh_test_upward): Likewise.
42161         (main): Call these new functions.
42162         * sysdeps/i386/fpu/libm-test-ulps: Update.
42163         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
42165 2012-07-03  Mike Frysinger  <vapier@gentoo.org>
42167         * .gitignore: Delete /ports entry.
42169 2012-07-03  Andreas Jaeger  <aj@suse.de>
42171         * po/bg.po: Update from translation team.
42172         * po/cs.po: Likewise.
42173         * po/de.po: Likewise.
42174         * po/hr.po: Likewise.
42175         * po/nl.pl: Likewise.
42176         * po/pl.po: Likewise.
42177         * po/vi.po: Likewise.
42179 2012-07-03  Joseph Myers  <joseph@codesourcery.com>
42181         * Makeconfig [!+link] (+link-before-libc): New variable.
42182         [!+link] (+link-after-libc): Likewise.
42183         [!+link] (+link-tests): Likewise.
42184         [!+link] (+link): Define in terms of $(+link-before-libc) and
42185         $(+link-after-libc).
42186         [!+link-static] (+link-static-before-libc): New variable.
42187         [!+link-static] (+link-static-after-libc): Likewise.
42188         [!+link-static] (+link-static-tests): Likewise.
42189         [!+link-static] (+link-static): Define in terms of
42190         $(+link-static-before-libc) and $(+link-static-after-libc).
42191         [build-shared] (link-libc-before-gnulib): New variable.
42192         [build-shared] (link-libc-tests): Likewise.
42193         [build-shared] (link-libc): Define in terms of
42194         $(link-libc-before-gnulib).
42195         [!build-shared] (link-libc-tests): New variable.
42196         (link-libc-static-tests): New variable.
42197         [!gnulib] (gnulib-arch): New variable.
42198         [!gnulib] (gnulib-tests): Likewise.
42199         [!gnulib] (static-gnulib-arch): Likewise.
42200         [!gnulib] (static-gnulib-tests): Likewise.
42201         [!gnulib] (gnulib): Use $(gnulib-arch).  Do not use $(libgcc_eh).
42202         Define with "=" instead of ":=".
42203         [!gnulib] (static-gnulib): Use $(static-gnulib-arch).  Do not use
42204         -lgcc_eh $(libunwind).  Define with "=" instead of ":=".
42205         * Rules (binaries-all-notests): New variable.
42206         (binaries-all-tests): Likewise.
42207         (binaries-static-notests): Likewise.
42208         (binaries-static-tests): Likewise.
42209         (binaries-all): Define using $(binaries-all-notests) and
42210         $(binaries-all-tests).
42211         (binaries-static): Define using $(binaries-static-notests) and
42212         $(binaries-static-tests).
42213         (binaries-shared-tests): New variable.
42214         (binaries-shared-notests): Likewise.
42215         (binaries-shared): Remove variable.
42216         ($(addprefix $(objpfx),$(binaries-shared-notests))): New rule.
42217         ($(addprefix $(objpfx),$(binaries-shared-tests))): Likewise.
42218         ($(addprefix $(objpfx),$(binaries-shared))): Remove rule.
42219         ($(addprefix $(objpfx),$(binaries-static-notests))): New rule.
42220         ($(addprefix $(objpfx),$(binaries-static-tests))): Likewise.
42221         ($(addprefix $(objpfx),$(binaries-static))): Remove rule.
42222         * elf/Makefile (sln-modules): New variable.
42223         (extra-objs): Add $(sln-modules:=.o).
42224         (ldconfig-modules): Add static-stubs.
42225         ($(objpfx)sln): Depend on $(sln-modules:%=$(objpfx)%.o).
42226         * elf/static-stubs.c: New file.
42228         [BZ #14283]
42229         * sysdeps/ieee754/flt-32/k_rem_pio2f.c (__kernel_rem_pio2f): Shift
42230         by 7 not 8 to examine high bit of fractional part.  Use volatile
42231         variables when splitting into final array of floats if
42232         __FLT_EVAL_METHOD__ != 0.
42233         * math/libm-test.inc (cos_test): Add another test.
42234         (sin_test): Likewise.
42235         * sysdeps/i386/fpu/libm-test-ulps: Update.
42237         [BZ #14273]
42238         * math/libm-test.inc (cosh_test): Add more tests.
42240         * version.h (RELEASE): Set to "development".
42241         (VERSION): Set to "2.16.90".
42243 2012-06-30  Carlos O'Donell  <carlos_odonell@mentor.com>
42245         * NEWS: Update copyright. Remove last-updated date.
42246         Mention math library bug fixes and timezone data changes.
42247         * README: Mention GNU/Hurd, x32, and HPPA support status.
42249 2012-06-28  Thomas Schwinge  <thomas@codesourcery.com>
42251         * manual/contrib.texi (Contributors): Sort alphabetically by last name.
42253 2012-06-27  Andreas Jaeger  <aj@suse.de>
42255         * manual/contrib.texi (Contributors): Add Samuel Thibault.
42257 2012-06-25  Andreas Jaeger  <aj@suse.de>
42259         * sysdeps/s390/fpu/libm-test-ulps: Update.
42261 2012-06-23  Andreas Schwab  <schwab@linux-m68k.org>
42262             Thomas Schwinge  <thomas@codesourcery.com>
42264         * sysdeps/unix/sysv/linux/sh/syscalls.list: Add fanotify_mark.
42265         * sysdeps/unix/sysv/linux/sh/Versions (GLIBC_2.16): Add fanotify_mark.
42266         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist (GLIBC_2.16): Add
42267         fanotify_mark.
42269 2012-06-23  Thomas Schwinge  <thomas@codesourcery.com>
42271         * sysdeps/mach/start.c: Remove file.
42272         * sysdeps/mach/hurd/i386/static-start.S: Fix start.S include.
42273         * sysdeps/i386/init-first.c: Fix comment regarding start.S.
42274         * sysdeps/sh/init-first.c: Likewise.
42276         * sysdeps/sh/____longjmp_chk.S (CALL_FAIL): Preserve r12 and pr
42277         registers for frame unwinding purposes, add CFI directives.
42278         * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S (CALL_FAIL): Likewise.
42279         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Likewise
42280         * sysdeps/unix/sysv/linux/sh/sysdep.h (SYSCALL_ERROR_HANDLER):
42281         Likewise.
42283         * sysdeps/sh/____longjmp_chk.S (CALL_FAIL): Don't plan for the call to
42284         __fortify_fail returning.
42285         * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S (CALL_FAIL): Likewise.
42287         * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S: New file, based on
42288         sysdeps/sh/____longjmp_chk.S.
42289         * sysdeps/unix/sysv/linux/sh/sigaltstack-offsets.sym: New file, based
42290         on sysdeps/unix/sysv/linux/x86_64/sigaltstack-offsets.sym.
42291         * sysdeps/unix/sysv/linux/sh/Makefile [subdir=misc]
42292         (gen-as-const-headers): Append sigaltstack-offsets.sym.
42294         * sysdeps/sh/abort-instr.h: New file.
42295         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Terminate the
42296         process in case exit returns.
42298         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Always
42299         initialize the GOT register before use.
42301         * sysdeps/unix/sysv/linux/sh/makecontext.S (__makecontext): Fix
42302         calculation of ARGC > 4.
42304         * sysdeps/unix/sysv/linux/sh/makecontext.S: Add comments and give more
42305         meaningful names to some local labels.
42307 2012-06-22  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
42308             Kaz Kojima  <kkojima@rr.iij4u.or.jp>
42310         * sysdeps/unix/sysv/linux/sh/bits/atomic.h
42311         (__arch_compare_and_exchange_val_8_acq): Remove explicit nop.
42312         (__arch_compare_and_exchange_val_16_acq): Likewise.
42313         (__arch_compare_and_exchange_val_32_acq): Likewise.
42314         (atomic_exchange_and_add): Fix gUSA sequence.
42315         (atomic_add): Likewise.
42316         (atomic_add_negative): Likewise.
42317         (atomic_add_zero): Likewise.
42318         (atomic_bit_test_set): Likewise.
42320 2012-06-22  Andreas Schwab  <schwab@redhat.com>
42322         [BZ #13579]
42323         * include/link.h (struct link_map): Add l_free_initfini.
42324         * elf/dl-deps.c (_dl_map_object_deps): Set it when assigning
42325         l_initfini.
42326         * elf/dl-close.c (_dl_close_worker): Don't free l_initfini.
42327         * elf/rtld.c (dl_main): Clear it on all objects loaded on startup.
42328         * elf/dl-libc.c (free_mem): Free l_initfini if l_free_initfini is
42329         set.
42331 2012-06-22  Carlos O'Donell  <carlos_odonell@mentor.com>
42333         * configure.in: Use AC_LANG_SOURCE.
42334         * configure: Regenerate.
42336 2012-06-22  Roland McGrath  <roland@hack.frob.com>
42338         * configure.in (libc_cv_localstatedir): New substituted variable.
42339         * configure: Regenerated.
42340         * config.make.in (localstatedir): New variable, substituted from
42341         libc_cv_localstatedir.
42342         * Makeconfig (vardbdir): Use $(localstatedir) in place of /var.
42343         * sysdeps/gnu/configure.in (libc_cv_localstatedir): Change
42344         ${prefix}/var to /var when we change ${prefix}/etc to /etc.
42345         * sysdeps/gnu/configure: Regenerated.
42347 2012-06-21  Jeff Law  <law@redhat.com>
42349         [BZ #14277]
42350         * intl/dcigettext.c (_nl_find_msg): Avoid use after potential
42351         free.  Simplify list management for _LIBC case.
42353 2012-06-21  Joseph Myers  <joseph@codesourcery.com>
42355         [BZ #14273]
42356         * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c (__ieee754_cosh):
42357         Clear sign bit of 64-bit integer value before comparing against
42358         overflow value.
42360         * sysdeps/mach/configure: Regenerated.
42362 2012-06-21  H.J. Lu  <hongjiu.lu@intel.com>
42364         [BZ #14278]
42365         * sysdeps/i386/sysdep.h (SYSCALL_PIC_SETUP): Fix a typo.
42367 2012-06-21  Jeff Law  <law@redhat.com>
42369         [BZ #13882]
42370         * elf/dl-deps.c (_dl_map_object_deps): Fix cycle detection.  Use
42371         uint16_t for elements in the "seen" array to avoid char overflows.
42372         * elf/dl-fini.c (_dl_sort_fini): Likewise.
42373         * elf/dl-open.c (dl_open_worker): Likewise.
42375 2012-06-21  Carlos O'Donell  <carlos_odonell@mentor.com>
42377         * scripts/list-sources.sh: Scan PORTS for translations.
42378         * po/libc.pot: Regenerated.
42380 2012-06-21  Andreas Jaeger  <aj@suse.de>
42382         [BZ #12194]
42383         * sysdeps/s390/bits/byteswap-16.h (__bswap_16): Avoid -Wconversion
42384         warning.
42385         * sysdeps/s390/bits/byteswap.h (__bswap_constant_16): Likewise.
42386         * bits/byteswap-16.h (__bswap_16): Likewise.
42387         * bits/byteswap.h (__bswap_constant_16): Likewise.
42389 2012-06-18  H.J. Lu  <hongjiu.lu@intel.com>
42391         [BZ #14117]
42392         * sysdeps/i386/fpu_control.h: Removed.
42393         * sysdeps/x86_64/fpu_control.h: Moved to ...
42394         * sysdeps/x86/fpu_control.h: Here.
42396         * sysdeps/x86_64/fpu_control.h (_FPU_GETCW): Add __volatile__.
42397         (_FPU_SETCW): Likewise.
42399 2012-06-15  H.J. Lu  <hongjiu.lu@intel.com>
42401         [BZ #14117]
42402         * sysdeps/i386/fpu/bits/mathinline.h: Renamed to ...
42403         * sysdeps/x86/fpu/bits/mathinline.h: This.
42404         * sysdeps/x86_64/fpu/bits/mathinline.h: Removed.
42406         [BZ #14050]
42407         [BZ #14117]
42408         * sysdeps/i386/fpu/bits/mathinline.h: Disable x87 inline
42409         functions if __x86_64__ is defined.
42411 2012-06-15  Chung-Lin Tang  <cltang@codesourcery.com>
42413         * string/endian.h: Add !__ASSEMBLER__ condition for including
42414         conversion interfaces.
42416 2012-06-15  Joseph Myers  <joseph@codesourcery.com>
42418         [BZ #14241]
42419         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Use 0.0 instead
42420         of ABS(x) in calculating zero to negative powers other than odd
42421         integers.
42422         * math/libm-test.inc (pow_test): Add more tests.
42424 2012-06-15  Andreas Jaeger  <aj@suse.de>
42426         * manual/contrib.texi (Contributors): Update entry of Liubov
42427         Dmitrieva and add entries for Will Schmidt and Tulio Magno Quites
42428         Machado Filho.
42430 2012-06-15  Cyril Hrubis  <metan@ucw.cz>
42432         * string/string.h: Add __wur to GNU version of strerror_r.
42434 2012-06-14  H.J. Lu  <hongjiu.lu@intel.com>
42436         [BZ #14229]
42437         * string/Makefile (tests): Add tst-strtok_r.
42438         * string/tst-strtok_r.c: New file.
42439         * sysdeps/x86_64/strtok.S: Use LP_SIZE on save_ptr and use
42440         RAX_LP/RDX_LP on SAVE_PTR.
42442 2012-06-14  Roland McGrath  <roland@hack.frob.com>
42444         * manual/Makefile ($(objpfx)texis): Do $(make-target-directory).
42446 2012-06-14  Joseph Myers  <joseph@codesourcery.com>
42448         * libm_test.inc (csqrt_test): Allow more spurious underflow
42449         exceptions.
42450         (j0_test): Likewise.
42451         (j1_test): Likewise.
42452         (y0_test): Likewise.
42453         (y1_test): Likewise.
42455 2012-06-13  Carlos O'Donell  <carlos_odonell@mentor.com>
42457         * po/Makefile (libc.pot): Use UTF-8 charset.
42459 2012-06-13  Paul Pluzhnikov  <ppluzhnikov@google.com>
42461         [BZ #14210]
42462         Suppress sign-conversion warning from FD_SET.
42463         See <http://sourceware.org/ml/libc-alpha/2012-05/msg01794.html>.
42464         * debug/fdelt_chk.c (__fdelt_chk): Accept and return long int,
42465         not unsigned long int.
42466         * misc/bits/select2.h (__fdelt_chk, __fdelt_warn, __FD_ELT): Likewise.
42468 2012-06-12  H.J. Lu  <hongjiu.lu@intel.com>
42470         [BZ #14050]
42471         [BZ #14117]
42472         * sysdeps/i386/fpu/bits/mathinline.h (__MATH_INLINE): Check
42473         __extern_always_inline instead of __extern_inline.
42474         (__signbitf): Support __SSE2_MATH__ and C++ namespace.
42475         (__signbit): Likewise.
42476         (__signbitl): Support C++ namespace.
42477         (lrintf): New inline function.
42478         (lrint): Likewise.
42479         (llrintf): Likewise.
42480         (llrint): Likewise.
42481         (fmaxf): Likewise.
42482         (fmax): Likewise.
42483         (fminf): Likewise.
42484         (fmin): Likewise.
42485         (rint): Likewise.
42486         (rintf): Likewise.
42487         (ceil): Likewise.
42488         (ceilf): Likewise.
42489         (floor): Likewise.
42490         (floorf): Likewise.
42491         (nearbyint): Likewise.
42492         (nearbyintf): Likewise.
42494 2012-06-12  Thomas Schwinge  <thomas@codesourcery.com>
42496         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Fix case for
42497         non-default versions.
42499 2012-06-11  Roland McGrath  <roland@hack.frob.com>
42501         [BZ #14218]
42502         * manual/argp.texi (Argp): Reword argp_parse description slightly.
42504 2012-06-09  Thomas Schwinge  <thomas@codesourcery.com>
42506         * sysdeps/sh/sh4/fpu/bits/fenv.h (__FE_UNDEFINED): Define.
42507         (FE_UPWARD, FE_DOWNWARD): Don't define.
42508         * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Adapt to that.
42509         * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Likewise.
42511         * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Do not re-write fpscr after
42512         reading it.
42513         * sysdeps/sh/sh4/fpu/fegetexcept.c (fegetexcept): Likewise.
42514         * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
42516 2012-06-09  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
42518         * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: New file.
42519         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Refreshed.
42520         * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: Refreshed.
42521         * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: Refreshed.
42523 2012-06-06  H.J. Lu  <hongjiu.lu@intel.com>
42525         [BZ #14117]
42526         * sysdeps/i386/fpu/bits/fenv.h: Removed.
42527         * sysdeps/i386/fpu/Implies: New file.
42528         * sysdeps/x86_64/fpu/Implies: Likewise.
42529         * sysdeps/x86_64/fpu/bits/fenv.h: Renamed to ...
42530         * sysdeps/x86/fpu/bits/fenv.h: This.
42532         * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Check
42533         __SSE_MATH__.
42535 2012-06-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
42537         [BZ #14134]
42538         * iconvdata/ibm930.c (BODY) [FROM_LOOP]: Check for invalid
42539         character 0xffff that matches the last element of the
42540         conversion table.
42542 2012-06-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
42544         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Fix for wrong ldbl128-ibm
42545         fmodl commit.
42547 2012-06-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
42549         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Fix spurious underflow for
42550         values higher than 25.6283.
42552 2012-06-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
42554         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Fix
42555         subnormal exponent extraction and add some __builtin_expect.
42556         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_extract_mantissa):
42557         Fix for subnormal mantissa calculation.
42559 2012-06-04  Mike Frysinger  <vapier@gentoo.org>
42561         * sysdeps/unix/sysv/linux/tst-getcpu.c (do_test): Call perror when
42562         cpu2 is -1 and errno is not ENOSYS.
42564 2012-06-04  H.J. Lu  <hongjiu.lu@intel.com>
42566         [BZ #14117]
42567         * sysdeps/i386/i486/bits/string.h: Renamed to ...
42568         * sysdeps/x86/bits/string.h: This.
42569         * sysdeps/x86_64/bits/string.h: Removed.
42571         * sysdeps/i386/i486/bits/string.h: Define inline functions only
42572         if not compiling for x86-64, but compiling for >= i486.
42574         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h: Renamed to ...
42575         * sysdeps/unix/sysv/linux/x86/bits/sigcontext.h: This.
42577         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h (FP_XSTATE_MAGIC1):
42578         New macro from Linux kernel 3.4.0.
42579         (FP_XSTATE_MAGIC2): Likewise.
42580         (FP_XSTATE_MAGIC2_SIZE): Likewise.
42581         (X86_FXSR_MAGIC): New macro from Linux i386 kernel.
42582         (struct _fpx_sw_bytes): New struct.
42583         (struct _xsave_hdr): Likewise.
42584         (struct _ymmh_state): Likewise.
42585         (struct _xstate): Likewise.
42587         * sysdeps/unix/sysv/linux/i386/sys/debugreg.h: Removed.
42588         * sysdeps/unix/sysv/linux/i386/sys/reg.h: Likewise.
42589         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Renamed to ...
42590         * sysdeps/unix/sysv/linux/x86/sys/debugreg.h: This.
42591         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Renamed to ...
42592         * sysdeps/unix/sysv/linux/x86/sys/reg.h: This.
42594         * sysdeps/unix/sysv/linux/i386/sys/io.h: Removed.
42595         * sysdeps/unix/sysv/linux/x86_64/sys/io.h: Renamed to ...
42596         * sysdeps/unix/sysv/linux/x86/sys/io.h: This.
42597         * sysdeps/unix/sysv/linux/i386/sys/perm.h: Removed.
42598         * sysdeps/unix/sysv/linux/x86_64/sys/perm.h: Renamed to ...
42599         * sysdeps/unix/sysv/linux/x86/sys/perm.h: This.
42601 2012-06-04  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
42603         [BZ #13743]
42604         * sysdeps/powerpc/sys/platform/ppc.h: New file for PowerPC features.
42605         * sysdeps/powerpc/Makefile (tests): Add test-gettimebase.
42606         (sysdep_headers): Include sys/platform/ppc.h.
42607         * sysdeps/powerpc/test-gettimebase.c: Test for
42608         __ppc_get_timebase() to catch future ISA opcode/insn changes.
42609         * manual/Makefile (appendices): Include platform.texi.
42610         * manual/contrib.texi (Contributors): Update @node pointers.
42611         * manual/maint.texi (Maintenance): Likewise.
42612         (Platform): New node.
42613         * manual/platform.texi: New file.  Document the new features.
42615 2012-06-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
42616             Jakub Jelinek  <jakub@redhat.com>
42618         [BZ #14188]
42619         * misc/sys/cdefs.h (__glibc_unlikely): New macro to wrap cases
42620         where __builtin_expect is unavailable.
42622 2012-06-03  David S. Miller  <davem@davemloft.net>
42624         * stdlib/longlong.h: Updated from GCC.
42626 2012-06-02  Andreas Schwab  <schwab@linux-m68k.org>
42628         [BZ #14042]
42629         * sysdeps/powerpc/powerpc32/mcount.c: New file.
42630         * sysdeps/powerpc/powerpc32/Versions (GLIBC_2.16): Add
42631         __mcount_internal.
42632         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist
42633         (GLIBC_2.16): Likewise.
42635 2012-06-01  H.J. Lu  <hongjiu.lu@intel.com>
42637         * sysdeps/unix/sysv/linux/x86_64/sys/io.h (outsw): Fix a typo.
42639 2012-06-01  Joseph Myers  <joseph@codesourcery.com>
42641         * sysdeps/unix/sysv/linux/powerpc/powerpc32/Makefile
42642         (default-abi): New variable.
42643         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Makefile: New file.
42644         * sysdeps/unix/sysv/linux/s390/s390-32/Makefile (default-abi): New
42645         variable.
42646         * sysdeps/unix/sysv/linux/s390/s390-64/Makefile (default-abi):
42647         Likewise.
42648         * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile (default-abi):
42649         Likewise.
42650         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile (default-abi):
42651         Likewise.
42653         * Makeconfig [abi-variants && !default-abi] (default-abi): Remove
42654         definition.  Document in comment.
42656 2012-06-01  David S. Miller  <davem@davemloft.net>
42658         * stdlib/longlong.h: Updated from GCC.
42660 2012-06-01  H.J. Lu  <hongjiu.lu@intel.com>
42662         [BZ #14117]
42663         * sysdeps/unix/sysv/linux/i386/Makefile (sysdep_headers):
42664         Don't add sys/elf.h sys/perm.h sys/reg.h sys/vm86.h
42665         sys/debugreg.h sys/io.h here.
42666         * sysdeps/unix/sysv/linux/x86/Makefile (sysdep_headers): Add
42667         sys/elf.h sys/perm.h sys/reg.h sys/vm86.h sys/debugreg.h
42668         sys/io.h.
42669         * sysdeps/unix/sysv/linux/x86_64/Makefile (sysdep_headers):
42670         Don't add sys/perm.h sys/reg.h sys/debugreg.h sys/io.h here.
42671         * sysdeps/unix/sysv/linux/i386/sys/elf.h: Renamed to ...
42672         * sysdeps/unix/sysv/linux/x86/sys/elf.h: This.
42673         * sysdeps/unix/sysv/linux/i386/sys/vm86.h: Renamed to ...
42674         * sysdeps/unix/sysv/linux/x86/sys/vm86.h: This.
42676         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h (DR_LEN_8):
42677         Define only if __x86_64__ is defined.
42679 2012-06-01  Joseph Myers  <joseph@codesourcery.com>
42681         [BZ #14048]
42682         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c (__ieee754_fmod):
42683         Use int64_t for variable i.
42684         * math/libm-test.inc (fmod_test): Add more tests.
42686         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Ensure temp + (double)
42687         z computation is not scheduled after fetestexcept.
42688         * sysdeps/ieee754/ldbl-128/s_fmal.c: Include <math_private.h>.
42689         Use math_force_eval instead of asm to ensure calculation scheduled
42690         before exception test.
42691         * sysdeps/ieee754/ldbl-96/s_fmal.c: Include <math_private.h>.
42692         Ensure a1 + u.d computation is not scheduled after fetestexcept.
42694 2012-06-01  Aurelien Jarno  <aurelien@aurel32.net>
42696         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Ensure a1 + u.d
42697         computation is not scheduled after fetestexcept.
42699 2012-06-01  H.J. Lu  <hongjiu.lu@intel.com>
42701         [BZ #14117]
42702         * sysdeps/unix/sysv/linux/i386/bits/wchar.h: Renamed to ...
42703         * sysdeps/unix/sysv/linux/x86/bits/wchar.h: This.
42705 2012-06-01  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
42707         * sysdeps/powerpc/fpu/k_cosf.c: Fix underflow generation.
42708         * sysdeps/powerpc/fpu/k_sinf.c: Likewise.
42710 2012-05-31  H.J. Lu  <hongjiu.lu@intel.com>
42712         [BZ #14117]
42713         * sysdeps/unix/sysv/linux/i386/bits/wchar.h: Include
42714         <bits/wordsize.h>.
42715         (__WCHAR_MIN): Support __WORDSIZE == 64.
42716         (__WCHAR_MAX): Likewise.
42718         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h: Renamed to ...
42719         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h: This.
42721         [BZ #14183]
42722         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h (__FSWORD_T_TYPE):
42723         Defined with __SWORD_TYPE if __x86_64__ isn't defined.
42725         [BZ #14117]
42726         * sysdeps/unix/sysv/linux/x86_64/bits/siginfo.h: Renamed to ...
42727         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h: This.
42729         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Renamed to ...
42730         * sysdeps/unix/sysv/linux/x86/bits/stat.h: This.
42732         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h (_STAT_VER_KERNEL):
42733         Defined to 1 if __x86_64__ isn't defined.
42734         (_STAT_VER_LINUX_OLD): New.
42735         (st_atime): Remove duplicate.
42736         (st_mtime): Likewise.
42737         (st_ctime): Likewise.
42739 2012-05-31  David S. Miller  <davem@davemloft.net>
42741         * sysdeps/sparc/fpu/libm-test-ulps: Remove sqrt(2) and sqrt test
42742         entries.
42744 2012-06-01  Andreas Schwab  <schwab@linux-m68k.org>
42746         * sysdeps/powerpc/fpu/libm-test-ulps: Sort through
42747         gen-libm-test.pl.
42749         [BZ #14132]
42750         * elf/dl-reloc.c: Include <_itoa.h>.
42751         (_dl_reloc_bad_type): Remove use of INTUSE.
42752         * elf/dl-minimal.c (_itoa, _itoa_lower_digits): Likewise.
42753         * stdio-common/_itoa.c (_itoa_word, _itoa): Likewise.
42754         * stdio-common/psiginfo.c (psiginfo): Likewise.
42755         * stdio-common/psignal.c (psignal): Likewise.
42756         * string/strsignal.c (strsignal): Likewise.
42757         * include/signal.h (_sys_siglist): Declare hidden proto.
42758         * stdio-common/itoa-digits.c: Include <_itoa.h>.  Replace
42759         INTVARDEF with libc_hidden_data_def.
42760         * stdio-common/itoa-udigits.c: Likewise.
42761         * sysdeps/generic/_itoa.h (_itoa_upper_digits_internal)
42762         (_itoa_lower_digits_internal): Remove declaration.
42763         (_itoa_upper_digits, _itoa_lower_digits): Declare hidden proto.
42764         * sysdeps/gnu/siglist.c (_sys_siglist_internal)
42765         (_sys_sigabbrev_internal): Remove aliases.
42766         (_sys_siglist): Define hidden alias.
42768 2012-05-31  Markus Trippelsdorf  <markus@trippelsdorf.de>
42770         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
42771         bits/sysctl.h.
42773 2012-05-31  H.J. Lu  <hongjiu.lu@intel.com>
42775         [BZ #14117]
42776         * sysdeps/unix/sysv/linux/x86_64/bits/sysctl.h: Renamed to ...
42777         * sysdeps/unix/sysv/linux/x86/bits/sysctl.h: This.
42779         * sysdeps/unix/sysv/linux/i386/sys/ucontext.h: Removed.
42780         * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Renamed to ...
42781         * sysdeps/unix/sysv/linux/x86/sys/ucontext.h: This.
42782         * sysdeps/unix/sysv/linux/i386/sys/user.h: Removed.
42783         * sysdeps/unix/sysv/linux/x86_64/sys/user.h: Renamed to ...
42784         * sysdeps/unix/sysv/linux/x86/sys/user.h: This.
42786         * sysdeps/unix/sysv/linux/i386/sys/procfs.h: Removed.
42787         * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h: Renamed to ...
42788         * sysdeps/unix/sysv/linux/x86/sys/procfs.h: This.
42790         * sysdeps/unix/sysv/linux/x86_64/sys/io.h (insb): Replace addr
42791         with __addr.
42792         (insw): Likewise.
42793         (insl): Likewise.
42794         (outsb): Likewise.
42795         (outsw): Likewise.
42796         (outsl): Likewise.
42798         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Removed.
42799         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Renamed to ...
42800         * sysdeps/unix/sysv/linux/x86/bits/mman.h: This.
42802         * sysdeps/unix/sysv/linux/x86_64/bits/msq.h: Renamed to ...
42803         * sysdeps/unix/sysv/linux/x86/bits/msq.h: This.
42804         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h: Renamed to ...
42805         * sysdeps/unix/sysv/linux/x86/bits/sem.h: This.
42806         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Renamed to ...
42807         * sysdeps/unix/sysv/linux/x86/bits/shm.h: This.
42809         * sysdeps/unix/sysv/linux/x86_64/bits/ipctypes.h: Renamed to ...
42810         * sysdeps/unix/sysv/linux/x86/bits/ipctypes.h: This.
42812         * sysdeps/unix/sysv/linux/x86_64/bits/epoll.h: Renamed to ...
42813         * sysdeps/unix/sysv/linux/x86/bits/epoll.h: This.
42815         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Removed.
42816         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Renamed to ...
42817         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h: This.
42819         * sysdeps/unix/sysv/linux/i386/bits/environments.h: Removed.
42820         * sysdeps/unix/sysv/linux/x86_64/bits/environments.h: Renamed
42821         to ...
42822         * sysdeps/unix/sysv/linux/x86/bits/environments.h: This.
42824         * sysdeps/unix/sysv/linux/i386/bits/a.out.h: Removed.
42825         * sysdeps/unix/sysv/linux/x86_64/bits/a.out.h: Renamed to ...
42826         * sysdeps/unix/sysv/linux/x86/bits/a.out.h: This.
42828         * sysdeps/unix/sysv/linux/i386/sys/elf.h: Error when compiling
42829         for x86-64.
42830         * sysdeps/unix/sysv/linux/i386/sys/vm86.h: Likewise.
42832 2012-05-31  Joseph Myers  <joseph@codesourcery.com>
42834         * math/math.h (M_El): Use two more decimal places.
42835         (M_LOG2El): Likewise.
42836         (M_LOG10El): Likewise.
42837         (M_LN2l): Likewise.
42838         (M_LN10l): Likewise.
42839         (M_PIl): Likewise.
42840         (M_PI_2l): Likewise.
42841         (M_PI_4l): Likewise.
42842         (M_1_PIl): Likewise.
42843         (M_2_PIl): Likewise.
42844         (M_2_SQRTPIl): Likewise.
42845         (M_SQRT2l): Likewise.
42846         (M_SQRT1_2l): Likewise.
42848 2012-05-31  David S. Miller  <davem@davemloft.net>
42850         * sysdeps/sparc/sparc64/memcpy.S: Use fsrc2 to move 64-bit
42851         values between float registers.
42852         * sysdeps/sparc/sparc64/memset.S: Likewise.
42853         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
42855 2012-05-31  Mike Frysinger  <vapier@gentoo.org>
42857         * debug/Makefile (CFLAGS-tst-longjmp_chk.c): Delete
42858         -D_FORTIFY_SOURCE=1.
42859         (CPPFLAGS-tst-longjmp_chk.c): Define.
42860         (CFLAGS-tst-longjmp_chk2.c): Delete -D_FORTIFY_SOURCE=1.
42861         (CPPFLAGS-tst-longjmp_chk2.c): Define.
42862         * wcsmbs/Makefile (CPPFLAGS-tst-wchar-h.c): Rename from
42863         CFLAGS-tst-wchar-h.c.
42865 2012-05-31  Marek Polacek  <polacek@redhat.com>
42867         [BZ #14132]
42868         * include/mntent.h (__setmntent_internal, __getmntent_r_internal
42869         __endmntent_internal): Remove declaration.
42870         (__setmntent, __endmntent, __getmntent_r) [NOT_IN_libc]: Remove macro.
42871         (__setmntent, __endmntent, __getmntent_r): Declare hidden proto.
42872         * misc/mntent_r.c: Replace INTDEF with libc_hidden_def.
42874 2012-05-30  David S. Miller  <davem@davemloft.net>
42876         * sysdeps/sparc/sparc32/soft-fp/q_util.c
42877         (___Q_simulate_exceptions): Use real FP ops rather than writing
42878         into the %fsr.
42879         * sysdeps/sparc/sparc32/soft-fp/q_util.c (__Qp_handle_exceptions):
42880         Likewise.
42882 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
42884         [BZ #14117]
42885         * sysdeps/x86_64/bits/xtitypes.h: Renamed to ...
42886         * sysdeps/x86/bits/xtitypes.h: This.
42888         * sysdeps/x86_64/bits/wordsize.h: Renamed to ...
42889         * sysdeps/x86/bits/wordsize.h: This.
42891         * sysdeps/i386/bits/huge_vall.h: Renamed to ...
42892         * sysdeps/x86/bits/huge_vall.h: This.
42894         * sysdeps/i386/bits/select.h: Removed.
42895         * sysdeps/x86_64/bits/select.h: Renamed to ...
42896         * sysdeps/x86/bits/select.h: This.
42898         * sysdeps/i386/bits/setjmp.h: Removed.
42899         * sysdeps/x86_64/bits/setjmp.h: Renamed to ...
42900         * sysdeps/x86/bits/setjmp.h: This.
42902         * sysdeps/i386/bits/mathdef.h: Removed.
42903         * sysdeps/x86_64/bits/mathdef.h: Renamed to ...
42904         * sysdeps/x86/bits/mathdef.h: This.
42906 2012-05-30  Andreas Schwab  <schwab@linux-m68k.org>
42908         [BZ #14132]
42909         * include/sys/socket.h (__connect_internal)
42910         (__libc_sa_len_internal): Remove declaration.
42911         (__connect, __libc_sa_len): Declare hidden_proto.
42912         (SA_LEN): Remove use of INTUSE.
42913         * socket/connect.c: Add libc_hidden_def.
42914         * sysdeps/mach/hurd/connect.c: Replace INTDEF by libc_hidden_def.
42915         * sysdeps/unix/sysv/linux/sa_len.c: Likewise.
42916         * sysdeps/unix/inet/syscalls.list: Remove __connect_internal
42917         alias.
42918         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
42919         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
42920         * sysdeps/unix/sysv/linux/connect.S: Use libc_hidden_weak instead
42921         of adding _internal alias.
42923 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
42925         [BZ #14117]
42926         * sysdeps/i386/bits/link.h: Removed.
42927         * sysdeps/i386/bits/linkmap.h: Likewise.
42928         * sysdeps/x86_64/bits/link.h: Renamed to ...
42929         * sysdeps/x86/bits/link.h: This.
42930         * sysdeps/x86_64/bits/linkmap.h: Renamed to ...
42931         * sysdeps/x86/bits/linkmap.h: This.
42933         * sysdeps/i386/bits/endian.h: Removed.
42934         * sysdeps/x86_64/bits/endian.h: Renamed to ...
42935         * sysdeps/x86/bits/endian.h: This.
42937         * sysdeps/i386/bits/byteswap.h: Removed.
42938         * sysdeps/i386/bits/byteswap-16.h: Likewise.
42939         * sysdeps/x86_64/bits/byteswap.h: Renamed to ...
42940         * sysdeps/x86/bits/byteswap.h: This.
42941         * sysdeps/x86_64/bits/byteswap-16.h: Renamed to ...
42942         * sysdeps/x86/bits/byteswap-16.h: This.
42943         * sysdeps/i386/Implies: Add x86.
42944         * sysdeps/x86_64/Implies: Likewise.
42946 2012-05-30  David S. Miller  <davem@davemloft.net>
42948         * soft-fp/soft-fp.h (FP_CUR_EXCEPTIONS): Define.
42949         (FP_TRAPPING_EXCEPTIONS): Provide default implementation.
42950         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h
42951         (FP_TRAPPING_EXCEPTIONS): Define.
42952         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h
42953         (FP_TRAPPING_EXCEPTIONS): Define.
42954         * soft-fp/op-common.h (_FP_PACK_SEMIRAW): Signal underflow for
42955         subnormals only when inexact has been signalled or underflow
42956         exceptions are enabled.
42957         (_FP_PACK_CANONICAL): Likewise.
42959 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
42961         [BZ #14183]
42962         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h (__NLINK_T_TYPE):
42963         Defined with __UWORD_TYPE if __x86_64__ isn't defined.
42965 2012-05-30  Richard Henderson  <rth@twiddle.net>
42967         * sysdeps/unix/make-syscalls.sh: Protect symbol_version output
42968         with #ifndef NOT_IN_libc.
42970         * scripts/abilist.awk: Accept 8 fields.  Handle Alpha functions
42971         marked to avoid plt entry.
42973 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
42975         [BZ #14112]
42976         * Makeconfig (default-abi): New macro.
42977         (abi-includes): Likewise.
42978         ($(common-objpfx)soversions.mk): Remove WORDSIZE check.  Use
42979         $(abi-$(default-abi)-lib-soname) for soname if defined.
42980         ($(common-objpfx)gnu/lib-names.stmp): Generate from
42981         abi-variants.
42982         * Makefile (installed-stubs): Likewise.
42983         * include/stubs-biarch.h: Removed.
42984         * scripts/lib-names.awk: Only handle one library at a time.
42985         * scripts/soversions.awk: Remove WORDSIZE support.
42986         * shlib-versions: Remove WORDSIZE and i.86/s390x/powerpc64 ld
42987         entries.
42988         * sysdeps/unix/sysv/linux/Makefile (syscall-list-variants):
42989         Removed.
42990         (syscall-list-default-condition): Likewise.
42991         (syscall-list-default-condition): Likewise.
42992         (syscall-list-includes): Likewise.
42993         ($(objpfx)bits/syscall%h $(objpfx)bits/syscall%d): Replace
42994         syscall-list-* with abi-*.  Handle undefined abi-variants.
42995         * sysdeps/unix/sysv/linux/i386/Makefile (default-abi): New macro.
42996         * sysdeps/unix/sysv/linux/i386/Implies: New file.
42997         * sysdeps/unix/sysv/linux/x86/Makefile: Likewise.
42998         * sysdeps/unix/sysv/linux/x86_64/64/Makefile: Likewise.
42999         * sysdeps/unix/sysv/linux/x86_64/Implies: Add unix/sysv/linux/x86.
43000         * sysdeps/unix/sysv/linux/x86_64/Makefile (syscall-list-variants):
43001         Removed.
43002         (syscall-list-32-options): Likewise.
43003         (syscall-list-32-condition): Likewise.
43004         (syscall-list-64-options): Likewise.
43005         (syscall-list-64-condition): Likewise.
43006         * sysdeps/unix/sysv/linux/x86_64/x32/Makefile (default-abi): New
43007         macro.
43008         * sysdeps/unix/sysv/linux/powerpc/Makefile (syscall-list-*):
43009         Renamed to ...
43010         (abi-*): This.
43011         (abi-64-ld-soname): New macro.
43012         * sysdeps/unix/sysv/linux/s390/Makefile: Likewise.
43013         * sysdeps/unix/sysv/linux/sparc/Makefile (syscall-list-*):
43014         Renamed to ...
43015         (abi-*): This.
43016         * sysdeps/x86_64/64/shlib-versions: Remove ld entry.
43017         * sysdeps/x86_64/x32/shlib-versions: Likewise.
43019 2012-05-30  Joseph Myers  <joseph@codesourcery.com>
43021         * sysdeps/unix/sysv/linux/kernel-features.h
43022         (__ASSUME_TRUNCATE64_SYSCALL): Remove all definitions.
43023         * sysdeps/unix/sysv/linux/ftruncate64.c: Do not
43024         include <kernel-features.h>.
43025         [!__NR_ftruncate64]: Remove conditional code.
43026         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
43027         [__NR_ftruncate64]: Make code unconditional.
43028         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
43029         * sysdeps/unix/sysv/linux/truncate64.c: Do not
43030         include <kernel-features.h>.
43031         [!__NR_ftruncate64]: Remove conditional code.
43032         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
43033         [__NR_ftruncate64]: Make code unconditional.
43034         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
43035         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c: Do not
43036         include <kernel-features.h>.
43037         [!__NR_ftruncate64]: Remove conditional code.
43038         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
43039         [__NR_ftruncate64]: Make code unconditional.
43040         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
43041         * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c: Do not
43042         include <kernel-features.h>.
43043         [!__NR_ftruncate64]: Remove conditional code.
43044         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
43045         [__NR_ftruncate64]: Make code unconditional.
43046         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
43048         * configure.in (libc_cv_fpie): Weaken to a compile test using
43049         LIBC_TRY_CC_OPTION.
43050         * configure: Regenerated.
43052 2012-05-29  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
43054         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: Refreshed.
43055         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Refreshed.
43056         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: Refreshed.
43057         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
43058         Refreshed.
43059         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: Refreshed.
43060         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: Refreshed.
43061         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: Refreshed.
43062         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Refreshed.
43063         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: Refreshed.
43064         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
43065         Refreshed.
43067 2012-05-27  David S. Miller  <davem@davemloft.net>
43069         * sysdeps/sparc/sparc32/soft-fp/q_util.c (___Q_numbers): Delete.
43070         (___Q_zero): New.
43071         (__Q_simulate_exceptions): Return void.  Change to simulate
43072         exceptions by writing into the %fsr.
43073         * sysdeps/sparc/sparc64/soft-fp/qp_util.c
43074         (__Qp_handle_exceptions): Likewise.
43075         (numbers): Delete.
43076         * sysdeps/sparc/sparc64/soft-fp/Versions: Remove entry for
43077         __Qp_handle_exceptions.
43078         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Remove
43079         __Qp_handle_exceptions.
43080         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h (_FP_DECL_EX): Mark
43081         as unused and give dummy FP_RND_NEAREST initializer.
43082         (FP_INHIBIT_RESULTS): Define.
43083         (___Q_simulate_exceptions): Update declaration.
43084         (FP_HANDLE_EXCEPTIONS): Use ___Q_zero and tidy inline asm
43085         formatting.
43086         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h (_FP_DECL_EX): Mark
43087         as unused and give dummy FP_RND_NEAREST initializer.
43088         (__Qp_handle_exceptions): Update declaration.
43089         (FP_HANDLE_EXCEPTIONS, QP_NO_EXCEPTIONS): Tidy inline asm
43090         formatting.
43092 2012-05-27  Thomas Schwinge  <thomas@codesourcery.com>
43094         * sysdeps/sh/sh4/fpu/fclrexcpt.c (feclearexcept): Use fpu_control_t for
43095         the temporary FPU control word.
43096         * sysdeps/sh/sh4/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
43097         * sysdeps/sh/sh4/fpu/feenablxcpt.c (feenableexcept): Likewise.
43098         * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Likewise.
43099         * sysdeps/sh/sh4/fpu/fegetexcept.c (fegetexcept): Likewise.
43100         * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Likewise.
43101         * sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Likewise.
43102         * sysdeps/sh/sh4/fpu/fesetenv.c (fesetenv): Likewise.
43103         * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Likewise.
43104         * sysdeps/sh/sh4/fpu/feupdateenv.c (feupdateenv): Likewise.
43105         * sysdeps/sh/sh4/fpu/fsetexcptflg.c (fesetexceptflag): Likewise.
43106         * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
43108 2012-05-27  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
43110         * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Restore fpscr flag
43111         fields.
43113 2012-05-27  Chung-Lin Tang  <cltang@codesourcery.com>
43115         * sysdeps/sh/_mcount.S (_mount): Add CFI directives.
43116         * sysdeps/unix/sh/sysdep.S (__syscall_error): Likewise.
43117         * sysdeps/unix/sysv/linux/sh/sh3/setcontext.S (__setcontext): Likewise.
43118         * sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S (__swapcontext):
43119         Likewise.
43120         * sysdeps/unix/sysv/linux/sh/sh4/setcontext.S (__setcontext): Likewise.
43121         * sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S (__swapcontext):
43122         Likewise.
43124 2012-05-27  Ulrich Drepper  <drepper@gmail.com>
43126         * po/h.po: Update from translation team.
43128 2012-05-26  Andreas Schwab  <schwab@linux-m68k.org>
43130         * sysdeps/powerpc/powerpc32/dl-irel.h: Include <ldsodefs.h>.
43132         * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Optimize
43133         handling of denormals.
43134         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
43135         * sysdeps/ieee754/flt-32/s_logbf.c (__logbf): Likewise.
43136         * sysdeps/ieee754/ldbl-96/s_logbl.c (__logbl): Likewise.
43137         * sysdeps/ieee754/ldbl-128/s_logbl.c (__logbl): Likewise.
43138         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
43139         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c (_logb): Likewise.
43140         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c (_logbl):
43141         Likewise.
43143 2012-05-26  Marek Polacek  <polacek@redhat.com>
43145         [BZ #14152]
43146         * math/libm-test.inc (fma_test): Don't always expect underflow
43147         exception.
43149 2012-05-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
43151         [BZ #12416]
43152         * elf/tst-execstack.c: Include stackinfo.h.
43153         (do_test): Adjust test case to ensure that pthread_getattr_np
43154         behaviour remains the same after marking stack executable.
43156 2012-05-25  Joseph Myers  <joseph@codesourcery.com>
43158         * sysdeps/unix/sysv/linux/kernel-features.h
43159         (__ASSUME_NEW_GETRLIMIT_SYSCALL): Remove all definitions.
43160         * sysdeps/unix/sysv/linux/i386/getrlimit.c: Do not include
43161         kernel-features.h.
43162         [!__ASSUME_NEW_GETRLIMIT_SYSCALL]: Remove conditional code.
43163         [__ASSUME_NEW_GETRLIMIT_SYSCALL]: Make code unconditional.
43164         * sysdeps/unix/sysv/linux/i386/setrlimit.c Do not include
43165         kernel-features.h.
43166         [!__ASSUME_NEW_GETRLIMIT_SYSCALL]: Remove conditional code.
43167         [__ASSUME_NEW_GETRLIMIT_SYSCALL]: Make code unconditional.
43169 2012-05-25  H.J. Lu  <hongjiu.lu@intel.com>
43171         * configure.in: Define the default includes to being none.
43172         * configure: Regenerated.
43174 2012-05-25  Roland McGrath  <roland@hack.frob.com>
43176         * sysdeps/x86_64/__longjmp.S: Add a static probe here.
43177         * sysdeps/x86_64/setjmp.S: Likewise.
43178         * sysdeps/i386/bsd-setjmp.S: Likewise.
43179         * sysdeps/i386/bsd-_setjmp.S: Likewise.
43180         * sysdeps/i386/setjmp.S: Likewise.
43181         * sysdeps/i386/__longjmp.S: Likewise.
43182         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Likewise.
43183         * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S: Likewise.
43185         * include/stap-probe.h: New file.
43186         * configure.in: Handle --enable-systemtap.
43187         * configure: Regenerated.
43188         * config.h.in (USE_STAP_PROBE): New #undef.
43189         * extra-lib.mk (CPPFLAGS-$(lib)): Add -DIN_LIB=$(lib).
43190         * elf/Makefile (CPPFLAGS-.os): Add -DIN_LIB=rtld.
43191         * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
43193 2012-05-25  Joseph Myers  <joseph@codesourcery.com>
43195         [BZ #13717]
43196         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel): Set
43197         to 2.4.0 where earlier.
43198         * sysdeps/unix/sysv/linux/configure: Regenerated.
43199         * sysdeps/unix/sysv/linux/i386/chown.c: Do not include
43200         <kernel-features.h>.
43201         [__ASSUME_32BITUIDS]: Make code unconditional.
43202         [!__ASSUME_32BITUIDS]: Remove conditional code.
43203         * sysdeps/unix/sysv/linux/i386/fchown.c: Do not include
43204         <kernel-features.h>.
43205         [__ASSUME_32BITUIDS]: Make code unconditional.
43206         [!__ASSUME_32BITUIDS]: Remove conditional code.
43207         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat)
43208         [__ASSUME_32BITUIDS]: Make code unconditional.
43209         (fchownat) [!__ASSUME_32BITUIDS]: Remove conditional code.
43210         * sysdeps/unix/sysv/linux/i386/getegid.c: Do not include
43211         <kernel-features.h>.
43212         [__ASSUME_32BITUIDS]: Make code unconditional.
43213         [!__ASSUME_32BITUIDS]: Remove conditional code.
43214         * sysdeps/unix/sysv/linux/i386/geteuid.c: Do not include
43215         <kernel-features.h>.
43216         [__ASSUME_32BITUIDS]: Make code unconditional.
43217         [!__ASSUME_32BITUIDS]: Remove conditional code.
43218         * sysdeps/unix/sysv/linux/i386/getgid.c: Do not include
43219         <kernel-features.h>.
43220         [__ASSUME_32BITUIDS]: Make code unconditional.
43221         [!__ASSUME_32BITUIDS]: Remove conditional code.
43222         * sysdeps/unix/sysv/linux/i386/getgroups.c: Do not include
43223         <kernel-features.h>.
43224         [__ASSUME_32BITUIDS]: Make code unconditional.
43225         [!__ASSUME_32BITUIDS]: Remove conditional code.
43226         * sysdeps/unix/sysv/linux/i386/getresgid.c: Do not include
43227         <kernel-features.h>.
43228         [__ASSUME_32BITUIDS]: Make code unconditional.
43229         [!__ASSUME_32BITUIDS]: Remove conditional code.
43230         * sysdeps/unix/sysv/linux/i386/getresuid.c: Do not include
43231         <kernel-features.h>.
43232         [__ASSUME_32BITUIDS]: Make code unconditional.
43233         [!__ASSUME_32BITUIDS]: Remove conditional code.
43234         * sysdeps/unix/sysv/linux/i386/getuid.c: Do not include
43235         <kernel-features.h>.
43236         [__ASSUME_32BITUIDS]: Make code unconditional.
43237         [!__ASSUME_32BITUIDS]: Remove conditional code.
43238         * sysdeps/unix/sysv/linux/i386/lchown.c: Do not include
43239         <kernel-features.h>.
43240         [__ASSUME_32BITUIDS]: Make code unconditional.
43241         [!__ASSUME_32BITUIDS]: Remove conditional code.
43242         * sysdeps/unix/sysv/linux/i386/msgctl.c: Do not include
43243         <kernel-features.h>.
43244         [__ASSUME_32BITUIDS]: Make code unconditional.
43245         [!__ASSUME_32BITUIDS]: Remove conditional code.
43246         * sysdeps/unix/sysv/linux/i386/semctl.c: Do not include
43247         <kernel-features.h>.
43248         [__ASSUME_32BITUIDS]: Make code unconditional.
43249         [!__ASSUME_32BITUIDS]: Remove conditional code.
43250         * sysdeps/unix/sysv/linux/i386/setegid.c: Do not include
43251         <kernel-features.h>.
43252         [__NR_setresgid] (__setresgid): Do not declare.
43253         [__ASSUME_32BITUIDS]: Make code unconditional.
43254         [!__ASSUME_32BITUIDS]: Remove conditional code.
43255         * sysdeps/unix/sysv/linux/i386/seteuid.c: Do not include
43256         <kernel-features.h>.
43257         [__NR_setresuid] (__setresuid): Do not declare.
43258         [__ASSUME_32BITUIDS]: Make code unconditional.
43259         [!__ASSUME_32BITUIDS]: Remove conditional code.
43260         * sysdeps/unix/sysv/linux/i386/setfsgid.c: Do not include
43261         <kernel-features.h>.
43262         [__ASSUME_32BITUIDS]: Make code unconditional.
43263         [!__ASSUME_32BITUIDS]: Remove conditional code.
43264         * sysdeps/unix/sysv/linux/i386/setfsuid.c: Do not include
43265         <kernel-features.h>.
43266         [__ASSUME_32BITUIDS]: Make code unconditional.
43267         [!__ASSUME_32BITUIDS]: Remove conditional code.
43268         * sysdeps/unix/sysv/linux/i386/setgid.c: Do not include
43269         <kernel-features.h>.
43270         [__ASSUME_32BITUIDS]: Make code unconditional.
43271         [!__ASSUME_32BITUIDS]: Remove conditional code.
43272         * sysdeps/unix/sysv/linux/i386/setgroups.c: Do not include
43273         <kernel-features.h>.
43274         [__ASSUME_32BITUIDS]: Make code unconditional.
43275         [!__ASSUME_32BITUIDS]: Remove conditional code.
43276         * sysdeps/unix/sysv/linux/i386/setregid.c: Do not include
43277         <kernel-features.h>.
43278         [__ASSUME_32BITUIDS]: Make code unconditional.
43279         [!__ASSUME_32BITUIDS]: Remove conditional code.
43280         * sysdeps/unix/sysv/linux/i386/setresgid.c: Do not include
43281         <kernel-features.h>.
43282         [__ASSUME_32BITUIDS]: Make code unconditional.
43283         [!__ASSUME_32BITUIDS]: Remove conditional code.
43284         * sysdeps/unix/sysv/linux/i386/setresuid.c: Do not include
43285         <kernel-features.h>.
43286         [__ASSUME_32BITUIDS]: Make code unconditional.
43287         [!__ASSUME_32BITUIDS]: Remove conditional code.
43288         * sysdeps/unix/sysv/linux/i386/setreuid.c: Do not include
43289         <kernel-features.h>.
43290         [__ASSUME_32BITUIDS]: Make code unconditional.
43291         [!__ASSUME_32BITUIDS]: Remove conditional code.
43292         * sysdeps/unix/sysv/linux/i386/setuid.c: Do not include
43293         <kernel-features.h>.
43294         [__ASSUME_32BITUIDS]: Make code unconditional.
43295         [!__ASSUME_32BITUIDS]: Remove conditional code.
43296         * sysdeps/unix/sysv/linux/i386/shmctl.c: Do not include
43297         <kernel-features.h>.
43298         [__ASSUME_32BITUIDS]: Make code unconditional.
43299         [!__ASSUME_32BITUIDS]: Remove conditional code.
43300         * sysdeps/unix/sysv/linux/kernel-features.h
43301         (__ASSUME_SETRESUID_SYSCALL): Remove.
43302         (__ASSUME_SETRESGID_SYSCALL): Likewise.
43303         (__ASSUME_32BITUIDS): Likewise.
43304         (__ASSUME_LDT_WORKS): Likewise.
43305         (__ASSUME_O_DIRECTORY): Likewise.
43306         (__ASSUME_NEW_GETRLIMIT_SYSCALL): Define conditional on
43307         architecture but not kernel version.
43308         (__ASSUME_TRUNCATE64_SYSCALL): Likewise.
43309         (__ASSUME_MMAP2_SYSCALL): Likewise.
43310         (__ASSUME_STAT64_SYSCALL): Likewise.
43311         (__ASSUME_IPC64): Likewise.
43312         * sysdeps/unix/sysv/linux/local-setxid.h: Do not include
43313         <kernel-features.h>.
43314         [__ASSUME_32BITUIDS]: Make code unconditional.
43315         [!__ASSUME_32BITUIDS]: Remove conditional code.
43316         * sysdeps/unix/sysv/linux/opendir.c: Do not include
43317         <kernel-features.h>.
43318         [__ASSUME_O_DIRECTORY]: Make code unconditional.
43319         * sysdeps/unix/sysv/linux/opensock.c [__LINUX_KERNEL_VERSION <
43320         132096]: Remove conditional code.
43321         [__LINUX_KERNEL_VERSION >= 132096]: Make code unconditional.
43322         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Do not include
43323         <kernel-features.h>.
43324         [__ASSUME_32BITUIDS]: Make code unconditional.
43325         [!__ASSUME_32BITUIDS]: Remove conditional code.
43326         * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Do not include
43327         <kernel-features.h>.
43328         [__ASSUME_32BITUIDS]: Make code unconditional.
43329         [!__ASSUME_32BITUIDS]: Remove conditional code.
43330         * sysdeps/unix/sysv/linux/setegid.c: Do not include
43331         <kernel-features.h>.
43332         [__NR_setresgid || __ASSUME_SETRESGID_SYSCALL]: Make code
43333         unconditional.
43334         (__setresgid): Do not declare.
43335         [__ASSUME_32BITUIDS]: Make code unconditional.
43336         [!__ASSUME_32BITUIDS]: Remove conditional code.
43337         * sysdeps/unix/sysv/linux/seteuid.c: Do not include
43338         <kernel-features.h>.
43339         [__NR_setresuid || __ASSUME_SETRESUID_SYSCALL]: Make code
43340         unconditional.
43341         (__setresuid): Do not declare.
43342         [__ASSUME_32BITUIDS]: Make code unconditional.
43343         [!__ASSUME_32BITUIDS]: Remove conditional code.
43344         * sysdeps/unix/sysv/linux/sh/chown.c: Do not include
43345         <kernel-features.h>.
43346         [__ASSUME_32BITUIDS]: Make code unconditional.
43347         [!__ASSUME_32BITUIDS]: Remove conditional code.
43348         * sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c: Do not include
43349         <kernel-features.h>.
43350         [__ASSUME_32BITUIDS]: Make code unconditional.
43351         [!__ASSUME_32BITUIDS]: Remove conditional code.
43353 2012-05-25  Richard Henderson  <rth@twiddle.net>
43355         * sysdeps/powerpc/powerpc32/dl-irel.h (elf_ifunc_invoke): Pass
43356         dl_hwcap to ifunc resolver.
43357         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Use
43358         elf_ifunc_invoke.
43359         * sysdeps/powerpc/powerpc64/dl-irel.h (elf_ifunc_invoke): Pass
43360         dl_hwcap to ifunc resolver.
43361         * sysdeps/powerpc/powerpc64/dl-machine.h (resolve_ifunc): Likewise.
43363 2012-05-24  Joseph Myers  <joseph@codesourcery.com>
43365         [BZ #14153]
43366         * sysdeps/ieee754/flt-32/e_acosf.c (__ieee754_acosf): Return pi/2
43367         for |x| <= 2**-26, not 2**-57.
43368         * math/libm-test.inc (acos_test): Do not allow spurious underflow
43369         exception.
43371 2012-05-24  Jeff Law  <law@redhat.com>
43373         * stdio-common/Makefile (tests): Add bug25.
43374         * stdio-common/bug25.c: New test.
43376 2012-05-24  H.J. Lu  <hongjiu.lu@intel.com>
43378         [BZ #13576]
43379         * malloc/malloc.c (sYSMALLOc): Free the old top chunk with a
43380         multiple of MALLOC_ALIGNMENT in size.
43381         (_int_free): Check chunk size is a multiple of MALLOC_ALIGNMENT.
43383 2012-05-24  Joseph Myers  <joseph@codesourcery.com>
43385         * conform/data/stdio.h-data (BUFSIZ): Use macro-int-constant.
43386         Require >= 256.
43387         (FILENAME_MAX): Use macro-int-constant.
43388         (FOPEN_MAX): Use macro-int-constant.  Require >= 8.
43389         (_IOFBF): Use macro-int-constant.
43390         (_IOLBF): Likewise.
43391         (_IONBF): Likewise.
43392         (SEEK_CUR): Likewise.
43393         (SEEK_END): Likewise.
43394         (SEEK_SET): Likewise.
43395         (TMP_MAX): Likewise.
43396         (EOF): Use macro-int-constant.  Require < 0.
43397         (NULL): Use macro-constant.  Require == 0.
43398         (stdin): Require type to be FILE *.
43399         (stdout): Likewise.
43400         (stderr): Likewise.
43401         * conform/data/stdlib.h-data (EXIT_FAILURE): Use
43402         macro-int-constant.
43403         (EXIT_SUCCESS): Likewise.
43404         (NULL): Use macro-constant.  Require == 0.
43405         (RAND_MAX): Use macro-int-constant.
43406         [ISO99 || ISO11] (lldiv_t): Require also for these standards.
43407         [C99-based standards] (strtof): Require function.
43408         [C99-based standards] (strtold): Likewise.
43409         [C99-based standards] (strtoll): Likewise.
43410         [C99-based standards] (strtoull): Likewise.
43411         [ISO || ISO99 || ISO11] (stddef.h): Do not allow header.
43412         [ISO || ISO99 || ISO11] (limits.h): Likewise.
43413         [ISO || ISO99 || ISO11] (math.h): Likewise.
43414         [ISO || ISO99 || ISO11] (sys/wait.h): Likewise.
43415         (str*): Change to str[abcdefghijklmnopqrstuvwxyz]*.
43416         [ISO || ISO99 || ISO11] (*_t): Do not allow.
43418 2012-05-24  Andreas Schwab  <schwab@linux-m68k.org>
43420         [BZ #14132]
43421         * argp/argp-help.c (dgettext) [_LIBC]: Remove use of INTUSE.
43422         * argp/argp-parse.c (dgettext) [_LIBC]: Likewise.
43423         * intl/dgettext.c (DCGETTEXT): Likewise.
43424         * intl/gettext.c (DCGETTEXT): Likewise.
43425         * intl/l10nflist.c (__argz_count, __argz_stringify): Likewise.
43426         * posix/regex_internal.h (gettext): Likewise.
43427         * include/libintl.h (__dcgettext_internal, __dcngettext_internal):
43428         Remove declaration.
43429         * include/argz.h (__argz_count_internal)
43430         (__argz_stringify_internal): Remove declaration.
43431         (__argz_count, __argz_stringify): Declare hidden proto.
43432         * intl/dcgettext.c: Remove use of INTDEF.
43433         * string/argz-count.c: Replace INTDEF with libc_hidden_def.
43434         * string/argz-stringify.c: Likewise.
43435         * include/libio.h (_IO_free_backup_area, _IO_free_wbackup_area)
43436         (_IO_padn, _IO_putc, _IO_sgetn, _IO_vfprintf, _IO_vfscanf):
43437         Declare hidden proto.
43438         * include/libio.h (_IO_free_backup_area, _IO_free_wbackup_area)
43439         (_IO_padn, _IO_putc, _IO_sgetn, _IO_vfprintf, _IO_vfscanf):
43440         Declare hidden proto.
43441         * include/stdio.h (__asprintf_internal): Don't declare.
43442         (__asprintf): Don't define as macro.  Declare hidden proto.
43443         * include/stdio_ext.h (__fsetlocking_internal): Don't declare.
43444         (__fsetlocking): Declare hidden proto.
43445         * libio/iolibio.h (_IO_fdopen, _IO_fflush, _IO_ftell, _IO_fread)
43446         (_IO_fwrite, _IO_setbuffer, _IO_setvbuf, _IO_vsprintf): Declare
43447         hidden proto.
43448         (_IO_vprintf, _IO_freopen, _IO_freopen64, _IO_setbuf)
43449         (_IO_setlinebuf): Remove use of INTUSE.
43450         (_IO_setbuffer_internal, _IO_fread_internal, _IO_fdopen_internal)
43451         (_IO_vsprintf_internal, _IO_fflush_internal, _IO_fwrite_internal)
43452         (_IO_ftell_internal, _IO_fputs_internal, _IO_setvbuf_internal):
43453         Remove declaration.
43454         * libio/libioP.h (INTUSE, INTDEF, INTDEF2): Don't define.
43455         (_IO_do_flush): Remove use of INTUSE.
43456         (_IO_switch_to_get_mode, _IO_init, _IO_sputbackc, _IO_un_link)
43457         (_IO_link_in, _IO_doallocbuf, _IO_unsave_markers, _IO_setb)
43458         (_IO_adjust_column, _IO_least_wmarker)
43459         (_IO_switch_to_main_wget_area, _IO_switch_to_wbackup_area)
43460         (_IO_switch_to_wget_mode, _IO_wsetb, _IO_sputbackwc)
43461         (_IO_wdoallocbuf, _IO_default_uflow, _IO_wdefault_uflow)
43462         (_IO_default_doallocate, _IO_wdefault_doallocate)
43463         (_IO_default_finish, _IO_wdefault_finish, _IO_default_pbackfail)
43464         (_IO_wdefault_pbackfail, _IO_default_xsputn, _IO_wdefault_xsputn)
43465         (_IO_default_xsgetn, _IO_wdefault_xsgetn, _IO_do_write)
43466         (_IO_wdo_write, _IO_flush_all, _IO_flush_all_linebuffered)
43467         (_IO_file_doallocate, _IO_file_setbuf, _IO_file_seekoff)
43468         (_IO_file_xsputn, _IO_file_xsgetn, _IO_file_stat, _IO_file_close)
43469         (_IO_file_underflow, _IO_file_overflow, _IO_file_init)
43470         (_IO_file_attach, _IO_file_fopen, _IO_file_read, _IO_file_sync)
43471         (_IO_file_close_it, _IO_file_seek, _IO_file_finish)
43472         (_IO_wfile_xsputn, _IO_wfile_sync, _IO_wfile_underflow)
43473         (_IO_wfile_overflow, _IO_wfile_seekoff, _IO_str_underflow)
43474         (_IO_str_overflow, _IO_str_pbackfail, _IO_str_seekoff)
43475         (_IO_getline, _IO_getline_info, _IO_list_all): Declare hidden
43476         proto.
43477         (_IO_flush_all_internal, _IO_adjust_column_internal)
43478         (_IO_default_uflow_internal, _IO_default_finish_internal)
43479         (_IO_default_pbackfail_internal, _IO_default_xsputn_internal)
43480         (_IO_default_xsgetn_internal, _IO_default_doallocate_internal)
43481         (_IO_wdefault_finish_internal, _IO_wdefault_pbackfail_internal)
43482         (_IO_wdefault_xsputn_internal, _IO_wdefault_xsgetn_internal)
43483         (_IO_wdefault_doallocate_internal, _IO_wdefault_uflow_internal)
43484         (_IO_file_doallocate_internal, _IO_file_setbuf_internal)
43485         (_IO_file_seekoff_internal, _IO_file_xsputn_internal)
43486         (_IO_file_xsgetn_internal, _IO_file_stat_internal)
43487         (_IO_file_close_internal, _IO_file_close_it_internal)
43488         (_IO_file_underflow_internal, _IO_file_overflow_internal)
43489         (_IO_file_init_internal, _IO_file_attach_internal)
43490         (_IO_file_fopen_internal, _IO_file_read_internal)
43491         (_IO_file_sync_internal, _IO_file_seek_internal)
43492         (_IO_file_finish_internal, _IO_wfile_xsputn_internal)
43493         (_IO_wfile_seekoff_internal, _IO_wfile_sync_internal)
43494         (_IO_str_underflow_internal, _IO_str_overflow_internal)
43495         (_IO_str_pbackfail_internal, _IO_str_seekoff_internal)
43496         (_IO_file_jumps_internal, _IO_wfile_jumps_internal)
43497         (_IO_list_all_internal, _IO_link_in_internal)
43498         (_IO_sputbackc_internal, _IO_wdoallocbuf_internal)
43499         (_IO_sgetn_internal, _IO_flush_all_linebuffered_internal)
43500         (_IO_switch_to_wget_mode_internal, _IO_unsave_markers_internal)
43501         (_IO_switch_to_main_wget_area_internal, _IO_wdo_write_internal)
43502         (_IO_do_write_internal, _IO_padn_internal)
43503         (_IO_getline_info_internal, _IO_getline_internal)
43504         (_IO_free_wbackup_area_internal, _IO_free_backup_area_internal)
43505         (_IO_switch_to_wbackup_area_internal, _IO_setb_internal)
43506         (_IO_sputbackwc_internal, _IO_switch_to_get_mode_internal)
43507         (_IO_vfscanf_internal, _IO_vfprintf_internal)
43508         (_IO_doallocbuf_internal, _IO_wsetb_internal, _IO_putc_internal)
43509         (_IO_init_internal, _IO_un_link_internal): Don't declare.
43510         * libio/fileops.c: Replace INTDEF with libc_hidden_def and INTDEF2
43511         with libc_hidden_ver, remove use of INTUSE.
43512         * libio/genops.c: Likewise.
43513         * libio/freopen.c: Likewise.
43514         * libio/freopen64.c: Likewise.
43515         * libio/iofclose.c: Likewise.
43516         * libio/iofdopen.c: Likewise.
43517         * libio/iofflush.c: Likewise.
43518         * libio/iofflush_u.c: Likewise.
43519         * libio/iofgets.c: Likewise.
43520         * libio/iofgets_u.c: Likewise.
43521         * libio/iofopen.c: Likewise.
43522         * libio/iofopncook.c: Likewise.
43523         * libio/iofread.c: Likewise.
43524         * libio/iofread_u.c: Likewise.
43525         * libio/ioftell.c: Likewise.
43526         * libio/iofwrite.c: Likewise.
43527         * libio/iogetline.c: Likewise.
43528         * libio/iogets.c: Likewise.
43529         * libio/iogetwline.c: Likewise.
43530         * libio/iopadn.c: Likewise.
43531         * libio/iopopen.c: Likewise.
43532         * libio/ioseekoff.c: Likewise.
43533         * libio/ioseekpos.c: Likewise.
43534         * libio/iosetbuffer.c: Likewise.
43535         * libio/iosetvbuf.c: Likewise.
43536         * libio/ioungetc.c: Likewise.
43537         * libio/ioungetwc.c: Likewise.
43538         * libio/iovdprintf.c: Likewise.
43539         * libio/iovsprintf.c: Likewise.
43540         * libio/iovsscanf.c: Likewise.
43541         * libio/memstream.c: Likewise.
43542         * libio/obprintf.c: Likewise.
43543         * libio/oldfileops.c: Likewise.
43544         * libio/oldiofclose.c: Likewise.
43545         * libio/oldiofdopen.c: Likewise.
43546         * libio/oldiofopen.c: Likewise.
43547         * libio/oldiopopen.c: Likewise.
43548         * libio/oldstdfiles.c: Likewise.
43549         * libio/putc.c: Likewise.
43550         * libio/setbuf.c: Likewise.
43551         * libio/setlinebuf.c: Likewise.
43552         * libio/stdfiles.c: Likewise.
43553         * libio/strops.c: Likewise.
43554         * libio/vasprintf.c: Likewise.
43555         * libio/vscanf.c: Likewise.
43556         * libio/vsnprintf.c: Likewise.
43557         * libio/vswprintf.c: Likewise.
43558         * libio/wfiledoalloc.c: Likewise.
43559         * libio/wfileops.c: Likewise.
43560         * libio/wgenops.c: Likewise.
43561         * libio/wmemstream.c: Likewise.
43562         * libio/wstrops.c: Likewise.
43563         * libio/__fpurge.c: Likewise.
43564         * libio/__fsetlocking.c: Likewise.
43565         * assert/assert.c: Likewise.
43566         * debug/fgets_chk.c: Likewise.
43567         * debug/fgets_u_chk.c: Likewise.
43568         * debug/fread_chk.c: Likewise.
43569         * debug/fread_u_chk.c: Likewise.
43570         * debug/gets_chk.c: Likewise.
43571         * debug/obprintf_chk.c: Likewise.
43572         * debug/vasprintf_chk.c: Likewise.
43573         * debug/vdprintf_chk.c: Likewise.
43574         * debug/vsnprintf_chk.c: Likewise.
43575         * debug/vsprintf_chk.c: Likewise.
43576         * malloc/mtrace.c: Likewise.
43577         * misc/error.c: Likewise.
43578         * misc/syslog.c: Likewise.
43579         * stdio-common/asprintf.c: Likewise.
43580         * stdio-common/fxprintf.c: Likewise.
43581         * stdio-common/getw.c: Likewise.
43582         * stdio-common/isoc99_fscanf.c: Likewise.
43583         * stdio-common/isoc99_scanf.c: Likewise.
43584         * stdio-common/isoc99_vfscanf.c: Likewise.
43585         * stdio-common/isoc99_vscanf.c: Likewise.
43586         * stdio-common/isoc99_vsscanf.c: Likewise.
43587         * stdio-common/printf-prs.c: Likewise.
43588         * stdio-common/printf_fp.c: Likewise.
43589         * stdio-common/printf_fphex.c: Likewise.
43590         * stdio-common/printf_size.c: Likewise.
43591         * stdio-common/putw.c: Likewise.
43592         * stdio-common/scanf.c: Likewise.
43593         * stdio-common/sprintf.c: Likewise.
43594         * stdio-common/tmpfile.c: Likewise.
43595         * stdio-common/vfprintf.c: Likewise.
43596         * stdio-common/vfscanf.c: Likewise.
43597         * stdlib/strfmon_l.c: Likewise.
43598         * sunrpc/openchild.c: Likewise.
43599         * sunrpc/xdr_stdio.c: Likewise.
43600         * sysdeps/ieee754/ldbl-opt/nldbl-compat.c: Likewise.
43601         * sysdeps/mach/hurd/tmpfile.c: Likewise.
43603 2012-05-24  Roland McGrath  <roland@hack.frob.com>
43605         * sysdeps/unix/sysv/linux/x86_64/x32/syscalls.list: New file.
43607         * sysdeps/unix/make-syscalls.sh: Support "syscall:vdso_name@VDSOVER"
43608         in the third column, to generate for the shared library an IFUNC
43609         that uses _dl_vdso_vsym.
43610         * Makerules (COMPILE.c, compile-stdin.c): New variables.
43611         * Makeconfig (object-suffixes-noshared): New variable.
43613         * sysdeps/unix/sysv/linux/dl-vdso.h (PREPARE_VERSION_KNOWN): New macro.
43614         (VDSO_NAME_LINUX_2_6, VDSO_HASH_LINUX_2_6): New macros.
43615         (VDSO_NAME_LINUX_2_6_15, VDSO_HASH_LINUX_2_6_15): New macros.
43616         (VDSO_NAME_LINUX_2_6_29, VDSO_HASH_LINUX_2_6_29): New macros.
43618         [BZ #14132]
43619         * include/sys/time.h (__gettimeofday): Remove macro.
43620         (__gettimeofday, gettimeofday): Add libc_hidden_proto.
43621         * time/gettimeofday.c (__gettimeofday): Remove #undef.
43622         Remove INTDEF.
43623         (__gettimeofday): Add libc_hidden_def.
43624         (gettimeofday): Add libc_hidden_weak.
43625         * sysdeps/mach/gettimeofday.c: Likewise.
43626         * sysdeps/posix/gettimeofday.c: Likewise.
43627         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Likewise.
43628         * sysdeps/unix/sysv/linux/s390/gettimeofday.c: Likewise.
43629         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c
43630         (__gettimeofday_internal): Remove strong_alias.
43631         (__gettimeofday): Add libc_hidden_def.
43632         (gettimeofday): Add libc_hidden_weak.
43633         * sysdeps/unix/syscalls.list (gettimeofday):
43634         Remove __gettimeofday_internal alias.
43636 2012-05-24  Daniel Jacobowitz  <drow@false.org>
43637             H.J. Lu  <hongjiu.lu@intel.com>
43639         [BZ #12495]
43640         * malloc/malloc.c (SMALLBIN_CORRECTION): New.
43641         (MIN_LARGE_SIZE, smallbin_index): Use it to handle 16-byte alignment.
43642         (largebin_index_32_big): New.
43643         (largebin_index): Use it for 16-byte alignment.
43644         (sYSMALLOc): Handle MALLOC_ALIGNMENT > 2 * SIZE_SZ.  Don't update
43645         correction with front_misalign.
43647 2012-05-24  H.J. Lu  <hongjiu.lu@intel.com>
43649         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/ld.abilist: New file.
43650         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libBrokenLocale.abilist:
43651         Likewise.
43652         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libanl.abilist:
43653         Likewise.
43654         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist:
43655         Likewise.
43656         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libcrypt.abilist:
43657         Likewise.
43658         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libdl.abilist:
43659         Likewise.
43660         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libm.abilist:
43661         Likewise.
43662         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libnsl.abilist:
43663         Likewise.
43664         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist:
43665         Likewise.
43666         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libresolv.abilist:
43667         Likewise.
43668         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/librt.abilist:
43669         Likewise.
43670         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libthread_db.abilist:
43671         Likewise.
43672         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libutil.abilist:
43673         Likewise.
43675         * scripts/data/c++-types-x32-linux-gnu.data: New file.
43676         * sysdeps/x86_64/x32/shlib-versions: Add x32 ABI entry.
43678 2012-05-24  Joseph Myers  <joseph@codesourcery.com>
43680         [BZ #10846]
43681         [BZ #14036]
43682         * math/libm-test.inc (exp_test): Add test from bug 14036.
43683         (pow_test): Add test from bug 10846.
43685         * math/gen-libm-test.pl (%beautify): Remove entries for exceptions
43686         and other flags.
43687         (special_function): Do not include flags in test name.
43688         (parse_args): Likewise.
43689         * sysdeps/i386/fpu/libm-test-ulps: Update.
43690         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
43691         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
43692         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
43693         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
43695         * math/gen-libm-test.pl (%beautify): Add entries for underflow
43696         exceptions.
43697         * math/libm-test.inc ("Philosophy"): Update comment about
43698         exception testing.
43699         (UNDERFLOW_EXCEPTION): New macro.
43700         (UNDERFLOW_EXCEPTION_OK): Likewise.
43701         (UNDERFLOW_EXCEPTION_FLOAT): Likewise.
43702         (UNDERFLOW_EXCEPTION_OK_FLOAT): Likewise.
43703         (UNDERFLOW_EXCEPTION_DOUBLE): Likewise.
43704         (UNDERFLOW_EXCEPTION_LDOUBLE_IBM): Likewise.
43705         (INVALID_EXCEPTION_OK): Update value.
43706         (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
43707         (OVERFLOW_EXCEPTION_OK): Likewise.
43708         (IGNORE_ZERO_INF_SIGN): Likewise.
43709         (test_exceptions): Handle underflow exceptions.
43710         (acos_test): Update for underflow exception expectations.
43711         (cexp_test): Likewise.
43712         (clog_test): Likewise.
43713         (clog10_test): Likewise.
43714         (csqrt_test): Likewise.
43715         (ctan_test): Likewise.
43716         (ctanh_test): Likewise.
43717         (exp_test): Likewise.
43718         (exp10_test): Likewise.
43719         (exp2_test): Likewise.
43720         (expm1_test): Likewise.
43721         (fma_test): Likewise.
43722         (j0_test): Likewise.
43723         (jn_test): Likewise.
43724         (nexttoward_test): Likewise.
43725         (pow_test): Likewise.
43726         (scalbn_test): Likewise.
43727         (scalbln_test): Likewise.
43728         (tan_test): Likewise.
43729         (y1_test): Likewise.
43730         * sysdeps/i386/fpu/libm-test-ulps: Update.
43731         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
43733 2012-05-23  David S. Miller  <davem@davemloft.net>
43735         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c
43736         (__libc_sigaction): Remove unused local variables.
43738 2012-05-23  H.J. Lu  <hongjiu.lu@intel.com>
43740         * sysdeps/unix/sysv/linux/x86_64/x32/configure: New file.
43742 2012-05-23  Paul Eggert  <eggert@cs.ucla.edu>
43744         mktime: avoid signed integer overflow
43745         * time/mktime.c (__mktime_internal): Do not mishandle the case
43746         where diff == INT_MIN.
43748         mktime: simplify computation of average
43749         * time/mktime.c (ranged_convert): Use new time_t_avg function
43750         instead of rolling our own (probably-slower) code.
43752         mktime: do not assume signed right shift propagates sign bit
43753         * time/mktime.c (isdst_differ): New static function.
43754         (__mktime_internal): No need to normalize tm_isdst now.
43755         (__mktime_internal, not_equal_tm): Use isdst_differ to compare
43756         tm_isdst values.
43758         mktime: merge another wrapv change from gnulib
43759         * time/mktime.c (TYPE_MAXIMUM): Rework slightly to avoid diagnostics
43760         from some compilers.
43762         mktime: remove incorrect attempt at unusual arithmetics
43763         * time/mktime.c (TYPE_ONES_COMPLEMENT, TYPE_SIGNED_MAGNITUDE): Remove.
43764         The code didn't really work on such machines anyway.
43765         (TYPE_MINIMUM): Assume two's complement.
43766         (twos_complement_arithmetic): Verify that long_int and time_t
43767         are two's complement (or unsigned, in the latter case).
43769         mktime: check signed shifts on long_int and time_t, too
43770         * time/mktime.c (SHR): Check that shifts work as desired
43771         on the types long_int and time_t too, as SHR is used on
43772         such types.
43774         mktime: do not assume 'long' is wide enough
43775         * time/mktime.c (verify): Move decl up.
43776         (long_int): New type.
43777         (leapyear, ydhms_diff, guess_time_tm, __mktime_internal): Use it,
43778         to remove assumption in the code that 'long' is wide enough to
43779         store year values.  This assumption is not true on x32 and on
43780         some non-glibc platforms.
43782         mktime: merge wrapv change from gnulib
43783         * time/mktime.c (WRAPV): New macro.
43784         (time_t_avg, time_t_add_ok, time_t_int_add_ok): New static functions.
43785         (guess_time_tm, __mktime_internal): Do not assume that signed
43786         integer overflow wraps around; modern compilers generate code
43787         where this assumption is no longer valid.
43789 2012-05-23  H.J. Lu  <hongjiu.lu@intel.com>
43791         * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
43792         Replace "jmp L(pseudo_end)" with "ret".
43793         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_ERROR_HANDLER):
43794         Likewise.
43796 2012-05-23  Andreas Jaeger  <aj@suse.de>
43798         * sysdeps/unix/sysv/linux/syscalls.list: Add poll.
43799         * sysdeps/unix/sysv/linux/poll.c: Remove file.
43801 2012-05-23  Andreas Jaeger  <aj@suse.de>
43802             Maximilian Attems  <max@stro.at>
43804         * sysdeps/unix/sysv/linux/sys/reboot.h (RB_SW_SUSPEND, RB_KEXEC):
43805         New macros.
43807 2012-05-23  H.J. Lu  <hongjiu.lu@intel.com>
43809         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Rearrange
43810         code so that pseudo_end is just ret and the stack pointer is
43811         correct also for static library in error case.
43813 2012-05-23  Joseph Myers  <joseph@codesourcery.com>
43815         * sysdeps/unix/sysv/linux/powerpc/chown.c: Add comment suggesting
43816         move to syscalls.list.
43817         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Likewise.
43818         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
43819         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
43820         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
43822         * manual/install.texi (Running make install): Do not mention Linux
43823         kernel version for which pt_chown is not needed.
43824         (Linux): Do not mention problems with nscd with 2.0 kernels.
43825         * INSTALL: Regenerated.
43827 2012-05-23  Andreas Jaeger  <aj@suse.de>
43829         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h
43830         (MADV_DONTDUMP,MADV_DODUMP): New macros from Linux 3.4.
43831         macro.
43832         * sysdeps/unix/sysv/linux/s390/bits/mman.h
43833         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
43834         * sysdeps/unix/sysv/linux/sh/bits/mman.h
43835         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
43836         * sysdeps/unix/sysv/linux/i386/bits/mman.h
43837         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
43838         * sysdeps/unix/sysv/linux/sparc/bits/mman.h
43839         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
43840         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h
43841         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
43842         * sysdeps/unix/sysv/linux/bits/in.h
43843         (IP_MULTICAST_ALL,IP_UNICAST_IF): Likewise.
43845 2012-05-22  Roland McGrath  <roland@hack.frob.com>
43847         * sysdeps/unix/sysv/linux/dl-vdso.h (CHECK_HASH): Macro removed.
43848         (PREPARE_VERSION): Just use assert instead, it will be elided
43849         under [NDEBUG] anyway.
43851 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
43853         * sysdeps/unix/sysv/linux/Makefile: Include
43854         $(firstword $(wildcard $(sysdirs:=/sysctl.mk))).
43855         (sysdep_routines): Remove sysctl.
43856         * sysdeps/unix/sysv/linux/bits/sysctl.h: New file.
43857         * sysdeps/unix/sysv/linux/sysctl.mk: Likewise.
43858         * sysdeps/unix/sysv/linux/x86_64/bits/sysctl.h: Likewise.
43859         * sysdeps/unix/sysv/linux/x86_64/x32/sysctl.mk: Likewise.
43860         * sysdeps/unix/sysv/linux/sys/sysctl.h: Include <bits/sysctl.h>.
43862 2012-05-22  Andreas Jaeger  <aj@suse.de>
43864         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Rearrange code so
43865         that pseudo_end is just ret and the stack pointer is correct also
43866         for static library in error case.
43868 2012-05-22  Paul Pluzhnikov  <ppluzhnikov@google.com>
43870         [BZ #14122]
43871         * nss/nsswitch.c (defconfig_entries): New variable.
43872         (__nss_database_lookup): Don't leak defconfig entries.
43873         (nss_parse_service_list): Don't leak on error paths.
43874         (free_database_entries): New function.
43875         (free_defconfig): New function.
43876         (free_mem): Move common code to free_database_entries.
43878 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
43880         * sysdeps/unix/sysv/linux/x86_64/x32/Makefile (sysdep_routines):
43881         Add arch_prctl.
43882         * sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c: New file.
43884         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
43885         (posix_fallocate): Use INTERNAL_SYSCALL_TYPES if it is defined.
43886         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INLINE_SYSCALL_TYPES):
43887         New macro.
43888         (INTERNAL_SYSCALL_NCS_TYPES): Likewise.
43889         (INTERNAL_SYSCALL_TYPES): Likewise.
43890         (LOAD_ARGS_TYPES_[1-6]): Likewise.
43891         (LOAD_REGS_TYPES_[1-6]): Likewise.
43892         (LOAD_ARGS_[1-6]): Use LOAD_ARGS_TYPES_[1-6].
43893         (LOAD_REGS_[1-6]): Use LOAD_REGS_TYPES_[1-6].
43895 2012-05-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
43897         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Add compat symbol
43898         copysignl for GLIBC_2_0.
43899         * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Add compat symbol
43900         finitel for GLIBC_2.0 and __finitel for GLIBC_2_1.
43901         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: Add compat symbol
43902         logbl for GLIBC_2_0.
43903         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Likewise.
43904         * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Likewise.
43906 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
43908         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Don't include
43909         <bits/wordsize.h>.  Check __x86_64__ instead of __WORDSIZE.
43911         * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
43912         Use "neg %eax".
43914         * time/mktime.c: Update copyright years.
43916 2012-05-22  Paul Eggert  <eggert@cs.ucla.edu>
43918         mktime: merge comment-quoting-style change from gnulib
43919         * time/mktime.c: Quote 'like this' in comments.
43920         The GNU coding standards suggest that we no longer quote `like this',
43921         as "`" and "'" are typically rendered asymmetrically nowadays.
43922         The typical gnulib style is to quote 'like this' when quoting
43923         code, and "like this" when quoting English.
43925         * time/mktime.c (compile-command): Add "-I.".
43927         mktime: merge mktime-internal.h change from gnulib
43928         * time/mktime.c [!_LIBC]: Include "mktime-internal.h".
43930         mktime: merge time_r change from gnulib
43931         * time/mktime.c [!_LIBC]: Do not include "time_r.h".
43933         mktime: merge DEBUG change from gnulib
43934         * time/mktime.c (mktime) [DEBUG]: #undef before #define-ing, in
43935         case system <time.h> has a #define.
43937         mktime: merge <sys/types.h> change from gnulib
43938         * time/mktime.c: Do not include <sys/types.h>; no longer needed,
43939         since <time.t> is now guaranteed to define time_t.
43941         mktime: merge HAVE_CONFIG_H change from gnulib
43942         * time/mktime.c: Include <config.h> if !_LIBC, not if HAVE_CONFIG_H.
43944 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
43946         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_SET_ERRNO):
43947         Use "neg %eax".
43949         * sysdeps/unix/sysv/linux/bits/resource.h (RLIM_INFINITY): Use
43950         __rlim_t cast.
43951         (struct rusage): Use anonymous union to pad each field to
43952         __syscall_slong_t.
43954 2012-05-21  David S. Miller  <davem@davemloft.net>
43956         * Makefules (o-iterator): Remove .s cases.
43957         (compile-command.s): Delete.
43958         (COMPILE.s): Delete.
43959         * sysdeps/unix/make-syscalls.sh: Remove .s file tests.
43961 2012-05-21  Joseph Myers  <joseph@codesourcery.com>
43963         * configure.in (libc_cv_predef_stack_protector): Only consider
43964         "foobar" and "__stack_chk_fail" lines in libc_undefs.
43965         * configure: Regenerated.
43967 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
43969         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_SET_ERRNO):
43970         New macro.  Use R*LP on int and pointer.
43971         (SYSCALL_ERROR_HANDLER): Use SYSCALL_SET_ERRNO.
43972         * sysdeps/unix/sysv/linux/x86_64/x32/lseek.S: New file.
43973         * sysdeps/unix/sysv/linux/x86_64/x32/llseek.S: Likewise.
43974         * sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h: Likewise.
43976         * sysdeps/gnu/bits/utmp.h (struct lastlog): Check
43977         [__WORDSIZE_TIME64_COMPAT32] instead of
43978         [__WORDSIZE == 64 && __WORDSIZE_COMPAT32].
43979         (struct utmp): Likewise.
43980         * sysdeps/gnu/bits/utmpx.h (struct utmpx): Likewise.
43981         * sysdeps/powerpc/powerpc32/bits/wordsize.h (__WORDSIZE_COMPAT32):
43982         Renamed to ...
43983         (__WORDSIZE_TIME64_COMPAT32): This.
43984         * sysdeps/powerpc/powerpc64/bits/wordsize.h: Likewise.
43985         * sysdeps/sparc/sparc32/bits/wordsize.h: Likewise.
43986         * sysdeps/sparc/sparc64/bits/wordsize.h: Likewise.
43987         * sysdeps/unix/sysv/linux/powerpc/bits/wordsize.h: Likewise.
43988         * sysdeps/x86_64/bits/wordsize.h (__WORDSIZE_COMPAT32): Removed.
43989         (__WORDSIZE_TIME64_COMPAT32): New macro.
43991 2012-05-21  Andreas Jaeger  <aj@suse.de>
43993         * sysdeps/i386/i686/multiarch/wcschr-c.c: Redefine libc_hidden_def
43994         only if [SHARED]. Add prototype for __wcschr_ia32.
43996 2012-05-21  Roland McGrath  <roland@hack.frob.com>
43998         * sysdeps/x86_64/setjmp.S [PTR_MANGLE] [__ILP32__]: Preserve high bits
43999         of %rbp unmolested in the jmp_buf while mangling the low bits.
44000         * sysdeps/x86_64/__longjmp.S [PTR_DEMANGLE] [__ILP32__]: Restore the
44001         unmolested high bits of %rbp while demangling the low bits.
44002         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Likewise.
44004 2012-05-21  Andreas Jaeger  <aj@suse.de>
44006         * include/shlib-compat.h (libc_sunrpc_symbol): New macro.
44007         * sunrpc/svc_simple.c: Use it for registerrpc.
44008         * sunrpc/xcrypt.c: Use it for passwd2des.
44010         * malloc/malloc.c: Include shlib-compat.h for SHLIB_COMPAT.
44012 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
44014         * sysdeps/unix/sysv/linux/bits/statvfs.h (_STATVFSBUF_F_UNUSED):
44015         Don't define if [__SYSCALL_WORDSIZE != 32].
44016         * sysdeps/x86_64/bits/wordsize.h (__SYSCALL_WORDSIZE):
44017         New macro.
44019 2012-05-21  Bruno Haible  <bruno@clisp.org>
44020             Andreas Jaeger  <aj@suse.de>
44022         [BZ #13691], Revert breakage of iconv() converter for TCVN-5712.
44023         * iconvdata/tcvn5712-1.c (BODY for FROM_LOOP): Don't consider
44024         inptr and inend for must_buffer_ch.
44025         * wcsmbs/tst-mbsnrtowcs.c: Remove file.
44026         * wcsmbs/Makefile (tests): Remove tst-mbsnrtowcs.
44027         * stdio-common/Makefile (tests): Remove bug15.
44028         (bug15-ENV): Remove macro.
44029         * stdio-common/bug15.c: Remove, we do not support vi_VN.TCVN5712-1
44030         anymore.
44032 2012-05-19  Andreas Jaeger  <aj@suse.de>
44033             Roland McGrath  <roland@hack.frob.com>
44035         * manual/contrib.texi: Completely rewritten. It contains now an
44036         alphabetical list of contributors and their contributions.
44038 2012-05-21  Richard Henderson  <rth@twiddle.net>
44040         * misc/getauxval.c (__getauxval): Use unsigned long int.
44041         * misc/sys/auxv.h: Include <sys/cdefs.h>.
44042         (getauxval): Use unsigned long int.
44044 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
44046         * sysdeps/unix/sysv/linux/x86_64/x32/syscalls.list: New file.
44048 2012-05-21  Roland McGrath  <roland@hack.frob.com>
44050         * malloc/malloc.c [!SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_16)]
44051         (MALLOC_ALIGNMENT): Set it to the greater of 2 * SIZE_SZ and
44052         __alignof__ (long double).
44054 2012-05-21  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
44056         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
44058 2012-05-20  Richard Henderson  <rth@twiddle.net>
44060         * misc/getauxval.c: New file.
44061         * misc/sys/auxv.h: New file.
44062         * misc/Makefile (headers): Add sys/auxv.h, bits/hwcap.h.
44063         (routines): Add getauxval.
44064         * misc/Versions (GLIBC_2.16): Add __getauxval, getauxval.
44065         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Add _dl_auxv.
44066         * elf/dl-sysdep.c (_dl_auxv): Remove.
44067         (_dl_sysdep_start, _dl_show_auxv): Use GLRO to access _dl_auxv.
44068         * elf/dl-support.c (_dl_auxv): New variable.
44069         (_dl_aux_init): Initialize it.
44070         * manual/startup.texi (Auxiliary Vector): New node.
44071         * sysdeps/generic/bits/hwcap.h: New file.
44072         * sysdeps/powerpc/bits/hwcap.h: New file, split out from ...
44073         * sysdeps/powerpc/sysdep.h: ... here.  Include it.
44074         * sysdeps/sparc/bits/hwcap.h: New file, split out from ...
44075         * sysdeps/sparc/sysdep.h: ... here.  Include it.
44076         * sysdeps/unix/sysv/linux/s390/bits/hwcap.h: New file.
44077         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Update.
44078         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
44079         Update.
44080         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist: Update.
44081         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Update.
44082         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Update.
44083         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Update.
44084         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Update.
44085         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Update.
44086         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Update.
44087         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Update.
44089 2012-05-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
44091         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
44093 2012-05-19  David S. Miller  <davem@davemloft.net>
44095         * sysdeps/sparc/fpu/libm-test-ulps: Update.
44097 2012-05-19  Joseph Myers  <joseph@codesourcery.com>
44099         [BZ #14123]
44100         * math/s_ccosh.c: Include <float.h>
44101         (__ccosh): Avoid internal overflow calculating sinh and cosh
44102         values before multiplying by sin and cos values.
44103         * math/s_ccoshf.c: Likewise.
44104         * math/s_ccoshl.c: Likewise.
44105         * math/s_csin.c: Likewise.
44106         * math/s_csinf.c: Likewise.
44107         * math/s_csinl.c: Likewise.
44108         * math/s_csinh.c: Likewise.
44109         * math/s_csinhf.c: Likewise.
44110         * math/s_csinhl.c: Likewise.
44111         * math/libm-test.inc (ccos_test): Add more tests.
44112         (ccosh_test): Likewise.
44113         (csin_test): Likewise.
44114         (csinh_test): Likewise.
44115         * sysdeps/i386/fpu/libm-test-ulps: Update.
44116         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44118 2012-05-19  H.J. Lu  <hongjiu.lu@intel.com>
44120         * sysdeps/unix/sysv/linux/wordsize-64/preadv.c: New file.
44121         * sysdeps/unix/sysv/linux/wordsize-64/pwritev.c: Likewise.
44123         * sysdeps/x86_64/x32/_itoa.h: Add comment.
44125 2012-05-19  Joseph Myers  <joseph@codesourcery.com>
44127         * sysdeps/powerpc/soft-fp/Makefile: Remove file.
44128         * sysdeps/powerpc/soft-fp/Subdirs: Likewise.
44129         * sysdeps/powerpc/soft-fp/Versions: Likewise.
44130         * sysdeps/powerpc/soft-fp/q_add.c: Likewise.
44131         * sysdeps/powerpc/soft-fp/q_cmp.c: Likewise.
44132         * sysdeps/powerpc/soft-fp/q_cmpe.c: Likewise.
44133         * sysdeps/powerpc/soft-fp/q_div.c: Likewise.
44134         * sysdeps/powerpc/soft-fp/q_dtoq.c: Likewise.
44135         * sysdeps/powerpc/soft-fp/q_feq.c: Likewise.
44136         * sysdeps/powerpc/soft-fp/q_fge.c: Likewise.
44137         * sysdeps/powerpc/soft-fp/q_fgt.c: Likewise.
44138         * sysdeps/powerpc/soft-fp/q_fle.c: Likewise.
44139         * sysdeps/powerpc/soft-fp/q_flt.c: Likewise.
44140         * sysdeps/powerpc/soft-fp/q_fne.c: Likewise.
44141         * sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
44142         * sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
44143         * sysdeps/powerpc/soft-fp/q_mul.c: Likewise.
44144         * sysdeps/powerpc/soft-fp/q_neg.c: Likewise.
44145         * sysdeps/powerpc/soft-fp/q_qtod.c: Likewise.
44146         * sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
44147         * sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
44148         * sysdeps/powerpc/soft-fp/q_qtos.c: Likewise.
44149         * sysdeps/powerpc/soft-fp/q_qtou.c: Likewise.
44150         * sysdeps/powerpc/soft-fp/q_qtoull.c: Likewise.
44151         * sysdeps/powerpc/soft-fp/q_sqrt.c: Likewise.
44152         * sysdeps/powerpc/soft-fp/q_stoq.c: Likewise.
44153         * sysdeps/powerpc/soft-fp/q_sub.c: Likewise.
44154         * sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
44155         * sysdeps/powerpc/soft-fp/q_util.c: Likewise.
44156         * sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
44157         * sysdeps/powerpc/soft-fp/sfp-machine.h: Likewise.
44159 2012-05-18  Andreas Jaeger  <aj@suse.de>
44161         * csu/.gitignore: Delete.
44163 2012-05-18  H.J. Lu  <hongjiu.lu@intel.com>
44165         * sysdeps/unix/sysv/linux/bits/timex.h: Include <bits/types.h>.
44166         (timex): Use __syscall_slong_t.
44168 2012-05-18  Andreas Jaeger  <aj@suse.de>
44169             Carlos O'Donell  <carlos_odonell@mentor.com>
44171         * manual/install.texi (Configuring and compiling): Update
44172         description about files modified in the source directory.
44173         * INSTALL: Regenerated.
44175 2012-05-18  H.J. Lu  <hongjiu.lu@intel.com>
44177         * sysdeps/unix/x86_64/sysdep.S: Use RAX_LP to access return
44178         value.  Use "or" to set return value to -1.
44179         * sysdeps/unix/sysv/linux/x86_64/sysdep.S: Use RAX_LP to
44180         negate return value.
44182 2012-05-18  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
44184         * sysdeps/powerpc/powerpc32/power4/Makefile (CFLAGS-wordcopy.c)
44185         (CFLAGS-memmove.c): remove -ftree-loop-linear which causes a build
44186         failure if the compiler has Graphite support disabled.
44187         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile (CFLAGS-mpa.c):
44188         Likewise.
44189         * sysdeps/powerpc/powerpc64/power4/Makefile (CFLAGS-wordcopy.c)
44190         (CFLAGS-memmove.c): Likewise.
44191         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile (CFLAGS-mpa.c):
44192         Likewise.
44194 2012-05-18  H.J. Lu  <hongjiu.lu@intel.com>
44196         * sysdeps/x86_64/x32/_itoa.h: New file.
44198         * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): Use
44199         getdents system call only if kernel and user dirents have the
44200         same d_ino and d_off.
44202         * stdio-common/_itoa.c: Check _ITOA_NEEDED instead of
44203         LLONG_MAX != LONG_MAX.
44204         (_itoa_word): Use _ITOA_WORD_TYPE on value.
44205         (_fitoa_word): Likewise.
44207         * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h: Fold copyright
44208         years.
44209         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Likewise.
44210         * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h: Likewise.
44211         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Likewise.
44213         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h: Don't
44214         include <bits/wordsize.h>.  Check __x86_64__ instead of
44215         __WORDSIZE.
44216         (sigcontext): Use "__uint64_t" instead of "unsigned long int"
44217         if __x86_64__ is defined.  Use anonymous union on fpstate.
44219         * sysdeps/unix/sysv/linux/x86_64/sys/user.h (user): Use
44220         anonymous union.
44222 2012-05-18  Andreas Schwab  <schwab@linux-m68k.org>
44224         * sysdeps/powerpc/powerpc32/dl-start.S (_dl_start_user): Use
44225         INTUSE on _dl_argv, and _rtld_local instead of _rtld_global.
44226         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S [IS_IN_rtld]:
44227         Refer to _rtld_local_ro instead of _rtld_global_ro.
44228         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S [IS_IN_rtld]:
44229         Likewise.
44230         * sysdeps/powerpc/powerpc64/__longjmp-common.S [IS_IN_rtld]:
44231         Likewise.
44232         * sysdeps/powerpc/powerpc64/setjmp-common.S [IS_IN_rtld]:
44233         Likewise.
44234         * sysdeps/powerpc/powerpc64/dl-trampoline.S [SHARED]: Likewise.
44235         * sysdeps/powerpc/powerpc64/dl-machine.h: Use _rtld_local instead
44236         of _rtld_global, and rtld_progname instead of _dl_argv[0].
44238         * sysdeps/powerpc/powerpc32/dl-machine.c
44239         (__elf_machine_runtime_setup) [PROF]: Don't reference
44240         _dl_prof_resolve.
44242 2012-05-18  Andreas Jaeger  <aj@suse.de>
44244         * sysdeps/x86_64/fpu/bits/mathinline.h (lrintf): Make inline
44245         function only available for GCCs before 3.4 since GCC 3.4
44246         introduced a builtin.
44247         (lrint): Likewise.
44248         (llrintf): Likewise.
44249         (llrint): Likewise.
44250         (fmaxf): Likewise.
44251         (fmax): Likewise.
44252         (fminf): Likewise.
44253         (fmin): Likewise.
44254         (rint): Likewise.
44255         (rintf): Likewise.
44256         (nearbyint): Likewise.
44257         (nearbyintf): Likewise.
44258         (ceil): Likewise.
44259         (ceilf): Likewise.
44260         (floor): Likewise.
44261         (floorf): Likewise.
44263 2012-05-17  H.J. Lu  <hongjiu.lu@intel.com>
44265         * sysdeps/unix/sysv/linux/pselect.c (data): Use __syscall_ulong_t
44266         on both fields and cast pointer to __syscall_ulong_t.
44268         * bits/types.h (__fsword_t): New type.
44269         * bits/typesizes.h (__FSWORD_T_TYPE): New macro.
44270         sysdeps/mach/hurd/bits/typesizes.h (__FSWORD_T_TYPE): Likewise.
44271         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
44272         (__FSWORD_T_TYPE): Likewise.
44273         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
44274         (__FSWORD_T_TYPE): Likewise.
44275         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
44276         (__FSWORD_T_TYPE): Likewise.
44277         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h
44278         (__FSWORD_T_TYPE): Likewise.
44279         * sysdeps/unix/sysv/linux/bits/statfs.h (statfs): Replace
44280         __SWORD_TYPE with __fsword_t.
44281         (statfs64): Likewise.
44283 2012-05-17  David S. Miller  <davem@davemloft.net>
44285         * crypt/sha512c-test.c (TIMEOUT): Increase to 32.
44287 2012-05-17  Andreas Jaeger  <aj@suse.de>
44289         * elf/tst-relsort1.c (do_test): Fix function declaration to avoid
44290         warning.
44292 2012-05-17  H.J. Lu  <hongjiu.lu@intel.com>
44294         * sysdeps/x86_64/tst-mallocalign1.c (test): Cast to unsigned long.
44296 2012-05-17  Andreas Jaeger  <aj@suse.de>
44298         * sysdeps/i386/dl-machine.h (elf_machine_rel): Declare refsym only
44299         when it is used.
44301 2012-05-17  Chris Metcalf  <cmetcalf@tilera.com>
44303         * stdio-common/bug22.c (TIMEOUT): Bump up from 30 to 60.
44305 2012-05-17  H.J. Lu  <hongjiu.lu@intel.com>
44307         * sysdeps/x86_64/Makefile (tests): Add tst-mallocalign1.
44308         * sysdeps/x86_64/tst-mallocalign1.c: New file.
44310 2012-05-17  Andreas Jaeger  <aj@suse.de>
44311             Carlos O'Donell  <carlos_odonell@mentor.com>
44313         [BZ #14059]
44314         * sysdeps/x86_64/multiarch/init-arch.h
44315         (bit_YMM_Usable): Rename to...
44316         (bit_AVX_Usable): ... this.
44317         (bit_FMA4_Usable): New macro.
44318         (bit_XMM_state): New macro.
44319         (bit_YMM_state): New macro.
44320         [__ASSEMBLER__] (index_YMM_Usable): Rename to...
44321         [__ASSEMBLER__] (index_AVX_Usable): ... this.
44322         [__ASSEMBLER__] (index_FMA4_Usable): New macro.
44323         (CPUID_OSXSAVE): New macro.
44324         (CPUID_AVX): New macro.
44325         (CPUID_FMA4): New macro.
44326         (index_YMM_Usable): Rename to...
44327         (index_AVX_Usable): ... this.
44328         (HAS_AVX): Use HAS_ARCH_FEATURE.
44329         (HAS_FMA4): Likewise.
44330         (HAS_YMM_USABLE): Remove.
44331         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
44332         Enable AVX or FMA4 IFF YMM and XMM states are usable and the features
44333         are present.
44334         * sysdeps/x86_64/multiarch/strcmp.S: Use bit_AVX_Usable.
44335         * sysdeps/i386/i686/multiarch/Makefile: Add test-multiarch to tests.
44336         * sysdeps/x86_64/multiarch/Makefile: Likewise.
44337         * sysdeps/i386/i686/multiarch/test-multiarch.c: New file.
44338         * sysdeps/x86_64/multiarch/test-multiarch.c: New file.
44340 2012-05-17  Chris Metcalf  <cmetcalf@tilera.com>
44342         * math/libm-test.c: Support platforms without multiple rounding modes.
44343         * math/bug-nextafter.c: Support platforms without FP exceptions.
44344         * math/bug-nexttoward.c: Likewise.
44345         * math/test-fenv.c: Likewise.
44346         * math/test-misc.c: Likewise.
44347         * stdlib/bug-getcontext.c: Likewise.
44349 2012-05-17  Andreas Jaeger  <aj@suse.de>
44351         * manual/examples/search.c (critter_cmp): Change signature to
44352         avoid warnings.
44353         * manual/string.texi (Collation Functions): Likewise.
44355 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
44357         * bits/types.h: Fold copyright years.
44358         * bits/typesizes.h: Likewise.
44359         * sysdeps/mach/hurd/bits/typesizes.h: Likewise.
44360         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h: Likewise.
44361         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h: Likewise.
44362         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h: Likewise.
44363         * time/time.h: Likewise.
44365 2012-05-16  Paul Pluzhnikov  <ppluzhnikov@google.com>
44367         [BZ #208]
44368         * malloc.c (int_mallinfo): Add parameter to accumulate statistics
44369         in instead of returning them.  Return void.
44370         (__libc_mallinfo): Accumulate over all arenas.
44371         (__malloc_stats): Adjust for change in int_mallinfo interface.
44373 2012-05-16  Roland McGrath  <roland@hack.frob.com>
44375         [BZ #10375]
44376         * configure.in (NM): Add AC_CHECK_TOOL for it.
44377         (libc_extra_cflags): New substituted variable.
44378         Check for -fstack-protector being used implicitly.
44379         * configure: Regenerated.
44380         * config.make.in (config-extra-cflags): New variable,
44381         gets @libc_extra_cflags@.
44382         * Makeconfig (CFLAGS): Add $(config-extra-cflags) near the front.
44384         [BZ #10375]
44385         * configure.in: Check for _FORTIFY_SOURCE being predefined.
44386         (CPPUNDEFS): New substituted variable; add -U_FORTIFY_SOURCE if needed.
44387         * configure: Regenerated.
44388         * config.make.in (CPPUNDEFS): New substituted variable.
44389         * Makeconfig (CPPFLAGS): Put $(CPPUNDEFS) at the beginning.
44390         * Makerules ($(stdio_lim:h=st)): Use $(CPPUNDEFS).
44391         * time/ctime.c: Don't #undef __OPTIMIZE__ and ctime.
44393 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
44395         * sysdeps/unix/sysv/linux/bits/mqueue.h: Include <bits/types.h>.
44396         (mq_attr): Use __syscall_slong_t.
44398 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
44400         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h (_STAT_VER_SVR4):
44401         Check __x86_64__ instead of __WORDSIZE.
44402         (_STAT_VER_LINUX): Likewise.
44403         (stat): Check __x86_64__ instead of __WORDSIZE.  Use
44404         __syscall_ulong_t and __syscall_slong_t.
44405         (stat64): Likewise.
44407 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
44409         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h: New file.
44411 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
44413         * sysdeps/unix/sysv/linux/x86_64/bits/ipctypes.h: New file.
44415 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
44417         * sysdeps/unix/sysv/linux/bits/ipc.h (ipc_perm): Use
44418         __syscall_ulong_t.
44420         * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Don't
44421         include <bits/wordsize.h>.  Check __x86_64__ instead of
44422         __WORDSIZE.
44423         (greg_t): Use "__extension__ long long int" if __x86_64__ is
44424         defined.
44425         (mcontext_t): Replace "unsigned long" with "unsigned long long".
44427         * sysdeps/unix/sysv/linux/x86_64/sys/user.h: Don't
44428         include <bits/wordsize.h>.  Check __x86_64__ instead of
44429         __WORDSIZE.
44430         (user_regs_struct): Use "__extension__ unsigned long long"
44431         instead of "unsigned long" if __x86_64__ is defined.
44432         (user): Likewise.  Pad after pointer field if __ILP32__ is
44433         defined.
44435 2012-05-16  Joseph Myers  <joseph@codesourcery.com>
44437         * configure.in (makeinfo): Require version 4.5 or later.  Allow
44438         versions 5 to 9.
44439         * configure: Regenerated.
44440         * manual/install.texi (texinfo): Increase version requirement to
44441         4.5 or later.
44442         * INSTALL: Regenerated.
44444         * include/stdc-predef.h (__STDC_ISO_10646__): Increase to 201103L.
44446 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
44448         * sysdeps/x86_64/x32/gmp-mparam.h: New file.
44450         * sysdeps/x86_64/x32/ffs.c: New file.
44452         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h (shmatt_t): Use
44453         __syscall_ulong_t.
44454         (shmid_ds): Add __unused1 and __unused2 only if __x86_64__ isn't
44455         defined.  Use __syscall_ulong_t.
44456         (shminfo): Use __syscall_ulong_t.
44457         (shm_info): Likewise.
44459         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semid_ds): Use
44460         __syscall_ulong_t.
44462         * sysdeps/unix/sysv/linux/x86_64/bits/msq.h: Don't include
44463         <bits/wordsize.h>.
44464         (msgqnum_t): Use __syscall_ulong_t.
44465         (msglen_t): Likewise.
44466         (msqid_ds): Check __x86_64__ instead of __WORDSIZE.  Use
44467         __syscall_ulong_t.
44469         * sysdeps/unix/sysv/linux/x86_64/bits/a.out.h: Don't include
44470         <bits/wordsize.h>.  Check __x86_64__ instead of __WORDSIZE.
44472         * sysdeps/unix/sysv/linux/x86_64/bits/siginfo.h: New file.
44474         * sysdeps/x86_64/x32/divdi3.c: New dummy file.
44475         * sysdeps/x86_64/x32/symbol-hacks.h: Likewise.
44477         * sysvipc/sys/msg.h (msgbuf): Replace long int with
44478         __syscall_slong_t.
44480         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Don't
44481         include <bits/wordsize.h>.  Check __x86_64__ instead of
44482         __WORDSIZE.
44484         * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h (elf_greg_t): Use
44485         "unsigned long long int" if __x86_64__ is defined.
44486         (elf_fpregset_t): Check __x86_64__ instead of __WORDSIZE.
44488         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Don't include
44489         <bits/wordsize.h>.  Check __x86_64__ instead of __WORDSIZE.
44490         (DR_CONTROL_RESERVED): Use ULL instead of UL suffix.
44492         * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h: Include
44493         <stdint.h>.
44494         (GET_PC): Cast to uintptr_t first.
44495         (GET_FRAME): Likewise.
44496         (GET_STACK): Likewise.
44498         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort.c: New file.
44499         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort64.c: Likewise.
44500         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko.c: Likewise.
44501         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko64.c: Likewise.
44502         * sysdeps/unix/sysv/linux/x86_64/x32/ftello.c: Likewise.
44503         * sysdeps/unix/sysv/linux/x86_64/x32/ftello64.c: Likewise.
44504         * sysdeps/unix/sysv/linux/x86_64/x32/ftw.c: Likewise.
44505         * sysdeps/unix/sysv/linux/x86_64/x32/ftw64.c: Likewise.
44506         * sysdeps/unix/sysv/linux/x86_64/x32/glob.c: Likewise.
44507         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos.c: Likewise.
44508         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos64.c: Likewise.
44509         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen.c: Likewise.
44510         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen64.c: Likewise.
44511         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos.c: Likewise.
44512         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos64.c: Likewise.
44513         * sysdeps/unix/sysv/linux/x86_64/x32/lockf.c: Likewise.
44514         * sysdeps/unix/sysv/linux/x86_64/x32/lockf64.c: Likewise.
44515         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c: Likewise.
44516         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c: Likewise.
44517         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c: Likewise.
44518         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c: Likewise.
44519         * sysdeps/unix/sysv/linux/x86_64/x32/scandir.c: Likewise.
44520         * sysdeps/unix/sysv/linux/x86_64/x32/scandir64.c: Likewise.
44521         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat.c: Likewise.
44522         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat64.c: Likewise.
44523         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile.c: Likewise.
44524         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile64.c: Likewise.
44525         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort.c: Likewise.
44526         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort64.c: Likewise.
44528 2012-05-16  Andreas Schwab  <schwab@linux-m68k.org>
44530         * Makerules (+depfiles): Also collect depfiles from .oS in
44531         $(extra-objs).
44532         * sysdeps/ieee754/ldbl-opt/Makefile (extra-objs): Add $(addsuffix
44533         .oS, $(libnldbl-routines)).
44535         * Makerules (native-compile-mkdep-flags): Define.
44536         * sunrpc/Makefile (extra-objs): Add $(addprefix
44537         cross-,$(rpcgen-objs)), don't add $(cross-rpcgen-objs).
44538         ($(cross-rpcgen-objs)): Use $(native-compile-mkdep-flags) instead
44539         of $(compile-mkdep-flags).  Depend on $(before-compile) instead of
44540         calling $(make-target-directory).
44542 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44544         * bits/types.h (__snseconds_t): Removed.
44545         * time/time.h (struct timespec): Replace __snseconds_t with
44546         __syscall_slong_t.
44547         * bits/typesizes.h (__SNSECONDS_T_TYPE): Removed.
44548         * sysdeps/mach/hurd/bits/typesizes.h (__SNSECONDS_T_TYPE):
44549         Likewise.
44550         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
44551         (__SNSECONDS_T_TYPE): Likewise.
44552         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
44553         (__SNSECONDS_T_TYPE): Likewise.
44554         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
44555         (__SNSECONDS_T_TYPE): Likewise.
44557 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44559         * sysdeps/mach/hurd/bits/typesizes.h
44560         (__SYSCALL_SLONG_TYPE): New macro.
44561         (__SYSCALL_ULONG_TYPE): Likewise.
44563 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44565         * bits/types.h (__syscall_slong_t): New type.
44566         (__syscall_ulong_t): Likewise.
44568         * bits/typesizes.h (__SYSCALL_SLONG_TYPE): New macro.
44569         (__SYSCALL_ULONG_TYPE): Likewise.
44570         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
44571         (__SYSCALL_SLONG_TYPE): Likewise.
44572         (__SYSCALL_ULONG_TYPE): Likewise.
44573         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
44574         (__SYSCALL_SLONG_TYPE): Likewise.
44575         (__SYSCALL_ULONG_TYPE): Likewise.
44576         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
44577         (__SYSCALL_SLONG_TYPE): Likewise.
44578         (__SYSCALL_ULONG_TYPE): Likewise.
44580 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44582         * sysdeps/unix/sysv/linux/x86_64/Makefile (gen-as-const-headers):
44583         Add sigaltstack-offsets.sym.
44584         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Include
44585         <sigaltstack-offsets.h>.
44586         (CALL_FAIL): Use RSP_LP to operate on stack.  Use RDI_LP on
44587         longjmp_msg pointer.
44588         (____longjmp_chk): Use R8_LP and RDX_LP on SP and PC.  Use
44589         R*_LP, sizeSS, oSS_FLAGS, oSS_SP and oSS_SIZE for alternate
44590         signal stack.
44591         * sysdeps/unix/sysv/linux/x86_64/sigaltstack-offsets.sym: New.
44593 2012-05-15  Joseph Myers  <joseph@codesourcery.com>
44595         * elf/stackguard-macros.h: Remove file.
44596         * sysdeps/generic/stackguard-macros.h: New file.
44597         * sysdeps/i386/stackguard-macros.h: Likewise.
44598         * sysdeps/powerpc/powerpc32/stackguard-macros.h: Likewise.
44599         * sysdeps/powerpc/powerpc64/stackguard-macros.h: Likewise.
44600         * sysdeps/s390/s390-32/stackguard-macros.h: Likewise.
44601         * sysdeps/s390/s390-64/stackguard-macros.h: Likewise.
44602         * sysdeps/sparc/sparc32/stackguard-macros.h: Likewise.
44603         * sysdeps/sparc/sparc64/stackguard-macros.h: Likewise.
44604         * sysdeps/x86_64/stackguard-macros.h: Likewise.
44605         * nptl/tst-stackguard1.c: Include <stackguard-macros.h> not
44606         <elf/stackguard-macros.h>.
44608         [BZ #14109]
44609         * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h (elf_vrreg_t): Use
44610         __aligned__ in attribute.
44611         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h (__psw_t): Likewise.
44612         (gregset_t): Likewise.
44614 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44616         * sysdeps/x86_64/Implies (wordsize-64): Moved to ....
44617         * sysdeps/x86_64/64/Implies-after: Here.  New file.
44618         * sysdeps/x86_64/x32/Implies-after: New file.
44620 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44622         * sysdeps/x86_64/dl-trampoline.h: Use R*_LP to pass arguments
44623         and access return value for _dl_profile_fixup.  Use R10_LP to
44624         load frame size.
44626 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44628         * sysdeps/unix/sysv/linux/x86_64/x32/init-first.c: New.
44630 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44632         * sysdeps/x86_64/sysdep.h: Allowed to be include more than once.
44633         * sysdeps/x86_64/x32/sysdep.h: New file.
44635 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44637         * sysdeps/x86_64/__longjmp.S: Use R*_LP on SP and PC.
44638         * sysdeps/x86_64/setjmp.S: Likewise.
44640 2012-05-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
44642         * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c: New file.
44643         * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c: New file.
44644         * sysdeps/ieee754/dbl-64/e_log2.c: Fixing indents.
44645         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise and also
44646         remove unused global constant.
44648 2012-05-15  Chris Metcalf  <cmetcalf@tilera.com>
44650         * sysdeps/unix/sysv/linux/getsysstats.c: Remove duplicate
44651         include of <not-cancel.h>.
44653 2012-05-15  Roland McGrath  <roland@hack.frob.com>
44655         * nscd/nscd-client.h (__nscd_acquire_maplock): Fix formatting.
44657 2012-05-15  Jeff Law  <law@redhat.com>
44658             Andreas Jaeger  <aj@suse.de>
44660         [BZ #13594]
44661         * nscd/nscd-client.h (__nscd_acquire_maplock): New function, split
44662         out from...
44663         * nscd/nscd_helper.c (__nscd_get_map_ref): ... here.
44664         * nscd/nscd-client.h: Add __nscd_acquire_maplock.
44665         * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp): Add locking to
44666         code changing __hst_map_handle.map.
44668 2012-05-15  Roland McGrath  <roland@hack.frob.com>
44670         * configure.in (sysnames): Look for Implies-before and Implies-after
44671         files.
44672         * configure: Regenerated.
44674 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44676         * sysdeps/unix/sysv/linux/x86_64/sigaction.c (RESTORE2): Replace
44677         8-byte data alignment with LP_SIZE alignment.
44679 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44681         * sysdeps/unix/sysv/linux/x86_64/clone.S: Load pointer to TID
44682         into R10_LP.
44684 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44686         * sysdeps/unix/sysv/linux/x86_64/x32/dl-cache.h: New.
44688 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44690         * sysdeps/unix/sysv/linux/x86_64/x32/Makefile: New file.
44691         * sysdeps/unix/sysv/linux/x86_64/x32/getcpu.c: Likewise.
44692         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu-static.c:
44693         Likewise.
44694         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Likewise.
44696 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44698         * sysdeps/x86_64/stackinfo.h (stackinfo_get_sp): Use RSP_LP.
44699         (stackinfo_sub_sp): Likewise.
44701 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44703         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Load pointers into
44704         RAX_LP.
44706 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44708         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Load cache sizes
44709         into R*_LP.
44711 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44713         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Load cache
44714         sizes into R*_LP.
44716 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44718         * sysdeps/x86_64/strcmp.S: Load pointers into R*_LP.
44720 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44722         * sysdeps/x86_64/memcpy.S: Load __x86_64_data_cache_size_half
44723         into R11_LP and load __x86_64_shared_cache_size_half into
44724         R8_LP.
44726 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
44728         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Load cache size into
44729         R8_LP.
44731 2012-05-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
44733         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: New file. Optimized
44734         logb for POWER7.
44735         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbf.c: New file. Optimized
44736         logbf for POWER7.
44737         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c: New file. Optimized
44738         logbl for POWER7.
44739         * sysdeps/powerpc/powerpc64/power7/fpu/s_logb.c: New file. Use
44740         powerpc32/power7/fpu/s_logb.c via #include.
44741         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbf.c: New file. Use
44742         powerpc32/power7/fpu/s_logbf.c via #include.
44743         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbl.c: New file. Use
44744         powerpc32/power7/fpu/s_logbl.c via #include.
44746 2012-05-15  Joseph Myers  <joseph@codesourcery.com>
44748         * README.libm: Remove file.
44750 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
44752         * sysdeps/x86_64/start.S: Simulate popping 4-byte argument
44753         count for x32.  Use R*_LP and omit operand-size suffix.
44755 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
44757         * shlib-versions: Move x86_64-.*-linux.* entries to ...
44758         * sysdeps/x86_64/64/shlib-versions: Here.  New file.
44759         * sysdeps/x86_64/x32/shlib-versions: New file.
44761 2012-05-14  Roland McGrath  <roland@hack.frob.com>
44763         * sysdeps/unix/sysv/linux/dl-osinfo.h (dl_fatal): Function removed.
44764         * elf/rtld.c (dl_main) [DL_SYSDEP_OSCHECK]:
44765         Use _dl_fatal_printf instead.
44767 2012-05-14  Joseph Myers  <joseph@codesourcery.com>
44769         * sysdeps/unix/sysv/linux/configure.in (minimum_kernel): Always
44770         set if not set by the user.  Do not allow for being unset.
44771         * sysdeps/unix/sysv/linux/configure: Regenerated.
44773 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
44775         * sysdeps/x86_64/dl-machine.h (elf_machine_load_address): Remove
44776         the `q' suffix from lea and replace .quad with ASM_ADDR.
44778 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
44780         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PTR_MANGLE): Remove
44781         the `q' suffix from xor/rol instructions.  Use $2*LP_SIZE+1
44782         instead of $17.
44783         (PTR_DEMANGLE): Likewise.
44785 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
44787         * sysdeps/x86_64/sysdep.h (LP_SIZE): New macro.
44788         (LP_OP): Likewise.
44789         (ASM_ADDR): Likewise.
44790         (RAX_LP): Likewise.
44791         (RBP_LP): Likewise.
44792         (RBX_LP): Likewise.
44793         (RCX_LP): Likewise.
44794         (RDI_LP): Likewise.
44795         (RSI_LP): Likewise.
44796         (RSP_LP): Likewise.
44797         (R8_LP): Likewise.
44798         (R9_LP): Likewise.
44799         (R10_LP): Likewise.
44800         (R10_LP): Likewise.
44801         (R11_LP): Likewise.
44802         (R12_LP): Likewise.
44803         (R13_LP): Likewise.
44804         (R14_LP): Likewise.
44805         (R15_LP): Likewise.
44807 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
44809         * sysdeps/x86_64/x32/dl-machine.h: New file.
44811 2012-05-14  Andreas Jaeger  <aj@suse.de>
44813         * manual/Makefile (subdir): Remove export of subdir.
44814         (all): Remove target.
44815         (.PHONY): Remove all from list.
44816         (mkinstalldirs): Remove.
44817         (.PHONY): Remove installdirs from list.
44818         ($(inst_infodir)/libc.info): Use make-target-directory.
44819         (installdirs): Remove.
44820         (subdir_%): Remove.
44821         (glibc-targets): Remove.
44822         (lib): Remove.
44823         (stubs): Remove.
44824         ($(objpfx)stubs ../po/manual.pot): Remove.
44825         ($(objpfx)stamp%): Remove.
44826         (make-target-directory): Remove.
44827         (subdir_install): Remove.
44828         (routines): Remove.
44829         (aux): Remove.
44830         (sources): Remove.
44831         (objects): Remove.
44832         (headers): Remove.
44834         [BZ #13750]
44835         * manual/.gitignore: Remove, it's not needed anymore.
44836         * manual/libc-texinfo.sh: Pass OUTDIR as extra argument, create
44837         all files in it.
44838         * manual/Makefile (dvi, pdf, info, html): Depend on files in build
44839         directory.
44840         (texis): Renamed to $(objpfx)texis.
44841         (texis-path): New, contains path to generated files.
44842         (chapters.%): Use texis-path for complete path, add extra argument
44843         libc-texinfo.sh.
44844         (libc.dvi, libc.pdf, libc.info, libc.pdf): Add $(objfpx) as prefix.
44845         (libc/index.html, summary.texi): Add $(objpfx) as prefix.
44846         (summary,texi, stamp-summary): Use complete path of
44847         files. Generate files in build dir.
44848         (dir-add.texi): Build in build dir.
44849         (libm-err.texi,stamp-libm-err): Likewise.
44850         (version.texi, stamp-version): Likewise.
44851         (.%c.texi): Likewise.
44852         (%.info,%.dvi,%.pdf): Add $(objpfx) as prefix, build in build dir.
44853         (mostlyclean): Remove target.
44854         (realclean): Remove target.
44855         (generated): Add new variable with contents from mostlyclean and
44856         realclean, remove entries duplicated in common-mostlyclean, add
44857         stamp-libm-err and stamp-version.
44858         (generated-dirs): Add libc directory.
44859         ($(inst_infodir)/libc.info): Install files from build dir.
44861         * manual/install.texi (Configuring and compiling): Adjust since
44862         the info files are not part of the tar ball anymore.
44864 2012-05-14  Andreas Jaeger  <aj@suse.de>
44866         * sysdeps/unix/sysv/linux/getcwd.c (__getcwd): Remove unused
44867         variable.
44869 2012-05-14  Joseph Myers  <joseph@codesourcery.com>
44871         [BZ #13717]
44872         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel): Set
44873         to 2.2.0 where earlier.
44874         * sysdeps/unix/sysv/linux/configure: Regenerated.
44875         * sysdeps/unix/sysv/linux/getcwd.c [!__ASSUME_GETCWD_SYSCALL]:
44876         Remove conditional code.
44877         [__ASSUME_GETCWD_SYSCALL]: Make code unconditional.
44878         * sysdeps/unix/sysv/linux/i386/chown.c [!__ASSUME_LCHOWN_SYSCALL]:
44879         Remove conditional code.
44880         [!__NR_lchown]: Likewise.
44881         [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
44882         [__NR_lchown]: Likewise.
44883         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Remove
44884         comment referencing __ASSUME_LCHOWN_SYSCALL.
44885         * sysdeps/unix/sysv/linux/i386/sigaction.c
44886         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
44887         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
44888         * sysdeps/unix/sysv/linux/if_index.c [!__ASSUME_SIOCGIFNAME]:
44889         Remove conditional code.
44890         [__ASSUME_SIOCGIFNAME ]: Make code unconditional.
44891         (__protocol_available): Remove #if 0 code.
44892         * sysdeps/unix/sysv/linux/ifreq.c [!__ASSUME_SIOCGIFNAME]: Remove
44893         conditional code.
44894         [__ASSUME_SIOCGIFNAME]: Make code unconditional.
44895         * sysdeps/unix/sysv/linux/kernel-features.h
44896         (__ASSUME_GETCWD_SYSCALL): Don't define.
44897         (__ASSUME_REALTIME_SIGNALS): Likewise.
44898         (__ASSUME_PREAD_SYSCALL): Likewise.
44899         (__ASSUME_PWRITE_SYSCALL): Likewise.
44900         (__ASSUME_POLL_SYSCALL): Likewise.
44901         (__ASSUME_LCHOWN_SYSCALL): Likewise.
44902         (__ASSUME_SETRESUID_SYSCALL): Define for all kernel versions for
44903         non-SPARC.
44904         (__ASSUME_SIOCGIFNAME): Don't define.
44905         (__ASSUME_MSG_NOSIGNAL): Likewise.
44906         (__ASSUME_SENDFILE): Define unconditionally.
44907         (__ASSUME_PROC_SELF_FD_SYMLINK): Don't define.
44908         * sysdeps/unix/sysv/linux/poll.c [!__ASSUME_POLL_SYSCALL]: Remove
44909         conditional code.
44910         [__ASSUME_POLL_SYSCALL]: Make code unconditional.
44911         * sysdeps/unix/sysv/linux/powerpc/chown.c (__chown)
44912         [!__ASSUME_LCHOWN_SYSCALL]: Remove conditional code.
44913         (__chown) [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
44914         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat)
44915         [!__ASSUME_LCHOWN_SYSCALL]: Remove conditional code.
44916         (fchownat) [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
44917         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c
44918         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
44919         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
44920         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c
44921         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
44922         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
44923         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c
44924         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
44925         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
44926         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c
44927         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
44928         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
44929         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c
44930         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
44931         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
44932         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c
44933         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
44934         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
44935         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c
44936         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
44937         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
44938         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c
44939         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
44940         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
44941         * sysdeps/unix/sysv/linux/pread.c [!__ASSUME_PREAD_SYSCALL]:
44942         Remove conditional code.
44943         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
44944         * sysdeps/unix/sysv/linux/pread64.c [!__ASSUME_PREAD_SYSCALL]:
44945         Remove conditional code.
44946         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
44947         * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_internal)
44948         [__LINUX_KERNEL_VERSION < 131443]: Remove conditional code.
44949         * sysdeps/unix/sysv/linux/pwrite.c [!__ASSUME_PWRITE_SYSCALL]:
44950         Remove conditional code.
44951         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
44952         * sysdeps/unix/sysv/linux/pwrite64.c [!__ASSUME_PWRITE_SYSCALL]:
44953         Remove conditional code.
44954         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
44955         * sysdeps/unix/sysv/linux/sh/pread.c [!__ASSUME_PREAD_SYSCALL]:
44956         Remove conditional code.
44957         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
44958         * sysdeps/unix/sysv/linux/sh/pread64.c [!__ASSUME_PREAD_SYSCALL]:
44959         Remove conditional code.
44960         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
44961         * sysdeps/unix/sysv/linux/sh/pwrite.c [!__ASSUME_PWRITE_SYSCALL]:
44962         Remove conditional code.
44963         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
44964         * sysdeps/unix/sysv/linux/sh/pwrite64.c
44965         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
44966         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
44967         * sysdeps/unix/sysv/linux/sigaction.c
44968         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
44969         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
44970         * sysdeps/unix/sysv/linux/sigpending.c
44971         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
44972         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
44973         * sysdeps/unix/sysv/linux/sigprocmask.c
44974         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
44975         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
44976         * sysdeps/unix/sysv/linux/sigsuspend.c
44977         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
44978         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
44979         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c
44980         (__libc_missing_rt_sigs): Remove.
44981         (__libc_sigaction) [__NR_rt_sigaction]: Make code unconditional.
44982         (__libc_sigaction): Do not handle ENOSYS from rt_sigaction.
44983         * sysdeps/unix/sysv/linux/syslog.c [!__ASSUME_MSG_NOSIGNAL]:
44984         Remove conditional code.
44985         [__ASSUME_MSG_NOSIGNAL]: Make code unconditional.
44986         * sysdeps/unix/sysv/linux/testrtsig.h (kernel_has_rtsig): Always
44987         return 1.
44988         * sysdeps/unix/sysv/linux/ttyname.c (ttyname)
44989         [!__ASSUME_PROC_SELF_FD_SYMLINK]: Remove conditional code.
44990         * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r)
44991         [!__ASSUME_PROC_SELF_FD_SYMLINK]: Likewise.
44993 2012-05-14  Andreas Jaeger  <aj@suse.de>
44995         * sysdeps/i386/fpu/bits/mathinline.h (__pow2): Remove,
44996         it's not used in glibc.
44997         (__coshm1): Likewise.
44998         (__acosh1p): Likewise.
44999         (__sgn): Likewise.
45001         * manual/string.texi (Copying and Concatenation): Add missing
45002         variable in concat example.
45003         Reported by David C. Rankin <drankinatty@suddenlinkmail.com>.
45005 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
45007         [BZ #14103]
45008         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Replace
45009         __builtin_clzl with __builtin_clzll.
45011 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
45013         [BZ #14104]
45014         * sysdeps/unix/sysv/linux/check_pf.c (cache): Use
45015         libc_freeres_ptr.
45017 2012-05-14  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
45019         * sysdeps/i386/i686/fpu/multiarch/Makefile: New file.
45020         * sysdeps/i386/i686fpu/multiarch/e_expf.c: New file.
45021         * sysdeps/i386/i686fpu/multiarch/e_expf-ia32.S: New file.
45022         * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: New file.
45024 2012-05-14  Mike Frysinger  <vapier@gentoo.org>
45026         * NEWS: Update ia64 info.
45028 2012-05-12  Andreas Schwab  <schwab@linux-m68k.org>
45030         * sysdeps/powerpc/memmove.c (MEMMOVE): Don't return a value if
45031         used as bcopy.
45033 2012-05-12  Thomas Schwinge  <thomas@codesourcery.com>
45035         * io/dup3.c (dup3): Rename to __dup3, add weak alias for dup3.
45036         * sysdeps/unix/syscalls.list (dup3): Likewise.
45037         * libio/freopen.c (freopen): Invoke __dup3 instead of dup3.
45038         * libio/freopen64.c (freopen64): Invoke __dup3 instead of dup3.
45040 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
45042         * elf/stackguard-macros.h (STACK_CHK_GUARD) [__x86_64__]: Use
45043         "%c1" with "i" (offsetof (tcbhead_t, stack_guard)).
45045 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
45047         * elf/tls-macros.h (TLS_LE): Use mov instead of movq to load
45048         thread pointer.
45049         (TLS_IE): Use mov/add instead of movq/addq to load thread
45050         pointer.
45051         (TLS_GD_PREFIX): New.
45052         (TLS_GD): Use it.
45054 2012-05-11  David S. Miller  <davem@davemloft.net>
45056         * sysdeps/sparc/fpu/bits/fenv.h (__fenv_stfsr): Add __volatile__.
45057         * sysdeps/sparc/fpu/fpu_control.h (_FPU_GETCW): Likewise.
45058         (_FPU_SETCW): Likewise.
45060 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
45062         * sysdeps/x86_64/dl-trampoline.S: Check if RTLD_SAVESPACE_SSE
45063         is 32-byte aligned.
45065 2012-05-11  Andreas Schwab  <schwab@linux-m68k.org>
45067         [BZ #11837]
45068         * iconvdata/gb18030.c: Update tables.
45069         (BODY for FROM_LOOP): Update.  Handle two-byte encoded non-BMP
45070         characters specially.
45071         (BODY for TO_LOOP): Add encoding of missing ranges.
45073 2012-05-11  Thomas Schwinge  <thomas@codesourcery.com>
45075         [BZ #13673]
45076         * sysdeps/mach/hurd/accept4.c: Replace FSF snail mail address with URL.
45077         * sysdeps/mach/hurd/dup3.c: Likewise.
45078         * sysdeps/mach/hurd/readlinkat.c: Likewise.
45079         * sysdeps/powerpc/memmove.c:: Likewise.
45081 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
45083         * sysdeps/x86_64/dl-machine.h (elf_machine_rela_relative): Handle
45084         R_X86_64_RELATIVE64 only if RTLD_BOOTSTRAP isn't defined.
45086 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
45088         * elf/elf.h (R_X86_64_RELATIVE64): New.
45089         (R_X86_64_NUM): Updated.
45090         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Handle
45091         R_X86_64_RELATIVE64.  Always use Elf64_Addr with R_X86_64_64.
45092         (elf_machine_rela_relative): Handle R_X86_64_RELATIVE64.
45093         * sysdeps/x86_64/Makefile (tests): Add tst-quad1 tst-quad2
45094         tst-quad1pie tst-quad2pie
45095         (modules-names): Add tst-quadmod1 tst-quadmod2.
45096         ($(objpfx)tst-quad1): New dependency.
45097         ($(objpfx)tst-quad2): Likewise.
45098         ($(objpfx)tst-quad1pie): Likewise.
45099         ($(objpfx)tst-quad2pie): Likewise.
45100         * sysdeps/x86_64/tst-quad1.c: New file.
45101         * sysdeps/x86_64/tst-quad1pie.c: New file.
45102         * sysdeps/x86_64/tst-quad2.c: Likewise.
45103         * sysdeps/x86_64/tst-quad2pie.c: Likewise.
45104         * sysdeps/x86_64/tst-quadmod1.S: Likewise.
45105         * sysdeps/x86_64/tst-quadmod1pie.S: Likewise.
45106         * sysdeps/x86_64/tst-quadmod2.S: Likewise.
45107         * sysdeps/x86_64/tst-quadmod2pie.S: Likewise.
45109 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
45111         * io/fcntl.h (mode_t, off_t, pid_t): Define types.
45112         (__mode_t_defined, __off_t_defined, __pid_t_defined): Define macros.
45113         * streams/stropts.h (t_scalar_t): Define type.
45115         * sysdeps/generic/paths.h (_PATH_MAN): Set to "/usr/share/man"
45116         (_PATH_PRESERVE): Set to "/var/lib".
45117         (_PATH_RWHODIR): Set to "/var/spool/rwho".
45119         * sysdeps/mach/hurd/openat.c (__openat): Set type of MODE to mode_t
45120         instead of int.
45122         * sysdeps/mach/hurd/xmknodat.c (__xmknodat): Deallocate NODE port only
45123         if __dir_mkfile succeeded.
45125         * sysdeps/mach/hurd/dup3.c: Lock _hurd_dtable_lock before
45126         checking for _hurd_dtablesize.  Unlock it right after having
45127         finished _hurd_dtable allocation.
45129 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
45131         * sysdeps/mach/hurd/configure.in: Remove warning for --prefix=[...].
45132         * sysdeps/mach/hurd/configure: Regenerated.
45133         * sysdeps/unix/sysv/linux/configure.in: Move --prefix=/usr
45134         special-casing to...
45135         * sysdeps/gnu/configure.in: ... this new file.
45136         * sysdeps/unix/sysv/linux/configure: Regenerated.
45137         * sysdeps/gnu/configure: New generated file.
45139         * sysdeps/mach/hurd/bits/stat.h (struct stat): Align to what is done
45140         for Linux: use nsec instead of usec, as well as:
45141         [__USE_MISC || __USE_XOPEN2K8] (st_atim, st_mtim, st_ctim): New
45142         members of type struct timespec.
45143         [__USE_MISC || __USE_XOPEN2K8] (st_atime, st_mtime, st_ctime):
45144         New macros.
45145         (struct stat64): Likewise.
45146         (_STATBUF_ST_NSEC): New macro.
45147         * sysdeps/mach/hurd/xstatconv.c (xstat64_conv): Adapt to that.
45149         * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use
45150         __strtoul_internal rather than strtoul.
45152 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
45154         * hurd/hurdsock.c (_hurd_socket_server): Check for negative domains,
45155         and reject them.
45157 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
45159         * sysdeps/mach/hurd/setresgid.c (__setresgid): Handle the -1 case,
45160         which preserves existing values.
45161         * sysdeps/mach/hurd/setresuid.c (__setresuid): Likewise.
45163 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
45165         * hurd/hurdselect.c (_hurd_select): Return EINVAL for negative
45166         TIMEOUT values.  Return EINVAL for NFDS values either negative or
45167         greater than FD_SETSIZE.
45169 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
45171         * sysdeps/mach/hurd/brk.c (_hurd_set_brk): When more space needs to be
45172         allocated, call __vm_protect to finish enabling the existing space, and
45173         pass a copy of _hurd_data_end instead of PAGEBRK to __vm_allocate to
45174         allocate the remainder.
45176 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
45178         * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Check also for a null
45179         address port.  Set ADDR_LEN to 0 when not filling ADDRARG.
45181 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
45183         * sysdeps/mach/hurd/readlinkat.c: New file, heavily derived from
45184         sysdeps/mach/hurd/readlink.c.
45186         * posix/tst-sysconf.c (posix_options): Only use
45187         _POSIX_PRIORITIZED_IO, _POSIX_PRIORITY_SCHEDULING, and
45188         _POSIX_SYNCHRONIZED_IO when they are defined
45189         * sysdeps/mach/hurd/bits/posix_opt.h:
45190         (_POSIX_PRIORITY_SCHEDULING): Undefine macro.
45191         (_XOPEN_REALTIME): Undefine macro.
45192         (_XOPEN_REALTIME_THREADS): Undefine macro.
45193         (_XOPEN_SHM): Undefine macro.
45194         [__USE_XOPEN2K8] (_POSIX_THREAD_ROBUST_PRIO_INHERIT): Define
45195         macro to -1.
45196         [__USE_XOPEN2K8] (_POSIX_THREAD_ROBUST_PRIO_PROTECT): Define
45197         macro to -1.
45198         (_POSIX_ASYNC_IO): Undefine macro.
45199         (_POSIX_PRIORITIZED_IO): Undefine macro.
45200         (_POSIX_SPIN_LOCKS): Define macro to -1.
45202         * bits/sigaction.h [__USE_XOPEN2K8]: Define SA_RESTART,
45203         SA_NODEFER, SA_RESETHAND.
45204         * sysdeps/mach/hurd/bits/fcntl.h [__USE_XOPEN2K8]: Define
45205         O_NOFOLLOW, O_DIRECTORY, O_CLOEXEC, F_GETOWN, F_SETOWN,
45206         F_DUPFD_CLOEXEC.
45208 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
45210         * elf/Makefile (pldd-modules): Define unconditionally.
45212 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
45214         * sysdeps/mach/hurd/opendir.c (__opendirat): New function.
45216 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
45218         * hurd/hurdchdir.c (_hurd_change_directory_port_from_name):
45219         Return ENOENT when name is empty.
45220         * sysdeps/mach/hurd/chroot.c (chroot): Likewise.
45222 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
45224         * include/libc-symbols.h [NO_HIDDEN] (hidden_nolink): New macro.
45226         * nss/makedb.c (MAP_POPULATE): If not defined, define to zero.
45228 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
45230         Fix mlock in all cases except non-readable pages.
45231         * sysdeps/mach/hurd/mlock.c (mlock): Give VM_PROT_READ
45232         instead of VM_PROT_ALL as parameter to __vm_wire function.
45234         * sysdeps/mach/hurd/mkdir.c: Include <string.h>.
45235         (__mkdir): When path is `/', just fail with EEXIST.
45236         * sysdeps/mach/hurd/mkdirat.c: Likewise.
45238 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
45240         * nss/makedb.c: Include <sys/param.h> (for MAX and roundup), and
45241         <sys/uio.h> (for writev).
45242         * nss/nss_db/db-initgroups.c: Include <limits.h> (for ULONG_MAX),
45243         and <sys/param.h> (for MIN).
45245 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
45247         * sysdeps/mach/nanosleep.c: Return EINVAL for invalid values of
45248         REQUESTED_TIME.  Properly set the remaining time and return EINTR
45249         if interrupted.
45251 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
45253         * sysdeps/mach/hurd/Makefile ($(common-objpfx)linkobj/libc.so):
45254         Depend on against $(link-rpcuserlibs).
45256 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
45258         * sysdeps/generic/ldsodefs.h [LIBC_STACK_END_NOT_RELRO]
45259         (__libc_stack_end): Do not use attribute_relro.
45260         * sysdeps/mach/hurd/dl-sysdep.h (LIBC_STACK_END_NOT_RELRO): Define.
45261         * sysdeps/mach/hurd/i386/init-first.c (init): Update __libc_stack_end
45262         to libthread-provided value.
45263         * sysdeps/mach/hurd/dl-sysdep.c (__libc_stack_end): Do not use
45264         attribute_relro.
45266 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
45268         [BZ #3748]
45269         * bits/libc-lock.h (__libc_once_get): New macro.
45270         * sysdeps/mach/bits/libc-lock.h: Likewise.
45271         * sysdeps/mach/hurd/bits/libc-lock.h: Likewise.
45272         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Use __libc_once_get
45273         instead of using implementation details.
45275         * libio/fileops.c: Unconditionally include <kernel-features.h>.
45276         * libio/freopen.c: Likewise.
45277         * libio/freopen64.c: Likewise.
45278         * misc/syslog.c: Likewise.
45279         * nscd/connections.c: Likewise.
45280         * nscd/netgroupcache.c: Likewise.
45281         * sysdeps/posix/getcwd.c: Likewise.
45283 2012-05-10  Roland McGrath  <roland@hack.frob.com>
45285         * math/w_ilogbf.c: Add #include <limits.h>.
45287 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
45289         * sysdeps/mach/hurd/setitimer.c (setitimer_locked): Use common exit
45290         path instead of returning without unlocking.
45292         * sysdeps/mach/hurd/bits/ioctls.h (_IOIW): New macro for
45293         immediate-write ioctls.
45294         * sysdeps/mach/hurd/ioctl.c: Handle cases with no arguments.
45296 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
45298         * sysdeps/mach/hurd/i386/init-first.c (init): Use
45299         __builtin_frame_address instead of making assumptions about the
45300         location of the return address relative to DATA.  Force early load of
45301         the return address.
45302         (_dl_init_first, doinit1 in doinit in _hurd_stack_setup): Don't use
45303         __builtin_frame_address.
45305         dup3 for GNU Hurd.
45306         * include/unistd.h: Declare __dup3 and use libc_hidden_proto on it.
45307         * sysdeps/mach/hurd/dup3.c: New file, copy from dup2.c.  Evolve it to
45308         implement dup3 and do some further code clean-ups.
45309         * sysdeps/mach/hurd/dup2.c (__dup2): Reimplement using __dup3.
45310         * sysdeps/mach/hurd/kernel-features.h (__ASSUME_DUP3): Define.
45312 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
45314         * sysdeps/mach/hurd/dl-sysdep.c: Conditionalize contents on [SHARED].
45316         * hurd/hurd/fd.h (_hurd_fd_get): Call HURD_CRITICAL_BEGIN/
45317         HURD_CRITICAL_END around holding _hurd_dtable_lock.
45318         * sysdeps/mach/hurd/dirfd (dirfd): Likewise.
45319         * sysdeps/mach/hurd/opendir.c (_hurd_fd_opendir): Call
45320         HURD_CRITICAL_BEGIN/HURD_CRITICAL_END around holding
45321         d->port.lock.
45323         * hurd/catch-signal.c (hurd_catch_signal): Use sigsetjmp/siglongjmp
45324         instead of setjmp/longjmp to restore the signal mask.  Call sigsetjmp
45325         when handler == SIG_ERR, not when handler != SIG_ERR.
45327 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
45329         * sysdeps/mach/hurd/bits/socket.h: New file, copy from the bsd4.4 one.
45330         (SOCK_MAX, SOCK_TYPE_MASK, SOCK_CLOEXEC, SOCK_NONBLOCK): New
45331         definitions.
45333         accept4 for GNU Hurd.
45334         * include/sys/socket.h (__libc_accept4): New prototype.
45335         * sysdeps/mach/hurd/accept4.c: New file, copy from accept.c.  Evolve it
45336         to implement __libc_accept4.
45337         * sysdeps/mach/hurd/accept.c (accept): Reimplement using
45338         __libc_accept4.
45339         * sysdeps/mach/hurd/kernel-features.h (__ASSUME_ACCEPT4): Define.
45341         * sysdeps/mach/hurd/i386/____longjmp_chk.S: New file.
45342         * sysdeps/mach/hurd/i386/signal-defines.sym: New file.
45343         * sysdeps/mach/hurd/i386/Makefile (gen-as-const-headers): Add
45344         signal-defines.sym.
45346 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
45348         * bits/in.h (SOL_IP, SOL_IPV6, SOL_ICMPV6): New macros.
45350 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
45352         * sysdeps/mach/hurd/dl-sysdep.c (open_file): Do not raise
45353         assertion on O_CLOEXEC flag.
45354         * hurd/hurd/fd.h: Update comment to mention O_CLOEXEC.
45355         * hurd/intern-fd.c: Likewise.
45356         * hurd/port2fd.c: Likewise.
45358 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
45360         [BZ #3906]
45361         * bits/in.h (IPV6_PKTINFO): Define new macro.
45362         (IPV6_RXINFO,IPV6_TXINFO,SCM_SRCINFO): Redefine to IPV6_PKTINFO.
45364 2012-05-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
45366         [BZ #13954]
45367         [BZ #13955]
45368         [BZ #13956]
45369         * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Fix for subnormal number.
45370         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
45371         * sysdeps/ieee754/flt-32/s_logbf.c (__logf): Likewise.
45372         * sysdeps/ieee754/ldbl-128/s_logbl.c (__logbl): Likewise.
45373         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
45374         * sysdeps/ieee754/ldbl-96/s_logbl.c (__logbl): Likewise.
45375         * math/libm-test.inc (logb_test) : Additional logb tests.
45377 2012-05-09  Andreas Schwab  <schwab@linux-m68k.org>
45378             Andreas Jaeger  <aj@suse.de>
45380         * configure.in (obsolete-rpc): Add new option --enable-obsolete-rpc.
45381         * configure: Regenerated.
45382         * config.h.in (LINK_OBSOLETE_RPC): New macro.
45383         * config.make.in (link-obsolete-rpc): New substituted variable.
45384         * include/libc-symbols.h (libc_hidden_nolink_sunrpc): Rename from
45385         libc_hidden_nolink and define based on LINK_OBSOLETE_RPC.
45386         * sunrpc/Makefile (headers) [link-obsolete-rpc]: Add rpc headers.
45387         (shared-only-routines): Don't set it under [link-obsolete-rpc],
45388         so that libc.a contains the symbols.
45389         * nis/Makefile (headers) [link-obsolete-rpc]: Add rpc headers.
45390         * sunrpc/auth_des.c: Use libc_hidden_nolink_sunrpc.
45391         * sunrpc/auth_none.c: Likewise.
45392         * sunrpc/auth_unix.c: Likewise.
45393         * sunrpc/authdes_prot.c: Likewise.
45394         * sunrpc/authuxprot.c: Likewise.
45395         * sunrpc/clnt_gen.c: Likewise.
45396         * sunrpc/clnt_perr.c: Likewise.
45397         * sunrpc/clnt_raw.c: Likewise.
45398         * sunrpc/clnt_simp.c: Likewise.
45399         * sunrpc/clnt_tcp.c: Likewise.
45400         * sunrpc/clnt_udp.c: Likewise.
45401         * sunrpc/clnt_unix.c: Likewise.
45402         * sunrpc/des_crypt.c: Likewise.
45403         * sunrpc/des_soft.c: Likewise.
45404         * sunrpc/get_myaddr.c: Likewise.
45405         * sunrpc/key_call.c: Likewise.
45406         * sunrpc/key_prot.c: Likewise.
45407         * sunrpc/netname.c: Likewise.
45408         * sunrpc/pm_getmaps.c: Likewise.
45409         * sunrpc/pm_getport.c: Likewise.
45410         * sunrpc/pmap_clnt.c: Likewise.
45411         * sunrpc/pmap_prot.c: Likewise.
45412         * sunrpc/pmap_prot2.c: Likewise.
45413         * sunrpc/pmap_rmt.c: Likewise.
45414         * sunrpc/publickey.c: Likewise.
45415         * sunrpc/rpc_cmsg.c: Likewise.
45416         * sunrpc/rpc_common.c: Likewise.
45417         * sunrpc/rpc_dtable.c: Likewise.
45418         * sunrpc/rpc_prot.c: Likewise.
45419         * sunrpc/rpc_thread.c: Likewise.
45420         * sunrpc/rtime.c: Likewise.
45421         * sunrpc/svc.c: Likewise.
45422         * sunrpc/svc_auth.c: Likewise.
45423         * sunrpc/svc_raw.c: Likewise.
45424         * sunrpc/svc_run.c: Likewise.
45425         * sunrpc/svc_tcp.c: Likewise.
45426         * sunrpc/svc_udp.c: Likewise.
45427         * sunrpc/svc_unix.c: Likewise.
45428         * sunrpc/svcauth_des.c: Likewise.
45429         * sunrpc/xcrypt.c: Likewise.
45430         * sunrpc/xdr.c: Likewise.
45431         * sunrpc/xdr_array.c: Likewise.
45432         * sunrpc/xdr_float.c: Likewise.
45433         * sunrpc/xdr_intXX_t.c: Likewise.
45434         * sunrpc/xdr_mem.c: Likewise.
45435         * sunrpc/xdr_rec.c: Likewise.
45436         * sunrpc/xdr_ref.c: Likewise.
45437         * sunrpc/xdr_sizeof.c: Likewise.
45438         * sunrpc/xdr_stdio.c: Likewise.
45440 2012-05-10  Roland McGrath  <roland@hack.frob.com>
45442         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Fix typo in last
45443         change.  Update copyright years.
45445 2012-05-10  Joseph Myers  <joseph@codesourcery.com>
45447         * include/stdc-predef.h (__STDC_NO_THREADS__): Define.
45449 2012-05-10  Maxim Kuvyrkov  <maxim@codesourcery.com>
45450             Joseph Myers  <joseph@codesourcery.com>
45451             Paul Pluzhnikov  <ppluzhnikov@google.com>
45453         [BZ #14012]
45454         * sunrpc/Makefile [cross-compiling] (headers): Enable additions
45455         requiring rpcgen.
45456         [cross-compiling] (extra-libs): Likewise.
45457         [cross-compiling] (extra-libs-others): Likewise.
45458         [cross-compiling] (librpcsvc-routines): Likewise.
45459         [cross-compiling] (librpcsvc-inhibit-o): Likewise.
45460         [cross-compiling] (omit-deps): Likewise.
45461         (sunrpc-CPPFLAGS): New variable.
45462         (CPPFLAGS): Define using $(sunrpc-CPPFLAGS).
45463         (BUILD_CPPFLAGS): Append $(sunrpc-CPPFLAGS).
45464         (cross-rpcgen-objs): New variable.
45465         (extra-objs): Append $(cross-rpcgen-objs).
45466         ($(cross-rpcgen-objs)): New rule.
45467         ($(objpfx)cross-rpcgen): Likewise.
45468         (rpcgen-cmd): Define to use $(built-program-file).  Expand
45469         comment.
45470         ($(objpfx)rpcsvc/%.stmp): Depend on cross-rpcgen.
45471         ($(objpfx)x%.stmp): Likewise.
45472         * sunrpc/proto.h [IS_IN_build] (_): Define.
45473         [IS_IN_build] (_libc_intl_domainname): Likewise.
45475 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
45477         * sysdeps/x86_64/dl-machine.h (elf_machine_rela) [__ILP32__]:
45478         Sign extend relocation result to 64 bits for R_X86_64_DTPOFF64
45479         and R_X86_64_TPOFF64.
45481 2012-05-10  Joseph Myers  <joseph@codesourcery.com>
45483         * sysdeps/unix/sysv/linux/syscalls.list (alarm): Add entry from
45484         sysdeps/unix/sysv/syscalls.list.
45485         (stime): Likewise.
45486         (utime): Likewise.
45487         * sysdeps/unix/sysv/syscalls.list: Remove file.
45489 2012-05-10  Paul Eggert  <eggert@cs.ucla.edu>
45491         [BZ #3440]
45492         * locale/bits/locale.h (__LC_CTYPE, __LC_NUMERIC, __LC_TIME)
45493         (__LC_COLLATE, __LC_MONETARY, __LC_MESSAGES, __LC_ALL, __LC_PAPER)
45494         (__LC_NAME, __LC_ADDRESS, __LC_TELEPHONE, __LC_MEASUREMENT)
45495         (__LC_IDENTIFICATION): Make these macros useful in #if
45496         expressions, as required by C99.
45498 2012-05-10  Andreas Schwab  <schwab@linux-m68k.org>
45500         * sunrpc/Makefile (extra-objs) [$(build-shared) = yes]: Add
45501         $(addsuffix .os,$(rpc-compat-routines)).  Move include ../Rules
45502         after this.
45504 2012-05-09  H.J. Lu  <hongjiu.lu@intel.com>
45506         * stdlib/longlong.h: Updated from GCC.
45508 2012-05-09  Andreas Jaeger  <aj@suse.de>
45510         * nscd/nscd.c (run_modes): Make named enum, reorder so that
45511         default is first entry.
45512         (run_mode): Set type.
45513         (main): Remove informal message about syslog.
45514         (options): Fix typo.
45516         [BZ #14053]
45517         * sysdeps/x86_64/fpu/bits/mathinline.h (lrintf): Add __volatile
45518         to asm.
45519         (lrint): Likewise.
45520         (llrintf): Likewise.
45521         (llrint): Likewise.
45522         (rint): Likewise.
45523         (rintf): Likewise.
45524         (nearbyint): Likewise.
45525         (nearbyintf): Likewise.
45527 2012-05-09  Andreas Jaeger  <aj@suse.de>
45528             Pedro Alves  <palves@redhat.com>
45530         * nscd/nscd.c (run_mode): Use enum.
45531         (main): Cleanup coding style issue.
45533 2012-05-09  Alexandre Oliva  <aoliva@redhat.com>
45534             Andreas Jaeger  <aj@suse.de>
45536         * nscd/nscd.c (go_background): Replaced with...
45537         (run_mode): ... this.
45538         (RUN_FOREGROUND, RUN_DAEMONIZE, RUN_DEBUG): Add.
45539         (options): Add -F --foreground.
45540         (main): Implement it.
45541         (parse_opt): Parse it.
45543 2012-05-09  Andreas Jaeger  <aj@suse.de>
45545         [BZ #14083]
45546         * string/bits/string2.h (strspn) [__GNUC_PREREQ(3, 2) &&
45547         !_HAVE_STRING_ARCH_strspn]: Cast zero to size_t to avoid
45548         -Wconversion warning.
45549         (strspn) [!__GNUC_PREREQ(3, 2) && !_HAVE_STRING_ARCH_strspn]:
45550         Likewise.
45552 2012-05-09  Joseph Myers  <joseph@codesourcery.com>
45554         * conform/data/locale.h-data (NULL): Use macro-constant.  Require
45555         == 0.
45556         (LC_ALL): Use macro-int-constant.
45557         (LC_COLLATE): Likewise.
45558         (LC_CTYPE): Likewise.
45559         (LC_MESSAGES): Likewise.
45560         (LC_MONETARY): Likewise.
45561         (LC_NUMERIC): Likewise.
45562         (LC_TIME): Likewise.
45563         [ISO || ISO99 || ISO11] (LC_MESSAGES): Do not require.
45564         (LC_*): Change to LC_[ABCDEFGHIJKLMNOPQRSTUVWXYZ]*.
45565         [ISO || ISO99 || ISO11] (*_t): Do not allow.
45566         * conform/data/math.h-data (HUGE_VAL): Use macro-constant.
45567         Specify type.
45568         [C99-based standards] (float_t): Expect type.
45569         [C99-based standards] (double_t): Expect type.
45570         [C99-based standards] (HUGE_VALF): Use macro-constant.  Specify
45571         type.
45572         [C99-based standards] (HUGE_VALL): Likewise.
45573         [C99-based standards] (INFINITY): Likewise.
45574         [C99-based standards] (NAN): Likewise.
45575         [C99-based standards] (FP_INFINITE): Use macro-int-constant.
45576         [C99-based standards] (FP_NAN): Likewise.
45577         [C99-based standards] (FP_NORMAL): Likewise.
45578         [C99-based standards] (FP_SUBNORMAL): Likewise.
45579         [C99-based standards] (FP_ZERO): Likewise.
45580         [C99-based standards] (FP_FAST_FMA): Use
45581         optional-macro-int-constant.  Specify type.  Require == 1.
45582         [C99-based standards] (FP_FAST_FMAF): Likewise.
45583         [C99-based standards] (FP_FAST_FMAL): Likewise.
45584         [C99-based standards] (FP_ILOGB0): Use macro-int-constant.
45585         [C99-based standards] (FP_ILOGBNAN): Likewise.
45586         [C99-based standards] (MATH_ERRNO): Use macro-int-constant.
45587         Specify type.
45588         [C99-based standards] (MATH_ERREXCEPT): Likewise.
45589         [C99-based standards] (math_errhandling): Specify type.
45590         [ISO99 || ISO11] (signgam): Do not allow.
45591         [non-C99-based standards] (copysignf): Do not allow.
45592         [non-C99-based standards] (exp2f): Likewise.
45593         [non-C99-based standards] (log2f): Likewise.
45594         [non-C99-based standards] (modff): Allow.
45595         [non-C99-based standards] (erff): Do not allow.
45596         [non-C99-based standards] (erfcf): Likewise.
45597         [non-C99-based standards] (gammaf): Likewise.
45598         [non-C99-based standards] (hypotf): Likewise.
45599         [non-C99-based standards] (j0f): Likewise.
45600         [non-C99-based standards] (j1f): Likewise.
45601         [non-C99-based standards] (jnf): Likewise.
45602         [non-C99-based standards] (lgammaf): Likewise.
45603         [non-C99-based standards] (tgammaf): Likewise.
45604         [non-C99-based standards] (y0f): Likewise.
45605         [non-C99-based standards] (y1f): Likewise.
45606         [non-C99-based standards] (ynf): Likewise.
45607         [non-C99-based standards] (isnanf): Likewise.
45608         [non-C99-based standards] (acoshf): Likewise.
45609         [non-C99-based standards] (asinhf): Likewise.
45610         [non-C99-based standards] (atanhf): Likewise.
45611         [non-C99-based standards] (cbrtf): Likewise.
45612         [non-C99-based standards] (expm1f): Likewise.
45613         [non-C99-based standards] (ilogbf): Likewise.
45614         [non-C99-based standards] (log1pf): Likewise.
45615         [non-C99-based standards] (logbf): Likewise.
45616         [non-C99-based standards] (nextafterf): Likewise.
45617         [non-C99-based standards] (remainderf): Likewise.
45618         [non-C99-based standards] (rintf): Likewise.
45619         [non-C99-based standards] (scalbf): Likewise.
45620         [non-C99-based standards] (copysignl): Likewise.
45621         [non-C99-based standards] (exp2l): Likewise.
45622         [non-C99-based standards] (log2l): Likewise.
45623         [non-C99-based standards] (modfl): Allow.
45624         [non-C99-based standards] (erfl): Do not allow.
45625         [non-C99-based standards] (erfcl): Likewise.
45626         [non-C99-based standards] (gammal): Likewise.
45627         [non-C99-based standards] (hypotl): Likewise.
45628         [non-C99-based standards] (j0l): Likewise.
45629         [non-C99-based standards] (j1l): Likewise.
45630         [non-C99-based standards] (jnl): Likewise.
45631         [non-C99-based standards] (lgammal): Likewise.
45632         [non-C99-based standards] (tgammal): Likewise.
45633         [non-C99-based standards] (y0l): Likewise.
45634         [non-C99-based standards] (y1l): Likewise.
45635         [non-C99-based standards] (ynl): Likewise.
45636         [non-C99-based standards] (isnanl): Likewise.
45637         [non-C99-based standards] (acoshl): Likewise.
45638         [non-C99-based standards] (asinhl): Likewise.
45639         [non-C99-based standards] (atanhl): Likewise.
45640         [non-C99-based standards] (cbrtl): Likewise.
45641         [non-C99-based standards] (expm1l): Likewise.
45642         [non-C99-based standards] (ilogbl): Likewise.
45643         [non-C99-based standards] (log1pl): Likewise.
45644         [non-C99-based standards] (logbl): Likewise.
45645         [non-C99-based standards] (nextafterl): Likewise.
45646         [non-C99-based standards] (remainderl): Likewise.
45647         [non-C99-based standards] (rintl): Likewise.
45648         [non-C99-based standards] (scalbl): Likewise.
45649         [ISO || ISO99 || ISO11] (*_t): Do not allow.
45650         [non-C99-based standards] (FP_*): Do not allow.
45651         [C99-based standards] (FP_*): Change to
45652         FP_[ABCDEFGHIJKLMNOPQRSTUVWXYZ]*.
45653         * conform/data/setjmp.h-data [ISO || ISO99 || ISO11] (*_t): Do not
45654         allow.
45655         * conform/data/signal.h-data (SIG_DFL): Use macro-constant.
45656         (SIG_ERR): Likewise.
45657         [X/Open-based standards] (SIG_HOLD): Likewise.
45658         (SIG_IGN): Likewise.
45659         (SIGABRT): Use macro-int-constant.  Specify type.  Require
45660         positive value.
45661         (SIGFPE): Likewise.
45662         (SIGILL): Likewise.
45663         (SIGINT): Likewise.
45664         (SIGSEGV): Likewise.
45665         (SIGTER): Likewise.
45666         [!ISO && !ISO99 && !ISO11] (SIGALRM): Likewise.
45667         [!ISO && !ISO99 && !ISO11] (SIGHUP): Likewise.
45668         [!ISO && !ISO99 && !ISO11] (SIGIO): Likewise.
45669         [!ISO && !ISO99 && !ISO11] (SIGKILL): Likewise.
45670         [!ISO && !ISO99 && !ISO11] (SIGPIPE): Likewise.
45671         [!ISO && !ISO99 && !ISO11] (SIGQUIT): Likewise.
45672         [!ISO && !ISO99 && !ISO11] (SIGUSR1): Likewise.
45673         [!ISO && !ISO99 && !ISO11] (SIGUSR2): Likewise.
45674         [!ISO && !ISO99 && !ISO11] (SIGCHLD): Likewise.
45675         [!ISO && !ISO99 && !ISO11] (SIGCONT): Likewise.
45676         [!ISO && !ISO99 && !ISO11] (SIGSTOP): Likewise.
45677         [!ISO && !ISO99 && !ISO11] (SIGTSTP): Likewise.
45678         [!ISO && !ISO99 && !ISO11] (SIGTTIN): Likewise.
45679         [!ISO && !ISO99 && !ISO11] (SIGTTOU): Likewise.
45680         [!ISO && !ISO99 && !ISO11] (SIGBUS): Likewise.
45681         [!ISO && !ISO99 && !ISO11] (SIGPOLL): Likewise.
45682         [!ISO && !ISO99 && !ISO11] (SIGPROF): Likewise.
45683         [!ISO && !ISO99 && !ISO11] (SIGSYS): Likewise.
45684         [X/Open-based standards] (SIGTRAP): Likewise.
45685         [!ISO && !ISO99 && !ISO11] (SIGURG): Likewise.
45686         [!ISO && !ISO99 && !ISO11] (SIGVTALRM): Likewise.
45687         [!ISO && !ISO99 && !ISO11] (SIGXCPU): Likewise.
45688         [!ISO && !ISO99 && !ISO11] (SIGXFSZ): Likewise.
45689         * conform/data/stdarg.h-data [ISO || ISO99 || ISO11] (*_t): Do not
45690         allow.
45692 2012-05-08  Ian Wienand  <ianw@vmware.com>
45694         [BZ #14080]
45695         * time/tzset.c (__tzset_parse_tz): Update default rules for
45696         daylight time changes in the Energy Policy Act of 2005.
45698 2012-05-09  Andreas Jaeger  <aj@suse.de>
45700         [BZ #13983]
45701         * elf/ldconfig.c (parse_conf): Change string to make clear that
45702         ldconfig only issued a warning if ld.so.conf does not exist.
45704 2012-05-08  David S. Miller  <davem@davemloft.net>
45706         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S: Use
45707         movxtod instead of popping the value on the stack.
45709         * sysdeps/sparc/fpu/libm-test-ulps: Update.
45711 2012-05-08  Carlos O'Donell  <carlos_odonell@mentor.com>
45713         * config.h.in: Add HAVE_ARM_PCS_VFP.
45715 2012-05-08  Roland Mc Grath  <roland@hack.frob.com>
45717         [BZ #13979]
45718         * include/features.h: Warn if user requests __FORTIFY_SOURCE
45719         checking but the checks are disabled for any reason.
45721 2012-05-08  H.J. Lu  <hongjiu.lu@intel.com>
45723         * sysdeps/x86_64/dl-machine.h: Replace Elf64_XXX with ElfW(XXX)
45724         and ELF64_R_TYPE with ELFW(R_TYPE).
45726 2012-05-08  Joseph Myers  <joseph@codesourcery.com>
45728         * sysdeps/unix/sysv/syscalls.list (pause): Remove.
45729         (ulimit): Likewise.
45731         * sysdeps/unix/sysv/syscalls.list (setrlimit): Remove.
45732         (settimeofday): Likewise.
45734 2012-05-08  Mike Frysinger  <vapier@gentoo.org>
45736         * inet/arpa/tftp.h (struct tftphdr): Rename th_u to th_u1.  Add
45737         a struct th_u2 inside the union, and move tu_block/tu_code into
45738         a new th_u3 union of tu_block/tu_code inside of that.  Move
45739         th_data[1] into the th_u2 as tu_data[0].  Change tu_stuff[1] to
45740         tu_stuff[0].  Add a new tu_padding[4] to keep sizeof() the same.
45741         (th_block): Change to th_u1.th_u2.th_u3.tu_block.
45742         (th_code): Change to th_u1.th_u2.th_u3.tu_code.
45743         (th_stuff): Change to th_u1.tu_stuff.
45744         (th_data): Define.
45745         (th_msg): Change to th_u1.th_u2.tu_data.
45747 2012-05-07  David S. Miller  <davem@davemloft.net>
45749         * sysdeps/sparc/fpu/libm-test-ulps: Update.
45751         [BZ #14074]
45752         * sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK_CALL): New macro.
45753         (SETUP_PIC_REG): Use it.
45754         (SETUP_PIC_REG_LEAF): Use it.
45756 2012-05-07  Joseph Myers  <joseph@codesourcery.com>
45758         [BZ #13885]
45759         [BZ #13923]
45760         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
45761         USE_AS_EXPM1L.
45762         (EXPL_FINITE): Likewise.
45763         (FLDLOG): Likewise.
45764         (IEEE754_EXPL) [USE_AS_EXPM1L]: Support use as expm1l.
45765         * sysdeps/i386/fpu/s_expm1l.S: Define USE_AS_EXPM1L and include
45766         e_expl.S.
45767         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
45768         USE_AS_EXPM1L.
45769         (EXPL_FINITE): Likewise.
45770         (FLDLOG): Likewise.
45771         (IEEE754_EXPL) [USE_AS_EXPM1L]: Support use as expm1l.
45772         * sysdeps/x86_64/fpu/s_expm1l.S: Define USE_AS_EXPM1L and include
45773         e_expl.S.
45774         * math/libm-test.inc (expm1_test): Add more tests.  Do not disable
45775         test of -max_value argument for long double.
45776         * sysdeps/i386/fpu/libm-test-ulps: Update.
45777         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45779 2012-05-06  David S. Miller  <davem@davemloft.net>
45781         * scripts/data/localplt-sparc-linux-gnu.data: Add '?' markers to
45782         quad soft-float symbols whose references which are compiler
45783         generated.
45784         * scripts/data/localplt-sparc64-linux-gnu.data: Likewise.
45786 2012-05-06  Joseph Myers  <joseph@codesourcery.com>
45788         [BZ #13884]
45789         [BZ #13914]
45790         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
45791         USE_AS_EXP10L.
45792         (EXPL_FINITE): Likewise.
45793         (FLDLOG): Likewise.
45794         (c0): Likewise.
45795         (c1): Likewise.
45796         (__ieee754_expl): Change to IEEE754_EXPL.  Use FLDLOG macro.
45797         Adjust comments for base varying.
45798         (__expl_finite): Change alias to EXPL_FINITE.
45799         * sysdeps/i386/fpu/e_exp10l.S: Define USE_AS_EXP10L and include
45800         e_expl.S.
45801         * sysdeps/ieee754/dbl-64/e_exp10.c: New file.
45802         * sysdeps/ieee754/ldbl-128/e_exp10l.c: Likewise.
45803         * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c: Likewise.
45804         * sysdeps/x86_64/fpu/e_exp10l.S: Likewise.
45805         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
45806         USE_AS_EXP10L.
45807         (EXPL_FINITE): Likewise.
45808         (FLDLOG): Likewise.
45809         (c0): Likewise.
45810         (c1): Likewise.
45811         (__ieee754_expl): Change to IEEE754_EXPL.  Use FLDLOG macro.
45812         Adjust comments for base varying.
45813         (__expl_finite): Change alias to EXPL_FINITE.
45814         * math/libm-test.inc (exp10_test): Add more tests.  Do not disable
45815         tests for bugs.
45816         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
45818         [BZ #14064]
45819         * math/libm-test.inc (check_float_internal): Correct ulp
45820         calculation for subnormal expected results.
45822 2012-05-06  Andreas Jaeger  <aj@suse.de>
45824         * Makeconfig (+math-flags): New, set to -frounding-math.
45825         (+cflags): Add +math-flags so that all of glibc gets compiled with
45826         it.
45828         * sysdeps/x86_64/fpu/libm-test-ulps: Updated.
45830 2012-05-05  Joseph Myers  <joseph@codesourcery.com>
45832         * math/libm-test.inc (hypot_test) [TEST_DOUBLE && TEST_INLINE]:
45833         Disable one test.
45835         [BZ #13787]
45836         [BZ #13922]
45837         [BZ #14036]
45838         * sysdeps/i386/fpu/e_expl.S (csat): New constant.
45839         (__ieee754_expl): Allow for and saturate large arguments.
45840         * sysdeps/ieee754/dbl-64/w_exp.c (o_threshold): Remove variable.
45841         (u_threshold): Likewise.
45842         (__exp): Call __ieee754_exp before checking for overflow and
45843         underflow.
45844         * sysdeps/ieee754/flt-32/w_expf.c (o_threshold): Remove variable.
45845         (u_threshold): Likewise.
45846         (__expf): Call __ieee754_expf before checking for overflow and
45847         underflow.
45848         * sysdeps/ieee754/ldbl-96/w_expl.c (o_threshold): Remove variable.
45849         (u_threshold): Likewise.
45850         (__expl): Call __ieee754_expl before checking for overflow and
45851         underflow.
45852         * sysdeps/x86_64/fpu/e_expl.S (csat): New constant.
45853         (__ieee754_expl): Allow for and saturate large arguments.
45854         * math/libm-test.inc (exp_test): Add another test.  Do not allow
45855         missing overflow exception on overflow.
45856         (expm1_test): Do not allow missing overflow exception on overflow.
45858         * sysdeps/i386/fpu/e_expl.c: Move to ...
45859         * sysdeps/i386/fpu/e_expl.S: ... here.  Write directly in assembly
45860         rather than using inline asm.
45861         * sysdeps/x86_64/fpu/e_expl.c: Remove file.
45862         * sysdeps/x86_64/fpu/e_expl.S: Copy from
45863         sysdeps/i386/fpu/e_expl.S, adjusted for x86_64.
45865         * sysdeps/unix/sysv/syscalls.list (ftime): Remove.
45866         (nice): Likewise.
45867         (poll): Likewise.
45868         (signal): Likewise.
45869         (time): Likewise.
45870         (times): Likewise.
45872 2012-05-04  Joseph Myers  <joseph@codesourcery.com>
45874         * sysdeps/unix/syscalls.list (adjtime): Add entry from
45875         sysdeps/unix/common/syscalls.list.
45876         (fchmod): Likewise.
45877         (fchown): Likewise.
45878         (ftruncate): Likewise.
45879         (getrusage): Likewise.
45880         (gettimeofday): Likewise.
45881         (setpgid): Likewise.
45882         (setregid): Likewise.
45883         (setreuid): Likewise.
45884         (sigaction): Likewise.
45885         (truncate): Likewise.
45886         (vhangup): Likewise.
45887         * sysdeps/unix/common/syscalls.list: Remove file.
45888         * sysdeps/unix/bsd/Implies: Don't include unix/common.
45889         * sysdeps/unix/sysv/linux/Implies: Likewise.
45891 2012-05-04  H.J. Lu  <hongjiu.lu@intel.com>
45893         * sysdeps/unix/sysv/linux/x86_64/nptl/ld.abilist: Moved to ...
45894         * sysdeps/unix/sysv/linux/x86_64/64/nptl/ld.abilist: Here.
45895         * sysdeps/unix/sysv/linux/x86_64/nptl/libBrokenLocale.abilist:
45896         Moved to ...
45897         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libBrokenLocale.abilist:
45898         Here.
45899         * sysdeps/unix/sysv/linux/x86_64/nptl/libanl.abilist: Moved
45900         to ...
45901         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libanl.abilist: Here.
45902         * sysdeps/unix/sysv/linux/x86_64/nptl/libc.abilist: Moved
45903         to ...
45904         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Here.
45905         * sysdeps/unix/sysv/linux/x86_64/nptl/libcrypt.abilist: Moved
45906         to ...
45907         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist: Here.
45908         * sysdeps/unix/sysv/linux/x86_64/nptl/libdl.abilist: Moved
45909         to ...
45910         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libdl.abilist: Here.
45911         * sysdeps/unix/sysv/linux/x86_64/nptl/libm.abilist: Moved
45912         to ...
45913         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libm.abilist: Here.
45914         * sysdeps/unix/sysv/linux/x86_64/nptl/libnsl.abilist: Moved
45915         to ...
45916         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libnsl.abilist: Here.
45917         * sysdeps/unix/sysv/linux/x86_64/nptl/libpthread.abilist: Moved
45918         to ...
45919         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist:
45920         Here.
45921         * sysdeps/unix/sysv/linux/x86_64/nptl/libresolv.abilist: Moved
45922         to ...
45923         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libresolv.abilist:
45924         Here.
45925         * sysdeps/unix/sysv/linux/x86_64/nptl/librt.abilist: Moved
45926         to ...
45927         * sysdeps/unix/sysv/linux/x86_64/64/nptl/librt.abilist: Here.
45928         * sysdeps/unix/sysv/linux/x86_64/nptl/libthread_db.abilist:
45929         Moved to ...
45930         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libthread_db.abilist:
45931         Here.
45932         * sysdeps/unix/sysv/linux/x86_64/nptl/libutil.abilist: Moved
45933         to ...
45934         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libutil.abilist: Here.
45936 2012-05-04  Joseph Myers  <joseph@codesourcery.com>
45938         * sysdeps/unix/common/bits/dirent.h: Remove file.
45939         * sysdeps/unix/common/bits/fcntl.h: Likewise.
45941         * sysdeps/unix/bsd/bits/dirent.h: Remove file.
45942         * sysdeps/unix/bsd/bits/fcntl.h: Likewise.
45943         * sysdeps/unix/bsd/bsd4.4/isatty.c: Likewise.
45944         * sysdeps/unix/bsd/isatty.c: Likewise.
45945         * sysdeps/unix/bsd/tcdrain.c: Likewise.
45946         * sysdeps/unix/bsd/tcgetattr.c: Likewise.
45947         * sysdeps/unix/bsd/tcsetattr.c: Likewise.
45949 2012-05-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
45951         [BZ #13563]
45952         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Fix
45953         long double comparison inaccuracies.
45954         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
45955         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
45957 2012-05-04  Andreas Schwab  <schwab@linux-m68k.org>
45959         * sysdeps/unix/make-syscalls.sh: Fix check for version aliases.
45960         * sysdeps/unix/sysv/linux/i386/syscalls.list: Revert last change.
45962 2012-05-04  Joseph Myers  <joseph@codesourcery.com>
45964         [BZ #14049]
45965         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Check for trailing
45966         nonzero digits before rounding a hex value.
45967         * stdlib/tst-strtod.c (tests): Add another test.
45969 2012-05-03  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
45971         * sysdeps/s390/fpu/libm-test-ulps: Update.
45973 2012-05-03  Andreas Jaeger  <aj@suse.de>
45975         * malloc/mcheck.c (mcheck): Add barrier so that malloc/free pair
45976         does not get optimized out.
45977         (malloc_opt_barrier): New.
45979 2012-05-03  Andreas Jaeger  <aj@suse.de>
45980             Roland McGrath  <roland@hack.frob.com>
45982         * Makerules (.PRECIOUS): Add %.symlist pattern to prevent
45983         intermediate file deletion.
45984         (generated): Add .symlist files.
45986 2012-05-03  Joseph Myers  <joseph@codesourcery.com>
45988         [BZ #13775]
45989         * libio/bits/stdio-ldbl.h [__USE_XOPEN2K8] (__dprintf_chk):
45990         Redirect under this condition.
45991         [__USE_XOPEN2K8] (__vdprintf_chk): Likewise.
45992         [__USE_GNU] (__dprintf_chk): Not under this condition.
45993         [__USE_GNU] (__vdprintf_chk): Likewise.
45994         * libio/bits/stdio2.h [__USE_XOPEN2K8] (__dprintf_chk): Declare
45995         under this condition.
45996         [__USE_XOPEN2K8] (__vdprintf_chk): Likewise.
45997         [__USE_XOPEN2K8] (dprintf): Define under this condition.
45998         [__USE_XOPEN2K8] (vdprintf): Likewise.
45999         [__USE_GNU] (__dprintf_chk): Not under this condition.
46000         [__USE_GNU] (__vdprintf_chk): Likewise.
46001         [__USE_GNU] (dprintf): Likewise.
46002         [__USE_GNU] (vdprintf): Likewise.
46004 2012-05-03  Roland McGrath  <roland@hack.frob.com>
46006         * elf/Makefile (common-generated): Set this instead of generated for
46007         .dyn, .phdr, .jmprel files.  Remove $(common-objpfx) from the
46008         $(all-built-dso)-derived lists.
46010 2012-05-03  Andreas Jaeger  <aj@suse.de>
46012         * sysdeps/i386/fpu/libm-test-ulps: Update.
46014         * FAQ: Removed.
46015         * FAQ.in: Likewise.
46016         * scripts/gen-FAQ.pl: Likewise.
46017         * manual/install.texi (Installation): Point to online location of
46018         FAQ.
46019         * Makefile (files-for-dist): Remove FAQ.
46020         (FAQ): Remove.
46022 2012-05-02  Allan McRae  <allan@archlinux.org>
46024         * elf/Makefile: (LDFLAGS-nodel2mod3.so: Use $(no-as-needed).
46025         (LDFLAGS-reldepmod5.so): Likewise.
46026         (LDFLAGS-reldep6mod1.so): Likewise.
46027         (LDFLAGS-reldep6mod4.so): Likewise.
46028         (LDFLAGS-reldep8mod3.so): Likewise.
46029         (LDFLAGS-unload4mod1.so): Likewise.
46030         (LDFLAGS-unload4mod2.so): Likewise.
46031         (LDFLAGS-tst-initorder): Likewise.
46032         (LDFLAGS-tst-initordera2.so): Likewise.
46033         (LDFLAGS-tst-initordera3.so): Likewise.
46034         (LDFLAGS-tst-initordera4.so): Likewise.
46035         (LDFLAGS-tst-initorderb2.so): Likewise.
46036         (LDFLAGS-noload): Likewise.
46037         (LDFLAGS-next): Likewise.
46038         (LDFLAGS-order2mod1.so): Likewise.
46039         (LDFLAGS-order2mod2.so): Likewise.
46040         (LDFLAGS-tst-initorder2): Likewise.
46041         (LDFLAGS-tst-initorder2a.so): Likewise.
46042         (LDFLAGS-tst-initorder2b.so): Likewise.
46043         (LDFLAGS-tst-initorder2c.so): Likewise.
46044         * stdlib/Makefile: (LDFLAGS-tst-putenv): Likewise.
46046 2012-05-02  David S. Miller  <davem@davemloft.net>
46048         * sysdeps/sparc/fpu/libm-test-ulps: Update.
46050 2012-05-02  Paul Pluzhnikov  <ppluzhnikov@google.com>
46052         [BZ #14055]
46053         * elf/dl-sysdep.c (_dl_show_auxv): Add bounds check.
46055 2012-05-02  Andreas Jaeger  <aj@suse.de>
46057         * math/Makefile (CPPFLAGS-test-ildoubl.c): Add -frounding-math
46058         since we manipulate rounding mode.
46059         (CPPFLAGS-test-idouble.c): Likewise.
46060         (CPPFLAGS-test-ifloat.c): Likewise.
46061         (CFLAGS-test-ldouble.c): Likewise.
46062         (CFLAGS-test-double.c): Likewise.
46063         (CFLAGS-test-float.c): Likewise.
46064         (CFLAGS-test-misc.c): Likewise.
46065         (CFLAGS-test-test-fenv.c): Likewise.
46067 2012-05-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
46069         [BZ #2550]
46070         [BZ #2570]
46071         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Use floating-point
46072         comparisons to determine direction to adjust input.
46074 2012-05-01  Roland McGrath  <roland@hack.frob.com>
46076         * elf/Makefile ($(objpfx)check-localplt.out): Redirect the test's
46077         output to the target.
46079         * scripts/localplt.awk: New file.
46080         * elf/Makefile ($(objpfx)check-localplt): Target removed.
46081         (check-localplt-CFLAGS): Variable removed.
46082         ($(all-built-dso:=.jmprel)): New static pattern rule.
46083         (generated): Add those targets.
46084         (localplt-built-dso): New variable.
46085         ($(objpfx)check-localplt.out): Use the script on the .jmprel files.
46087         * elf/check-localplt.c: File removed.
46089         * scripts/check-execstack.awk: New file.
46090         * elf/Makefile ($(objpfx)check-execstack): Target removed.
46091         (check-execstack-CFLAGS): Variable removed.
46092         ($(objpfx)check-execstack.h): Target removed.
46093         ($(objpfx)execstack-default): New target.
46094         (generated): Add that instead of check-execstack.h.
46095         ($(all-built-dso:=.phdr)): New static pattern rule.
46096         (generated): Add those targets.
46097         * elf/check-execstack.c: File removed.
46099         * scripts/check-textrel.awk: New file.
46100         * elf/Makefile ($(objpfx)check-textrel): Target removed.
46101         (check-textrel-CFLAGS): Variable removed.
46102         (all-built-dso): Use := to define.o
46103         ($(all-built-dso:=.dyn)): New static pattern rule.
46104         (generated): Add those targets.
46105         ($(objpfx)check-textrel.out): Use the script on the .dyn files.
46106         * config.make.in (READELF): New substituted variable.
46107         * elf/check-textrel.c: File removed.
46109 2012-05-01  Joseph Myers  <joseph@codesourcery.com>
46111         * conform/data/assert.h-data [ISO || ISO99 || ISO11] (*_t): Do not
46112         allow.
46113         * conform/data/ctype.h-data [C99-based standards] (isblank):
46114         Expect function.
46115         (is*): Change to is[abcdefghijklmnopqrstuvwxyz]*.
46116         (to*): Change to to[abcdefghijklmnopqrstuvwxyz]*.
46117         [ISO || ISO99 || ISO11] (*_t): Do not allow.
46118         * conform/data/errno.h-data (EDOM): Use macro-int-constant.
46119         Specify type.  Require positive value.
46120         (EILSEQ): Likewise.
46121         (ERANGE): Likewise.
46122         [ISO || POSIX] (EILSEQ): Do not expect.
46123         [!ISO && !ISO99 && !ISO11] (E2BIG): Use macro-int-constant.
46124         Specify type.  Require positive value.
46125         [!ISO && !ISO99 && !ISO11] (EACCES): Likewise.
46126         [!ISO && !ISO99 && !ISO11] (EADDRINUSE): Likewise.
46127         [!ISO && !ISO99 && !ISO11] (EADDRNOTAVAIL): Likewise.
46128         [!ISO && !ISO99 && !ISO11] (EAFNOSUPPORT): Likewise.
46129         [!ISO && !ISO99 && !ISO11] (EAGAIN): Likewise.
46130         [!ISO && !ISO99 && !ISO11] (EALREADY): Likewise.
46131         [!ISO && !ISO99 && !ISO11] (EBADF): Likewise.
46132         [!ISO && !ISO99 && !ISO11] (EBADMSG): Likewise.
46133         [!ISO && !ISO99 && !ISO11] (EBUSY): Likewise.
46134         [!ISO && !ISO99 && !ISO11] (ECANCELED): Likewise.
46135         [!ISO && !ISO99 && !ISO11] (ECHILD): Likewise.
46136         [!ISO && !ISO99 && !ISO11] (ECONNABORTED): Likewise.
46137         [!ISO && !ISO99 && !ISO11] (ECONNREFUSED): Likewise.
46138         [!ISO && !ISO99 && !ISO11] (ECONNRESET): Likewise.
46139         [!ISO && !ISO99 && !ISO11] (EDEADLK): Likewise.
46140         [!ISO && !ISO99 && !ISO11] (EDESTADDRREQ): Likewise.
46141         [!ISO && !ISO99 && !ISO11] (EDQUOT): Likewise.
46142         [!ISO && !ISO99 && !ISO11] (EEXIST): Likewise.
46143         [!ISO && !ISO99 && !ISO11] (EFAULT): Likewise.
46144         [!ISO && !ISO99 && !ISO11] (EFBIG): Likewise.
46145         [!ISO && !ISO99 && !ISO11] (EHOSTUNREACH): Likewise.
46146         [!ISO && !ISO99 && !ISO11] (EIDRM): Likewise.
46147         [!ISO && !ISO99 && !ISO11] (EINPROGRESS): Likewise.
46148         [!ISO && !ISO99 && !ISO11] (EINTR): Likewise.
46149         [!ISO && !ISO99 && !ISO11] (EINVAL): Likewise.
46150         [!ISO && !ISO99 && !ISO11] (EIO): Likewise.
46151         [!ISO && !ISO99 && !ISO11] (EISCONN): Likewise.
46152         [!ISO && !ISO99 && !ISO11] (EISDIR): Likewise.
46153         [!ISO && !ISO99 && !ISO11] (ELOOP): Likewise.
46154         [!ISO && !ISO99 && !ISO11] (EMFILE): Likewise.
46155         [!ISO && !ISO99 && !ISO11] (EMLINK): Likewise.
46156         [!ISO && !ISO99 && !ISO11] (EMSGSIZE): Likewise.
46157         [!ISO && !ISO99 && !ISO11] (EMULTIHOP): Likewise.
46158         [!ISO && !ISO99 && !ISO11] (ENAMETOOLONG): Likewise.
46159         [!ISO && !ISO99 && !ISO11] (ENETDOWN): Likewise.
46160         [!ISO && !ISO99 && !ISO11] (ENETUNREACH): Likewise.
46161         [!ISO && !ISO99 && !ISO11] (ENFILE): Likewise.
46162         [!ISO && !ISO99 && !ISO11] (ENOBUFS): Likewise.
46163         [!ISO && !ISO99 && !ISO11] (ENODATA): Likewise.
46164         [!ISO && !ISO99 && !ISO11] (ENODEV): Likewise.
46165         [!ISO && !ISO99 && !ISO11] (ENOENT): Likewise.
46166         [!ISO && !ISO99 && !ISO11] (ENOEXEC): Likewise.
46167         [!ISO && !ISO99 && !ISO11] (ENOLCK): Likewise.
46168         [!ISO && !ISO99 && !ISO11] (ENOLINK): Likewise.
46169         [!ISO && !ISO99 && !ISO11] (ENOMEM): Likewise.
46170         [!ISO && !ISO99 && !ISO11] (ENOMSG): Likewise.
46171         [!ISO && !ISO99 && !ISO11] (ENOPROTOOPT): Likewise.
46172         [!ISO && !ISO99 && !ISO11] (ENOSPC): Likewise.
46173         [!ISO && !ISO99 && !ISO11] (ENOSR): Likewise.
46174         [!ISO && !ISO99 && !ISO11] (ENOSTR): Likewise.
46175         [!ISO && !ISO99 && !ISO11] (ENOSYS): Likewise.
46176         [!ISO && !ISO99 && !ISO11] (ENOTCONN): Likewise.
46177         [!ISO && !ISO99 && !ISO11] (ENOTDIR): Likewise.
46178         [!ISO && !ISO99 && !ISO11] (ENOTEMPTY): Likewise.
46179         [!ISO && !ISO99 && !ISO11] (ENOTSOCK): Likewise.
46180         [!ISO && !ISO99 && !ISO11] (ENOTSUP): Likewise.
46181         [!ISO && !ISO99 && !ISO11] (ENOTTY): Likewise.
46182         [!ISO && !ISO99 && !ISO11] (ENXIO): Likewise.
46183         [!ISO && !ISO99 && !ISO11] (EOPNOTSUPP): Likewise.
46184         [!ISO && !ISO99 && !ISO11] (EOVERFLOW): Likewise.
46185         [!ISO && !ISO99 && !ISO11] (EPERM): Likewise.
46186         [!ISO && !ISO99 && !ISO11] (EPIPE): Likewise.
46187         [!ISO && !ISO99 && !ISO11] (EPROTO): Likewise.
46188         [!ISO && !ISO99 && !ISO11] (EPROTONOSUPPORT): Likewise.
46189         [!ISO && !ISO99 && !ISO11] (EPROTOTYPE): Likewise.
46190         [!ISO && !ISO99 && !ISO11] (EROFS): Likewise.
46191         [!ISO && !ISO99 && !ISO11] (ESPIPE): Likewise.
46192         [!ISO && !ISO99 && !ISO11] (ESRCH): Likewise.
46193         [!ISO && !ISO99 && !ISO11] (ESTALE): Likewise.
46194         [!ISO && !ISO99 && !ISO11] (ETIME): Likewise.
46195         [!ISO && !ISO99 && !ISO11] (ETIMEDOUT): Likewise.
46196         [!ISO && !ISO99 && !ISO11] (ETXTBSY): Likewise.
46197         [!ISO && !ISO99 && !ISO11] (EWOULDBLOCK): Likewise.
46198         [!ISO && !ISO99 && !ISO11] (EXDEV): Likewise.
46199         [XOPEN2K8 || defined POSIX2008] (ENOTRECOVERABLE): Likewise.
46200         [XOPEN2K8 || defined POSIX2008] (EOWNERDEAD): Likewise.
46201         * conform/data/float.h-data (FLT_RADIX): Use macro-int-constant.
46202         Require >= 2.
46203         (FLT_ROUNDS): Expect as macro, not constant.
46204         (FLT_MANT_DIG): Use macro-int-constant.
46205         (DBL_MANT_DIG): Likewise.
46206         (LDBL_MANT_DIG): Likewise.
46207         (FLT_DIG): Likewise.
46208         (DBL_DIG): Likewise.
46209         (LDBL_DIG): Likewise.
46210         (FLT_MIN_EXP): Use macro-int-constant.  Require < 0.
46211         (DBL_MIN_EXP): Likewise.
46212         (LDBL_MIN_EXP): Likewise.
46213         (FLT_MAX_EXP): Use macro-int-constant.
46214         (DBL_MAX_EXP): Likewise.
46215         (LDBL_MAX_EXP): Likewise.
46216         (FLT_MAX_10_EXP): Likewise.
46217         (DBL_MAX_10_EXP): Likewise.
46218         (LDBL_MAX_10_EXP): Likewise.
46219         (FLT_MAX): Use macro-constant.
46220         (DBL_MAX): Likewise.
46221         (LDBL_MAX): Likewise.
46222         (FLT_EPSILON): Use macro-constant.  Give upper bound.
46223         (DBL_EPSILON): Likewise.
46224         (LDBL_EPSILON): Likewise.
46225         (FLT_MIN): Likewise.
46226         (DBL_MIN): Likewise.
46227         (LDBL_MIN): Likewise.
46228         [C99-based standards] (DECIMAL_DIG): Use macro-int-constant.
46229         [C99-based standards] (FLT_EVAL_METHOD): Likewise.
46230         [ISO11] (DBL_HAS_SUBNORM): Use macro-int-constant.
46231         [ISO11] (FLT_HAS_SUBNORM): Likewise.
46232         [ISO11] (LDBL_HAS_SUBNORM): Likewise.
46233         [ISO11] (DBL_DECIMAL_DIG): Likewise.
46234         [ISO11] (FLT_DECIMAL_DIG): Likewise.
46235         [ISO11] (LDBL_DECIMAL_DIG): Likewise.
46236         [ISO11] (DBL_TRUE_MIN): Use macro-constant.
46237         [ISO11] (FLT_TRUE_MIN): Likewise.
46238         [ISO11] (LDBL_TRUE_MIN): Likewise.
46239         [ISO || ISO99 || ISO11] (*_t): Do not allow.
46240         * conform/data/limits.h-data (CHAR_BIT): Use macro-int-constant.
46241         (SCHAR_MIN): Use macro-int-constant.  Specify type.
46242         (SCHAR_MAX): Likewise.
46243         (UCHAR_MAX): Likewise.
46244         (CHAR_MIN): Likewise.
46245         (CHAR_MAX): Likewise.
46246         (MB_LEN_MAX): Use macro-int-constant.
46247         (SHRT_MIN): Use macro-int-constant.  Specify type.
46248         (SHRT_MAX): Likewise.
46249         (USHRT_MAX): Likewise.
46250         (INT_MAX): Likewise.
46251         (INT_MIN): Use macro-int-constant.  Specify type.  Make upper
46252         bound negative.
46253         (UINT_MAX): Use macro-int-constant.  Specify type.  Suffix lower
46254         bound with "U".
46255         (LONG_MAX): Use macro-int-constant.  Specify type.  Suffix lower
46256         bound with "L".
46257         (LONG_MIN): Use macro-int-constant.  Specify type.  Make upper
46258         bound negative.  Suffix upper bound with "L".
46259         (ULONG_MAX): Use macro-int-constant.  Specify type.  Suffix lower
46260         bound with "UL".
46261         [C99-based standards] (LLONG_MIN): Use macro-int-constant.
46262         Specify type.
46263         [C99-based standards] (LLONG_MAX): Likewise.
46264         [C99-based standards] (ULLONG_MAX): Likewise.
46265         * conform/data/stddef.h-data (NULL): Use macro-constant.  Require
46266         == 0.
46267         [ISO11] (max_align_t): Require type.
46268         [ISO || ISO99 || ISO11] (*_t): Do not allow.
46270         * conform/conformtest.pl ($CFLAGS_namespace): Define separately
46271         from $CFLAGS, without defining away __attribute__ calls.
46272         (checknamespace): Use $CFLAGS_namespace.
46274         * conform/conformtest.pl (@keywords): Only include C99 keywords
46275         for standards based on C99 or C11.
46277         * conform/data/iso646.h-data [ISO || POSIX || XPG3 || XPG4]:
46278         Disable tests.
46279         * conform/data/stdint.h-data [ISO || POSIX || XPG3 || XPG4 ||
46280         UNIX98]: Likewise.
46282         * conform/conformtest.pl: Handle "macro-int-constant" and test for
46283         usability of symbols in #if.
46285         * conform/conformtest.pl: If macro or constant types start
46286         "promoted:", expect the symbol to be of the following type
46287         promoted by the integer promotions.
46289         * conform/conformtest.pl: Parse all "constant" and "macro" lines
46290         in one place.  Also handle "macro-constant".
46292         * conform/conformtest.pl: Only accept expected macro values with
46293         "==".  Parse all "macro" lines in one place.
46294         * conform/data/stdlib.h-data: Use "==" form on "macro" lines.
46296         * conform/conformtest.pl: Handle braced types on "constant" lines
46297         instead of handling "typed-constant".
46298         * conform/data/signal.h-data: Use "constant" instead of
46299         "typed-constant".
46301         * conform/conformtest.pl: Handle "optional-" at start of lines in
46302         one place rather than duplicating several cases.  Handle each
46303         format of "macro" line with initial "optional-".
46305         * conform/conformtest.pl: Only accept expected constant or
46306         optional-constant values with "==".  Parse all "constant" lines in
46307         one place.  Parse all "optional-constant" lines in one place.
46308         * conform/data/cpio.h-data: Use "==" form on "constant" lines.
46309         * conform/data/fmtmsg.h-data: Likewise.
46310         * conform/data/netinet/in.h-data: Likewise.
46311         * conform/data/tar.h-data: Likewise.
46312         * conform/data/limits.h-data: Use "==" form on "constant" and
46313         "optional-constant" lines.
46315         * conform/conformtest.pl: Use -ansi for XPG3, XPG4 and UNIX98.
46316         Use -std=c99 for XOPEN2K.
46317         (@knownproblems): Remove.
46318         (newtoken): Don't check %isknown.
46320         * conform/data/math.h-data [XPG3 || XPG4 || UNIX98] (fpclassify):
46321         Do not expect macro.
46322         [XPG3 || XPG4 || UNIX98] (isfinite): Likewise.
46323         [XPG3 || XPG4 || UNIX98] (isinf): Likewise.
46324         [XPG3 || XPG4 || UNIX98] (isnan): Likewise.
46325         [XPG3 || XPG4 || UNIX98] (isnormal): Likewise.
46326         [XPG3 || XPG4 || UNIX98] (signbit): Likewise.
46327         [XPG3 || XPG4 || UNIX98] (isgreater): Likewise.
46328         [XPG3 || XPG4 || UNIX98] (isgreaterequal): Likewise.
46329         [XPG3 || XPG4 || UNIX98] (isless): Likewise.
46330         [XPG3 || XPG4 || UNIX98] (islessequal): Likewise.
46331         [XPG3 || XPG4 || UNIX98] (islessgreater): Likewise.
46332         [XPG3 || XPG4 || UNIX98] (isunordered): Likewise.
46333         [XPG3 || XPG4 || UNIX98] (isnan): Expect as function.
46334         [XPG3 || XPG4 || UNIX98] (HUGE_VALF): Do not expect.
46335         [XPG3 || XPG4 || UNIX98] (HUGE_VALL): Likewise.
46336         [XPG3 || XPG4 || UNIX98] (INFINITY): Likewise.
46337         [XPG3 || XPG4 || UNIX98] (NAN): Likewise.
46338         [XPG3 || XPG4 || UNIX98] (FP_INFINITE): Likewise.
46339         [XPG3 || XPG4 || UNIX98] (FP_NAN): Likewise.
46340         [XPG3 || XPG4 || UNIX98] (FP_NORMAL): Likewise.
46341         [XPG3 || XPG4 || UNIX98] (FP_SUBNORMAL): Likewise.
46342         [XPG3 || XPG4 || UNIX98] (FP_ZERO): Likewise.
46343         [XPG3 || XPG4 || UNIX98] (FP_FAST_FMA): Likewise.
46344         [XPG3 || XPG4 || UNIX98] (FP_FAST_FMAF): Likewise.
46345         [XPG3 || XPG4 || UNIX98] (FP_FAST_FMAL): Likewise.
46346         [XPG3 || XPG4 || UNIX98] (FP_ILOGB0): Likewise.
46347         [XPG3 || XPG4 || UNIX98] (FP_ILOGBNAN): Likewise.
46348         [XPG3 || XPG4 || UNIX98] (copysign): Likewise.
46349         [XPG3 || XPG4 || UNIX98] (exp2): Likewise.
46350         [XPG3 || XPG4 || UNIX98] (log2): Likewise.
46351         [XPG3 || XPG4 || UNIX98] (tgama): Likewise.
46352         [XPG3] (acosh): Likewise.
46353         [XPG3] (asinh): Likewise.
46354         [XPG3] (atanh): Likewise.
46355         [XPG3] (cbrt): Likewise.
46356         [XPG3] (expm1): Likewise.
46357         [XPG3] (ilogb): Likewise.
46358         [XPG3] (log1p): Likewise.
46359         [XPG3] (logb): Likewise.
46360         [XPG3] (nextafter): Likewise.
46361         [XPG3 || XPG4 || UNIX98] (nexttoward): Likewise.
46362         [XPG3 || XPG4 || UNIX98] (nearbyint): Likewise.
46363         [XPG3] (remainder): Likewise.
46364         [XPG3] (rint): Likewise.
46365         [XPG3 || XPG4 || UNIX98] (round): Likewise.
46366         [XPG3 || XPG4 || UNIX98] (trunc): Likewise.
46367         [XPG3 || XPG4 || UNIX98] (lrint): Likewise.
46368         [XPG3 || XPG4 || UNIX98] (llrint): Likewise.
46369         [XPG3 || XPG4 || UNIX98] (lround): Likewise.
46370         [XPG3 || XPG4 || UNIX98] (llround): Likewise.
46371         [XPG3 || XPG4 || UNIX98] (remquo): Likewise.
46372         [UNIX98 || XOPEN2K] (scalb): Expect.
46373         [XPG3 || XPG4 || UNIX98] (scalbn): Do not expect.
46374         [XPG3 || XPG4 || UNIX98] (scalbln): Likewise.
46375         [XPG3 || XPG4 || UNIX98] (fdim): Likewise.
46376         [XPG3 || XPG4 || UNIX98] (fmax): Likewise.
46377         [XPG3 || XPG4 || UNIX98] (fmin): Likewise.
46378         [XPG3 || XPG4 || UNIX98] (fma): Likewise.
46379         [XPG3 || XPG4 || UNIX98] (nan): Likewise.
46380         [XPG3 || XPG4 || UNIX98] (acosf): Likewise.
46381         [XPG3 || XPG4 || UNIX98] (asinf): Likewise.
46382         [XPG3 || XPG4 || UNIX98] (atanf): Likewise.
46383         [XPG3 || XPG4 || UNIX98] (atan2f): Likewise.
46384         [XPG3 || XPG4 || UNIX98] (ceilf): Likewise.
46385         [XPG3 || XPG4 || UNIX98] (copysignf): Likewise.
46386         [XPG3 || XPG4 || UNIX98] (cosf): Likewise.
46387         [XPG3 || XPG4 || UNIX98] (coshf): Likewise.
46388         [XPG3 || XPG4 || UNIX98] (expf): Likewise.
46389         [XPG3 || XPG4 || UNIX98] (exp2f): Likewise.
46390         [XPG3 || XPG4 || UNIX98] (fabsf): Likewise.
46391         [XPG3 || XPG4 || UNIX98] (floorf): Likewise.
46392         [XPG3 || XPG4 || UNIX98] (fmodf): Likewise.
46393         [XPG3 || XPG4 || UNIX98] (frexpf): Likewise.
46394         [XPG3 || XPG4 || UNIX98] (ldexpf): Likewise.
46395         [XPG3 || XPG4 || UNIX98] (logf): Likewise.
46396         [XPG3 || XPG4 || UNIX98] (log10f): Likewise.
46397         [XPG3 || XPG4 || UNIX98] (log2f): Likewise.
46398         [XPG3 || XPG4 || UNIX98] (modff): Likewise.
46399         [XPG3 || XPG4 || UNIX98] (powf): Likewise.
46400         [XPG3 || XPG4 || UNIX98] (sinf): Likewise.
46401         [XPG3 || XPG4 || UNIX98] (sinhf): Likewise.
46402         [XPG3 || XPG4 || UNIX98] (sqrtf): Likewise.
46403         [XPG3 || XPG4 || UNIX98] (tanf): Likewise.
46404         [XPG3 || XPG4 || UNIX98] (tanhf): Likewise.
46405         [XPG3 || XPG4 || UNIX98] (erff): Likewise.
46406         [XPG3 || XPG4 || UNIX98] (erfcf): Likewise.
46407         [XPG3 || XPG4 || UNIX98] (gammaf): Likewise.
46408         [XPG3 || XPG4 || UNIX98] (hypotf): Likewise.
46409         [XPG3 || XPG4 || UNIX98] (j0f): Likewise.
46410         [XPG3 || XPG4 || UNIX98] (j1f): Likewise.
46411         [XPG3 || XPG4 || UNIX98] (jnf): Likewise.
46412         [XPG3 || XPG4 || UNIX98] (lgammaf): Likewise.
46413         [XPG3 || XPG4 || UNIX98] (tgammaf): Likewise.
46414         [XPG3 || XPG4 || UNIX98] (y0f): Likewise.
46415         [XPG3 || XPG4 || UNIX98] (y1f): Likewise.
46416         [XPG3 || XPG4 || UNIX98] (ynf): Likewise.
46417         [XPG3 || XPG4 || UNIX98] (acoshf): Likewise.
46418         [XPG3 || XPG4 || UNIX98] (asinhf): Likewise.
46419         [XPG3 || XPG4 || UNIX98] (atanhf): Likewise.
46420         [XPG3 || XPG4 || UNIX98] (cbrtf): Likewise.
46421         [XPG3 || XPG4 || UNIX98] (expm1f): Likewise.
46422         [XPG3 || XPG4 || UNIX98] (ilogbf): Likewise.
46423         [XPG3 || XPG4 || UNIX98] (log1pf): Likewise.
46424         [XPG3 || XPG4 || UNIX98] (logbf): Likewise.
46425         [XPG3 || XPG4 || UNIX98] (nextafterf): Likewise.
46426         [XPG3 || XPG4 || UNIX98] (nexttowardf): Likewise.
46427         [XPG3 || XPG4 || UNIX98] (nearbyintf): Likewise.
46428         [XPG3 || XPG4 || UNIX98] (remainderf): Likewise.
46429         [XPG3 || XPG4 || UNIX98] (rintf): Likewise.
46430         [XPG3 || XPG4 || UNIX98] (roundf): Likewise.
46431         [XPG3 || XPG4 || UNIX98] (truncf): Likewise.
46432         [XPG3 || XPG4 || UNIX98] (lrintf): Likewise.
46433         [XPG3 || XPG4 || UNIX98] (llrintf): Likewise.
46434         [XPG3 || XPG4 || UNIX98] (lroundf): Likewise.
46435         [XPG3 || XPG4 || UNIX98] (llroundf): Likewise.
46436         [XPG3 || XPG4 || UNIX98] (remquof): Likewise.
46437         [XPG3 || XPG4 || UNIX98] (scalbf): Likewise.
46438         [XPG3 || XPG4 || UNIX98] (scalbnf): Likewise.
46439         [XPG3 || XPG4 || UNIX98] (scalblnf): Likewise.
46440         [XPG3 || XPG4 || UNIX98] (fdimf): Likewise.
46441         [XPG3 || XPG4 || UNIX98] (fmaxf): Likewise.
46442         [XPG3 || XPG4 || UNIX98] (fminf): Likewise.
46443         [XPG3 || XPG4 || UNIX98] (fmaf): Likewise.
46444         [XPG3 || XPG4 || UNIX98] (nanf): Likewise.
46445         [XPG3 || XPG4 || UNIX98] (acosl): Likewise.
46446         [XPG3 || XPG4 || UNIX98] (asinl): Likewise.
46447         [XPG3 || XPG4 || UNIX98] (atanl): Likewise.
46448         [XPG3 || XPG4 || UNIX98] (atan2l): Likewise.
46449         [XPG3 || XPG4 || UNIX98] (ceill): Likewise.
46450         [XPG3 || XPG4 || UNIX98] (copysignl): Likewise.
46451         [XPG3 || XPG4 || UNIX98] (cosl): Likewise.
46452         [XPG3 || XPG4 || UNIX98] (coshl): Likewise.
46453         [XPG3 || XPG4 || UNIX98] (expl): Likewise.
46454         [XPG3 || XPG4 || UNIX98] (exp2l): Likewise.
46455         [XPG3 || XPG4 || UNIX98] (fabsl): Likewise.
46456         [XPG3 || XPG4 || UNIX98] (floorl): Likewise.
46457         [XPG3 || XPG4 || UNIX98] (fmodl): Likewise.
46458         [XPG3 || XPG4 || UNIX98] (frexpl): Likewise.
46459         [XPG3 || XPG4 || UNIX98] (ldexpl): Likewise.
46460         [XPG3 || XPG4 || UNIX98] (logl): Likewise.
46461         [XPG3 || XPG4 || UNIX98] (log10l): Likewise.
46462         [XPG3 || XPG4 || UNIX98] (log2l): Likewise.
46463         [XPG3 || XPG4 || UNIX98] (modfl): Likewise.
46464         [XPG3 || XPG4 || UNIX98] (powl): Likewise.
46465         [XPG3 || XPG4 || UNIX98] (sinl): Likewise.
46466         [XPG3 || XPG4 || UNIX98] (sinhl): Likewise.
46467         [XPG3 || XPG4 || UNIX98] (sqrtl): Likewise.
46468         [XPG3 || XPG4 || UNIX98] (tanl): Likewise.
46469         [XPG3 || XPG4 || UNIX98] (tanhl): Likewise.
46470         [XPG3 || XPG4 || UNIX98] (erfl): Likewise.
46471         [XPG3 || XPG4 || UNIX98] (erfcl): Likewise.
46472         [XPG3 || XPG4 || UNIX98] (gammal): Likewise.
46473         [XPG3 || XPG4 || UNIX98] (hypotl): Likewise.
46474         [XPG3 || XPG4 || UNIX98] (j0l): Likewise.
46475         [XPG3 || XPG4 || UNIX98] (j1l): Likewise.
46476         [XPG3 || XPG4 || UNIX98] (jnl): Likewise.
46477         [XPG3 || XPG4 || UNIX98] (lgammal): Likewise.
46478         [XPG3 || XPG4 || UNIX98] (tgammal): Likewise.
46479         [XPG3 || XPG4 || UNIX98] (y0l): Likewise.
46480         [XPG3 || XPG4 || UNIX98] (y1l): Likewise.
46481         [XPG3 || XPG4 || UNIX98] (ynl): Likewise.
46482         [XPG3 || XPG4 || UNIX98] (acoshl): Likewise.
46483         [XPG3 || XPG4 || UNIX98] (asinhl): Likewise.
46484         [XPG3 || XPG4 || UNIX98] (atanhl): Likewise.
46485         [XPG3 || XPG4 || UNIX98] (cbrtl): Likewise.
46486         [XPG3 || XPG4 || UNIX98] (expm1l): Likewise.
46487         [XPG3 || XPG4 || UNIX98] (ilogbl): Likewise.
46488         [XPG3 || XPG4 || UNIX98] (log1pl): Likewise.
46489         [XPG3 || XPG4 || UNIX98] (logbl): Likewise.
46490         [XPG3 || XPG4 || UNIX98] (nextafterl): Likewise.
46491         [XPG3 || XPG4 || UNIX98] (nexttowardl): Likewise.
46492         [XPG3 || XPG4 || UNIX98] (nearbyintl): Likewise.
46493         [XPG3 || XPG4 || UNIX98] (remainderl): Likewise.
46494         [XPG3 || XPG4 || UNIX98] (rintl): Likewise.
46495         [XPG3 || XPG4 || UNIX98] (roundl): Likewise.
46496         [XPG3 || XPG4 || UNIX98] (truncl): Likewise.
46497         [XPG3 || XPG4 || UNIX98] (lrintl): Likewise.
46498         [XPG3 || XPG4 || UNIX98] (llrintl): Likewise.
46499         [XPG3 || XPG4 || UNIX98] (lroundl): Likewise.
46500         [XPG3 || XPG4 || UNIX98] (llroundl): Likewise.
46501         [XPG3 || XPG4 || UNIX98] (remquol): Likewise.
46502         [XPG3 || XPG4 || UNIX98] (scalbl): Likewise.
46503         [XPG3 || XPG4 || UNIX98] (scalbnl): Likewise.
46504         [XPG3 || XPG4 || UNIX98] (scalblnl): Likewise.
46505         [XPG3 || XPG4 || UNIX98] (fdiml): Likewise.
46506         [XPG3 || XPG4 || UNIX98] (fmaxl): Likewise.
46507         [XPG3 || XPG4 || UNIX98] (fminl): Likewise.
46508         [XPG3 || XPG4 || UNIX98] (fmal): Likewise.
46509         [XPG3 || XPG4 || UNIX98] (nanl): Likewise.
46511         * conform/conformtest.pl: Define _XOPEN_SOURCE as well as
46512         _XOPEN_SOURCE_EXTENDED for XPG4.
46514         * conform/conformtest.pl: Handle "symbol" lines for allow-header.
46516         * Makeconfig (localtime): Remove variable.
46517         (inst_localtime-file): Likewise.
46519 2012-05-01  Andreas Schwab  <schwab@linux-m68k.org>
46521         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/ld.abilist:
46522         Update.
46523         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
46524         Update.
46525         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libm.abilist:
46526         Update.
46527         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
46528         Update.
46529         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/librt.abilist:
46530         Update.
46531         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist:
46532         Update.
46533         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
46534         Update.
46535         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist:
46536         Update.
46537         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
46538         Update.
46540 2012-05-01  Joseph Myers  <joseph@codesourcery.com>
46542         [BZ #2550]
46543         [BZ #2570]
46544         * math/s_nexttowardf.c (__nexttowardf): Use floating-point
46545         comparisons to determine direction to adjust input.
46546         * sysdeps/i386/fpu/s_nexttoward.c (__nexttoward): Likewise.
46547         * sysdeps/i386/fpu/s_nexttowardf.c(__nexttowardf): Likewise.
46548         * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward):
46549         Likewise.
46550         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c (__nexttowardf):
46551         Likewise.
46552         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c (__nexttowardf):
46553         Likewise.
46554         * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
46555         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c (__nexttowardf):
46556         Likewise.
46557         * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c (__nldbl_nexttowardf):
46558         Likewise.
46559         * math/libm-test.inc (nexttoward_test): Add more tests.
46561 2012-05-01  Andreas Schwab  <schwab@linux-m68k.org>
46563         [BZ #14040]
46564         * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S (nearbyintl): Define
46565         in version GLIBC_2.1, not GLIBC_2.0.
46566         * sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S (nearbyintl):
46567         Likewise.
46569 2012-04-30  Joseph Myers  <joseph@codesourcery.com>
46571         [BZ #13942]
46572         * sysdeps/i386/fpu/e_acos.S (__ieee754_acos): Calculate 1 - x^2 as
46573         (1 - x) * (1 + x).
46574         * sysdeps/i386/fpu/e_acosl.c (__ieee754_acosl): Likewise.
46575         * sysdeps/i386/fpu/e_asin.S (__ieee754_asin): Likewise.
46576         * math/libm-test.inc (acos_test): Add more tests.
46577         (asin_test): Likewise.
46578         * sysdeps/i386/fpu/libm-test-ulps: Update.
46579         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
46581         [BZ #14034]
46582         * sysdeps/i386/fpu/e_acos.S (__ieee754_acos): Take absolute value
46583         of square root.
46584         * sysdeps/i386/fpu/e_acosf.S (__ieee754_acosf): Likewise.
46585         * sysdeps/i386/fpu/e_acosl.c (__ieee754_acosl): Likewise.
46586         * math/libm-test.inc (acos_test_tonearest): New function.
46587         (acos_test_towardzero): Likewise.
46588         (acos_test_downward): Likewise.
46589         (acos_test_upward): Likewise.
46590         (asin_test_tonearest): Likewise.
46591         (asin_test_towardzero): Likewise.
46592         (asin_test_downward): Likewise.
46593         (asin_test_upward): Likewise.
46594         (main): Call the new functions.
46595         * sysdeps/i386/fpu/libm-test-ulps: Update.
46596         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
46598         [BZ #13884]
46599         [BZ #13924]
46600         * math/e_exp10.c: Include <float.h>.
46601         (__ieee754_exp10): Handle underflow here rather than multiplying
46602         large negative argument by M_LN10.
46603         * math/e_exp10f.c (__ieee754_exp10f): Call __ieee754_exp instead
46604         of __ieee754_expf.
46605         * math/e_exp10l.c: Include <float.h>.
46606         (__ieee754_exp10l): Handle underflow here rather than multiplying
46607         large negative argument by M_LN10l.
46608         * math/libm-test.inc (exp10_test): Add another test.  Do not allow
46609         spurious overflow exception on underflow.
46611 2012-04-29  Marek Polacek  <polacek@redhat.com>
46613         * misc/sys/cdefs.h (__attribute_artificial__): New macro.
46614         (__fortify_function): New macro.
46615         (__extern_always_inline): Don't use __attribute__ ((__artificial__)).
46616         * libio/bits/stdio-ldbl.h: Use __fortify_function in place of
46617         __extern_always_inline.
46618         * libio/bits/stdio2.h: Likewise.
46619         * libio/bits/stdio.h: Likewise.
46620         * string/string.h: Likewise.
46621         * string/bits/string3.h: Likewise.
46622         * include/stdio.h: Likewise.
46623         * stdlib/bits/stdlib.h: Likewise.
46624         * stdlib/stdlib.h: Likewise.
46625         * rt/bits/mqueue2.h: Likewise.
46626         * rt/mqueue.h: Likewise.
46627         * posix/bits/unistd.h: Likewise.
46628         * posix/unistd.h: Likewise.
46629         * io/bits/poll2.h: Likewise.
46630         * io/bits/fcntl2.h: Likewise.
46631         * io/fcntl.h: Likewise.
46632         * io/sys/poll.h: Likewise.
46633         * misc/bits/syslog.h: Likewise.
46634         * misc/bits/syslog-ldbl.h: Likewise.
46635         * misc/sys/syslog.h: Likewise.
46636         * socket/bits/socket2.h: Likewise.
46637         * socket/sys/socket.h: Likewise.
46638         * debug/tst-chk1.c: Likewise.
46639         * wcsmbs/bits/wchar2.h: Likewise.
46640         * wcsmbs/bits/wchar-ldbl.h: Likewise.
46641         * wcsmbs/wchar.h: Likewise.
46643 2012-04-29  Andreas Jaeger  <aj@suse.de>
46645         * Makerules (tests): Remove enable-check-abi protection.
46646         (check-abi-warn): Remove.
46647         (check-abi-%): Remove check-abi-warn usage.
46649         * configure.in: Remove check-abi configure option.
46650         * configure: Regenerated.
46651         * config.make.in (enable-check-abi): Remove.
46653 2012-04-28  Andreas Schwab  <schwab@linux-m68k.org>
46655         [BZ #14033]
46656         * math/bits/math-finite.h [__NO_LONG_DOUBLE_MATH]: Redirect long
46657         double functions to double *_finite functions.
46659         [BZ #13941]
46660         * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c
46661         (__mpn_extract_long_double): Use DBL_MIN_EXP instead of
46662         LDBL_MIN_EXP.
46663         * stdio-common/Makefile (tests): Add tst-sprintf3.
46664         * stdio-common/tst-sprintf3.c: New file.
46666         * elf/Makefile ($(objpfx)tst-leaks1-mem, $(objpfx)noload-mem)
46667         ($(objpfx)tst-unused-dep.out): Don't run when cross-compiling.
46669 2012-04-28  Joseph Myers  <joseph@codesourcery.com>
46671         * conform/conformtest.pl: Remove duplicate typed-constant
46672         handling.
46674 2012-04-28  David S. Miller  <davem@davemloft.net>
46676         * Makerules (%.abilist): Add vpath on sysdep_dirs.
46677         (check-abi-%): Remove AWK script prerequisite and explicit
46678         abilist directory.
46679         (check-abi): Rewrite to just diff the symlist with the abilist.
46680         (config-tls, config-abi-config): Delete, no longer used.
46681         (update-abi-%): Remove AWK script and explicit abilist directory.
46682         (update-abi): Rewrite to simply compare and conditionally copy the
46683         symlist and the sysdep abilist file.  Remove update-abi-config
46684         checks.
46685         * abilist/ld.abilist: Remove.
46686         * abilist/libBrokenLocale.abilist: Remove.
46687         * abilist/libanl.abilist: Remove.
46688         * abilist/libcrypt.abilist: Remove.
46689         * abilist/libdl.abilist: Remove.
46690         * abilist/librt.abilist: Remove.
46691         * abilist/libthread_db.abilist: Remove.
46692         * abilist/libutil.abilist: Remove.
46693         * scripts/extract-abilist.awk: Remove.
46694         * scripts/merge-abilist.awk: Remove.
46695         * sysdeps/generic/libcidn.abilist: New file.
46696         * sysdeps/generic/libnss_compat.abilist: New file.
46697         * sysdeps/generic/libnss_db.abilist: New file.
46698         * sysdeps/generic/libnss_dns.abilist: New file.
46699         * sysdeps/generic/libnss_files.abilist: New file.
46700         * sysdeps/generic/libnss_hesiod.abilist: New file.
46701         * sysdeps/generic/libnss_nis.abilist: New file.
46702         * sysdeps/generic/libnss_nisplus.abilist: New file.
46703         * sysdeps/unix/sysv/linux/i386/nptl/ld.abilist: New file.
46704         * sysdeps/unix/sysv/linux/i386/nptl/libanl.abilist: New file.
46705         * sysdeps/unix/sysv/linux/i386/nptl/libBrokenLocale.abilist: New
46706         file.
46707         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: New file.
46708         * sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist: New file.
46709         * sysdeps/unix/sysv/linux/i386/nptl/libdl.abilist: New file.
46710         * sysdeps/unix/sysv/linux/i386/nptl/libm.abilist: New file.
46711         * sysdeps/unix/sysv/linux/i386/nptl/libnsl.abilist: New file.
46712         * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: New file.
46713         * sysdeps/unix/sysv/linux/i386/nptl/libresolv.abilist: New file.
46714         * sysdeps/unix/sysv/linux/i386/nptl/librt.abilist: New file.
46715         * sysdeps/unix/sysv/linux/i386/nptl/libthread_db.abilist: New
46716         file.
46717         * sysdeps/unix/sysv/linux/i386/nptl/libutil.abilist: New file.
46718         * sysdeps/unix/sysv/linux/x86_64/nptl/ld.abilist: New file.
46719         * sysdeps/unix/sysv/linux/x86_64/nptl/libanl.abilist: New file.
46720         * sysdeps/unix/sysv/linux/x86_64/nptl/libBrokenLocale.abilist: New
46721         file.
46722         * sysdeps/unix/sysv/linux/x86_64/nptl/libc.abilist: New file.
46723         * sysdeps/unix/sysv/linux/x86_64/nptl/libcrypt.abilist: New file.
46724         * sysdeps/unix/sysv/linux/x86_64/nptl/libdl.abilist: New file.
46725         * sysdeps/unix/sysv/linux/x86_64/nptl/libm.abilist: New file.
46726         * sysdeps/unix/sysv/linux/x86_64/nptl/libnsl.abilist: New file.
46727         * sysdeps/unix/sysv/linux/x86_64/nptl/libpthread.abilist: New
46728         file.
46729         * sysdeps/unix/sysv/linux/x86_64/nptl/libresolv.abilist: New file.
46730         * sysdeps/unix/sysv/linux/x86_64/nptl/librt.abilist: New file.
46731         * sysdeps/unix/sysv/linux/x86_64/nptl/libthread_db.abilist: New
46732         file.
46733         * sysdeps/unix/sysv/linux/x86_64/nptl/libutil.abilist: New file.
46734         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/ld.abilist:
46735         New file.
46736         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libanl.abilist:
46737         New file.
46738         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libBrokenLocale.abilist:
46739         New file.
46740         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libc.abilist:
46741         New file.
46742         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libcrypt.abilist:
46743         New file.
46744         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libdl.abilist:
46745         New file.
46746         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libm.abilist:
46747         New file.
46748         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libnsl.abilist:
46749         New file.
46750         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libpthread.abilist:
46751         New file.
46752         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libresolv.abilist:
46753         New file.
46754         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/librt.abilist:
46755         New file.
46756         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libthread_db.abilist:
46757         New file.
46758         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libutil.abilist:
46759         New file.
46760         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist: New
46761         file.
46762         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl.abilist:
46763         New file.
46764         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale.abilist:
46765         New file.
46766         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist: New
46767         file.
46768         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist:
46769         New file.
46770         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl.abilist:
46771         New file.
46772         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist: New
46773         file.
46774         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl.abilist:
46775         New file.
46776         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
46777         New file.
46778         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv.abilist:
46779         New file.
46780         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt.abilist:
46781         New file.
46782         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db.abilist:
46783         New file.
46784         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil.abilist:
46785         New file.
46786         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: New file.
46787         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libanl.abilist: New
46788         file.
46789         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libBrokenLocale.abilist:
46790         New file.
46791         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: New
46792         file.
46793         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist: New
46794         file.
46795         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libdl.abilist: New
46796         file.
46797         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: New
46798         file.
46799         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libnsl.abilist: New
46800         file.
46801         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
46802         New file.
46803         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libresolv.abilist: New
46804         file.
46805         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: New
46806         file.
46807         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libthread_db.abilist:
46808         New file.
46809         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: New
46810         file.
46811         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: New file.
46812         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libanl.abilist: New
46813         file.
46814         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libBrokenLocale.abilist:
46815         New file.
46816         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: New
46817         file.
46818         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist: New
46819         file.
46820         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libdl.abilist: New
46821         file.
46822         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: New
46823         file.
46824         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libnsl.abilist: New
46825         file.
46826         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
46827         New file.
46828         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libresolv.abilist: New
46829         file.
46830         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/librt.abilist: New
46831         file.
46832         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libthread_db.abilist:
46833         New file.
46834         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libutil.abilist: New
46835         file.
46836         * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: New file.
46837         * sysdeps/unix/sysv/linux/sh/nptl/libanl.abilist: New file.
46838         * sysdeps/unix/sysv/linux/sh/nptl/libBrokenLocale.abilist: New
46839         file.
46840         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: New file.
46841         * sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist: New file.
46842         * sysdeps/unix/sysv/linux/sh/nptl/libdl.abilist: New file.
46843         * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: New file.
46844         * sysdeps/unix/sysv/linux/sh/nptl/libnsl.abilist: New file.
46845         * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist: New file.
46846         * sysdeps/unix/sysv/linux/sh/nptl/libresolv.abilist: New file.
46847         * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: New file.
46848         * sysdeps/unix/sysv/linux/sh/nptl/libthread_db.abilist: New file.
46849         * sysdeps/unix/sysv/linux/sh/nptl/libutil.abilist: New file.
46850         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/ld.abilist: New file.
46851         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libanl.abilist: New
46852         file.
46853         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libBrokenLocale.abilist:
46854         New file.
46855         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: New
46856         file.
46857         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist: New
46858         file.
46859         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libdl.abilist: New
46860         file.
46861         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libm.abilist: New
46862         file.
46863         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libnsl.abilist: New
46864         file.
46865         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
46866         New file.
46867         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libresolv.abilist:
46868         New file.
46869         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/librt.abilist: New
46870         file.
46871         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libthread_db.abilist:
46872         New file.
46873         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libutil.abilist: New
46874         file.
46875         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/ld.abilist: New file.
46876         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libanl.abilist: New
46877         file.
46878         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libBrokenLocale.abilist:
46879         New file.
46880         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: New
46881         file.
46882         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist: New
46883         file.
46884         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libdl.abilist: New
46885         file.
46886         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libm.abilist: New
46887         file.
46888         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libnsl.abilist: New
46889         file.
46890         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
46891         New file.
46892         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libresolv.abilist:
46893         New file.
46894         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/librt.abilist: New
46895         file.
46896         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libthread_db.abilist:
46897         New file.
46898         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libutil.abilist: New
46899         file.
46901 2012-04-28  Joseph Myers  <joseph@codesourcery.com>
46903         * conform/conformtest.pl: Fix typo in handling typed-constant from
46904         allow-header.
46906 2012-04-27  Joseph Myers  <joseph@codesourcery.com>
46908         * README: Cut down references to pre-2.6 Linux kernels and
46909         Linuxthreads.  Update lists of configurations in libc and ports
46910         and sort alphabetically.  Say "or newer" with Linux kernel version
46911         requirements.
46913         * config.h.in [IS_IN_build]: Allow compiling without optimization.
46915 2012-04-27  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
46917         [BZ #887]
46918         * math/libm-test.inc (logb_test_downward): New test to expose
46919         erroneous negative sign on -0.0 result of logb[l](1) in FE_DOWNWARD
46920         rounding mode.
46922 2012-04-27  Joseph Myers  <joseph@codesourcery.com>
46924         [BZ #14027]
46925         * math/fclrexcpt.c (__feclearexcept): Return zero if nothing needs
46926         to be done.
46927         * math/fraiseexcpt.c (__feraiseexcept): Likewise.
46928         * math/fsetexcptflg.c (__fesetexceptflag): Likewise.
46930 2012-04-26  Joseph Myers  <joseph@codesourcery.com>
46932         * sysdeps/unix/i386/brk.S: Remove file.
46933         * sysdeps/unix/i386/dl-brk.S: Likewise.
46934         * sysdeps/unix/i386/pipe.S: Likewise.
46935         * sysdeps/unix/i386/sigreturn.S: Likewise.
46936         * sysdeps/unix/i386/syscall.S: Likewise.
46937         * sysdeps/unix/i386/vfork.S: Likewise.
46938         * sysdeps/unix/i386/wait.S: Likewise.
46940         * sysdeps/unix/common/tcsendbrk.c: Move to ...
46941         * sysdeps/unix/sysv/linux/tcsendbrk.c: ... here.
46943         * configure.in (arm*-none*): Do not allow without
46944         --enable-hacker-mode.
46945         (netbsd*): Remove case setting base_os.
46946         (386bsd*): Likewise.
46947         (freebsd*): Likewise.
46948         (bsdi*): Likewise.
46949         (osf*): Likewise.
46950         (sunos*): Likewise.
46951         (ultrix*): Likewise.
46952         (newsos*): Likewise.
46953         (dynix*): Likewise.
46954         (*bsd*): Likewise.
46955         (sysv*): Likewise.
46956         (isc*): Likewise.
46957         (esix*): Likewise.
46958         (sco*): Likewise.
46959         (minix*): Likewise.
46960         (irix4*): Likewise.
46961         (irix6*): Likewise.
46962         (solaris[2-9]*): Likewise.
46963         (none): Likewise.
46964         * configure: Regenerated.
46966 2012-04-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
46968         [BZ #11521]
46969         * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c (__ctanhl): Avoid internal
46970         overflow or cancellation in calculating denominator.
46971         * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c (__ctanl): Likewise.
46972         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c (__ieee754_sinhl): Breaking
46973         down expression to avoid unexpected rounding in newer GCCs.
46974         * sysdeps/powerpc/fpu/libm-test-ulps: Update for ctan, ctanh fix.
46976 2012-04-26  David S. Miller  <davem@davemloft.net>
46978         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Generate
46979         long-double compat symbols.
46980         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
46981         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: Likewise.
46982         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: Likewise.
46983         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: Likewise.
46984         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Likewise.
46985         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Likewise.
46986         * sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S: Likewise.
46987         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S: Likewise.
46988         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S: Likewise.
46989         * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: Likewise.
46990         * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: Likewise.
46991         * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S: Likewise.
46992         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Likewise.
46994 2012-04-25  David S. Miller  <davem@davemloft.net>
46996         * sysdeps/sparc/sparc32/bits/atomic.h: Include sysdep.h to get
46997         HWCAP_* values only after the memory barriers have been defined.
46998         (atomic_full_barrier): Define.
46999         (atomic_read_barrier): Define.
47000         (atomic_write_barrier): Define.
47002 2012-04-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
47004         * shlib-versions: Add libgcc_s version information.
47005         * sysdeps/generic/libgcc_s.h: Remove.
47006         * sysdeps/generic/framestate.c: Include gnu/lib-names.h instead of
47007         libgcc_s.h.
47008         * sysdeps/gnu/unwind-resume.c: Likewise.
47009         * scripts/test-installation.pl: Remove libgcc_s from link_libs.
47011 2012-04-25  David S. Miller  <davem@davemloft.net>
47013         * sysdeps/unix/sparc/brk.S: Delete.
47014         * sysdeps/unix/sparc/dl-brk.S: Delete.
47015         * sysdeps/unix/sparc/pipe.S: Delete.
47016         * sysdeps/unix/sparc/sysdep.S: Delete.
47017         * sysdeps/unix/sparc/sysdep.h: Delete.
47018         * sysdeps/unix/sparc/vfork.S: Delete.
47019         * sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK, SPARC_PIC_REG)
47020         (SPARC_PIC_REG_LEAF, ENTRY, END, LOC): Define.
47021         * sysdeps/unix/sysv/linux/sparc/sysdep.h (ret, ret_NOERRNO)
47022         (ret_ERRVAL, r0, r1, MOVE): Define.
47023         (JUMPTARGET): Remove.
47024         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Don't include
47025         sysdeps/unix/sparc/sysdep.h
47026         (ENTRY, END): Remove.
47027         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
47029 2012-04-25  Joseph Myers  <joseph@codesourcery.com>
47031         * Makerules (native-compile): Use $(BUILD_LDFLAGS).
47032         (ALL_BUILD_CFLAGS): Use $(BUILD_CPPFLAGS) -D_GNU_SOURCE
47033         -DIS_IN_build.
47035         * timezone/README: Update upstream location and email address for
47036         tzcode and tzdata.
47037         * timezone/zdump.c: Update from tzcode 2012b.
47038         * timezone/zic.c: Likewise.
47040         * configure.in (libc_cv_as_needed): Remove test.
47041         * configure: Regenerated.
47042         * Makeconfig [$(have-as-needed) != yes] (as-needed): Remove
47043         conditional definition.
47044         [$(have-as-needed) != yes] (no-as-needed): Likewise.
47045         [$(have-as-needed) != yes] (libgcc_eh): Likewise.
47046         * config.make.in (have-as-needed): Remove variable.
47048 2012-04-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
47049             Paul Pluzhnikov  <ppluzhnikov@google.com>
47051         * elf/dl-minimal.c (__strtoul_internal): Parse hexadecimal and octal
47052         strings correctly.
47054 2012-04-25  Chung-Lin Tang  <cltang@codesourcery.com>
47056         * sysdeps/sh/memcpy.S: Remove include of endian.h, change
47057         preprocessor endian tests to '#ifdef __BIG_ENDIAN__'.
47058         * sysdeps/sh/strlen.S: Likewise.
47060 2012-04-24  Joseph Myers  <joseph@codesourcery.com>
47062         * sysdeps/unix/fork.S: Remove file.
47063         * sysdeps/unix/i386/fork.S: Likewise.
47064         * sysdeps/unix/sparc/fork.S: Likewise.
47066         * sysdeps/unix/system.c: Remove file.
47067         * sysdeps/unix/bsd/bsd4.4/system.c: Likewise.
47069         * sysdeps/unix/getegid.S: Remove file.
47070         * sysdeps/unix/geteuid.S: Likewise.
47072 2012-04-24  Roland McGrath  <roland@hack.frob.com>
47074         * scripts/check-localplt.awk: New file.
47075         * elf/Makefile ($(objpfx)check-localplt.out): Use that script instead
47076         of diff.
47077         * scripts/data/localplt-generic.data: Add a comment.
47079         * sysdeps/mach/hurd/symlink.c: Don't call __mach_port_deallocate on
47080         NODE when __dir_mkfile failed.
47081         * sysdeps/mach/hurd/symlinkat.c: Likewise.
47082         Reported by Ludovic Courtès <ludo@gnu.org>.
47084 2012-04-24  Andreas Jaeger  <aj@suse.de>
47086         * Makerules (common-clean): Also remove gen-as-const-headers
47087         files.
47089 2012-04-24  Joseph Myers  <joseph@codesourcery.com>
47091         * Makerules (native-compile): Do not change working directory for
47092         build.  Use $(OUTPUT_OPTION) in command.
47093         (ALL_BUILD_CFLAGS): Use $(common-objpfx) to find config.h.
47095 2012-04-24  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
47097         [BZ #13886]
47098         * sysdeps/powerpc/powerpc64/fpu/s_floorl.S: Delete file. Use the
47099         sysdeps/ieee754/ldbl-128ibm/s_floorl.c version instead.
47100         * math/libm-test.inc (floor_test): Add more tests.
47101         * sysdeps/powerpc/fpu/libm-test-ulps: Update for pow tests.
47103 2012-04-24  Joseph Myers  <joseph@codesourcery.com>
47105         * sysdeps/unix/getdents.c: Remove file.
47106         * sysdeps/unix/sysv/getdents.c: Likewise.
47107         * sysdeps/unix/sysv/syscalls.list (s_getdents): Remove.
47109         * sysdeps/unix/syscalls.list (madvise): Add syscall from
47110         sysdeps/unix/mman/syscalls.list.
47111         (mmap): Likewise.
47112         (mprotect): Likewise.
47113         (msync): Likewise.
47114         (munmap): Likewise.
47115         * sysdeps/unix/bsd/bsd4.4/Implies: Remove.
47116         * sysdeps/unix/mman/syscalls.list: Remove.
47117         * sysdeps/unix/sysv/linux/Implies: Don't include unix/mman.
47119         * configure.in (libc_cv_libgcc_s_suffix): Remove test.
47120         (libc_cv_as_needed): Don't use $libc_cv_libgcc_s_suffix.
47121         * configure: Regenerated.
47122         * Makeconfig [$(have-as-needed) = yes] (libgcc_eh): Don't use
47123         $(libgcc_s_suffix).
47124         * config.make.in (libgcc_s_suffix): Remove variable.
47126 2012-04-23  Joseph Myers  <joseph@codesourcery.com>
47128         * sysdeps/unix/sysv/gethostname.c: Move to ...
47129         * sysdeps/posix/gethostname.c: ... here.
47131         * sysdeps/unix/execve.S: Remove file.
47133         * sysdeps/unix/_exit.S: Remove file.
47135 2012-04-23  Andreas Jaeger  <aj@suse.de>
47137         [BZ #13739]
47138         * manual/Makefile: Remove make dist support, there's no
47139         need for a stand-alone documentation tar ball.
47140         (TEXI2DVI): Define always, it's not in Makeconfig.
47141         (dist): Removed.
47142         (tar-it): Removed.
47143         (edition): Removed.
47144         (glibc-doc-$(edition).tar): Removed
47145         (%.Z): Removed.
47146         (%.gz): Removed.
47147         (%.uu): Removed.
47148         (ETAGS): Remove, it's in Makeconfig.
47149         (move-if-change): Remove, it's in Makeconfig.
47151 2012-04-23  Paul Eggert  <eggert@cs.ucla.edu>
47153         [BZ #13970]
47154         * stdlib/stdlib.h: Remove warn_unused_result attribute from strtol etc.
47155         (strtod, strtof, strtold, strtol, strtoul, strtoq)
47156         (strtouq, strtoll, strtoull, strtol_l, strtoul_l, strtoll_l, strtoull_l)
47157         (strtod_l, strtof_l, strtold_l): Remove __wur.
47158         It is not necessarily an error to ignore strtol's return value.
47159         One can reliably look at the stored endptr to decide whether
47160         the number had valid syntax.
47162 2012-04-21  Andreas Jaeger  <aj@suse.de>
47164         [BZ #13739]
47165         * sysdeps/s390/s390-64/Makefile (distribute): Remove variable.
47167 2012-04-21  Joseph Myers  <joseph@codesourcery.com>
47169         * sysdeps/unix/sysv/linux/Versions (GLIBC_2.0): Add sysinfo.
47170         * sysdeps/unix/sysv/Versions: Remove file.
47172 2012-04-21  Markus Trippelsdorf  <markus@trippelsdorf.de>
47174         [BZ #13927]
47175         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
47177 2012-04-21  Nick Alcock  <nick.alcock@oracle.com>
47179         [BZ #7064]
47180         * sysdeps/unix/sysv/linux/i386/syscalls.list: Omit explicit
47181         version from __vm86.
47183 2012-04-20  Joseph Myers  <joseph@codesourcery.com>
47185         * sysdeps/unix/common/lxstat.c: Remove file.
47186         * sysdeps/unix/common/syscalls.list (sys_lstat): Remove.
47188         * sysdeps/unix/sysv/Makefile: Remove file.
47190         * sysdeps/unix/sysv/direct.h: Remove file.
47192         * sysdeps/unix/sysv/bits/dirent.h: Remove file.
47193         * sysdeps/unix/sysv/bits/fcntl.h: Likewise.
47194         * sysdeps/unix/sysv/bits/local_lim.h: Likewise.
47195         * sysdeps/unix/sysv/bits/signum.h: Likewise.
47196         * sysdeps/unix/sysv/bits/stat.h: Likewise.
47197         * sysdeps/unix/sysv/bits/utmp.h: Likewise.
47198         * sysdeps/unix/sysv/bits/utsname.h: Likewise.
47200         * sysdeps/unix/sysv/setrlimit.c: Remove file.
47202         * sysdeps/unix/xmknod.c: Remove file.
47203         * sysdeps/unix/syscalls.list (sys_mknod): Remove.
47205         * sysdeps/unix/sysv/settimeofday.c: Remove file.
47207         * sysdeps/unix/sysv/i386/time.S: Remove file.
47209         * sysdeps/unix/fxstat.c: Remove file.
47210         * sysdeps/unix/xstat.c: Likewise.
47211         * sysdeps/unix/syscalls.list (sys_fstat, sys_stat): Remove.
47213         * sysdeps/unix/sysv/sigaction.c: Remove file.
47215         * sysdeps/unix/sysv/Makefile [termio.h not in sysdep_headers]
47216         (sysdep_headers): Remove variable.
47217         [termio.h not in sysdep_headers] (generated): Likewise.
47218         [termio.h not in sysdep_headers] ($(objpfx)termio.h): Remove rule.
47219         * sysdeps/unix/sysv/sysv_termio.h: Remove file.
47220         * sysdeps/unix/sysv/tcdrain.c: Likewise.
47221         * sysdeps/unix/sysv/tcflow.c: Likewise.
47222         * sysdeps/unix/sysv/tcflush.c: Likewise.
47223         * sysdeps/unix/sysv/tcgetattr.c: Likewise.
47224         * sysdeps/unix/sysv/tcgetpgrp.c: Likewise.
47225         * sysdeps/unix/sysv/tcsendbrk.c: Likewise.
47226         * sysdeps/unix/sysv/tcsetattr.c: Likewise.
47227         * sysdeps/unix/sysv/tcsetpgrp.c: Likewise.
47229         * sysdeps/unix/siglist.c: Remove file.
47231         * sysdeps/unix/getppid.S: Remove file.
47233         * sysdeps/unix/mkdir.c: Remove file.
47234         * sysdeps/unix/rmdir.c: Likewise.
47236 2012-04-19  Andreas Schwab  <schwab@linux-m68k.org>
47238         * sysdeps/gnu/errlist-compat.awk (END): Correct computation of
47239         ERR_MAX value.
47240         * sysdeps/unix/sysv/linux/Versions (GLIBC_2.12): Adjust
47241         errlist-compat value.
47243 2012-04-18  David S. Miller  <davem@davemloft.net>
47245         * sysdeps/generic/memcopy.h (reg_char): Delete.
47246         * debug/strcat_chk.c: Use char, not reg_char.
47247         * debug/strcpy_chk.c: Likewise.
47248         * debug/strncat_chk.c: Likewise.
47249         * debug/strncpy_chk.c: Likewise.
47250         * string/memchr.c: Likewise.
47251         * string/memrchr.c: Likewise.
47252         * string/rawmemchr.c: Likewise.
47253         * string/strcat.c: Likewise.
47254         * string/strchr.c: Likewise.
47255         * string/strchrnul.c: Likewise.
47256         * string/strcmp.c: Likewise.
47257         * string/strcpy.c: Likewise.
47258         * string/strncat.c: Likewise.
47259         * string/strncmp.c: Likewise.
47260         * string/strncpy.c: Likewise.
47262 2012-04-18  Will Schmidt  <will_schmidt@vnet.ibm.com>
47264         * sysdeps/powerpc/memmove.c: New file based on string/memmove.c where
47265         __builtin_memcopy is called when src and dest ranges are known to not
47266         overlap.
47268 2012-04-18  Will Schmidt  <will_schmidt@vnet.ibm.com>
47270         * sysdeps/powerpc/powerpc64/power6/wordcopy.c
47271         (_wordcopy_fwd_dest_aligned): Replace switch with a parameterized
47272         fwd_align_merge macro call.
47273         (_wordcopy_bwd_dest_aligned): Replace switch with a parameterized
47274         bwd_align_merge macro call.
47275         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
47277 2012-04-18  Will Schmidt  <will_schmidt@vnet.ibm.com>
47279         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Add fwd_align_merge and
47280         bwd_align_merge macros.
47281         (_wordcopy_fwd_dest_aligned): Use fwd_align_merge macro calls.
47282         (_wordcopy_bwd_dest_aligned): Use bwd_align_merge macro calls.
47283         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
47285 2012-04-18  David S. Miller  <davem@davemloft.net>
47287         * sysdeps/sparc/sparc64/memcopy.h: Delete.
47289 2012-04-18  Andreas Jaeger  <aj@suse.de>
47291         [BZ# 6794]
47292         * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Moved to ...
47293         * sysdeps/ieee754/ldbl-96/e_ilogbl.c: ... here.
47294         Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
47296         * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Moved to ...
47297         * sysdeps/ieee754/ldbl-128/e_ilogbl.c: ... here.
47298         Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
47300         * sysdeps/ieee754/ldbl-64-128/s_ilogbl.c: Moved to ...
47301         * sysdeps/ieee754/ldbl-64-128/e_ilogbl.c: ... here.
47302         Adjust for changed ldbl-128 files.
47304         * sysdeps/sparc/sparc64/soft-fp/s_ilogbl.c: Moved to ...
47305         * sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c: ... here.
47306         Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
47308 2012-04-17  David S. Miller  <davem@davemloft.net>
47310         * sysdeps/sparc/sparc32/memcopy.h: Delete.
47312 2012-04-17  Andreas Schwab  <schwab@linux-m68k.org>
47314         * sysdeps/i386/fpu/e_ilogb.S: Remove __ilogb*_finite alias.
47315         * sysdeps/i386/fpu/e_ilogbf.S: Likewise.
47316         * sysdeps/i386/fpu/e_ilogbl.S: Likewise.
47317         * sysdeps/x86_64/fpu/e_ilogbl.S: Likewise.
47318         * sysdeps/ieee754/dbl-64/e_ilogb.c: Likewise.
47319         * sysdeps/ieee754/flt-32/e_ilogbf.c: Likewise.
47321 2012-04-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
47323         [BZ #6794]
47324         * math/Makefile: Add e_ilogb and w_ilogb, remove s_logb.
47325         * math/libm-test.inc: Add ilogb errno and exception tests.
47326         * math/w_ilogb.c: New file: ilogb wrapper.
47327         * math/w_ilogbf.c: New file: ilogbf wrapper.
47328         * math/w_ilogbl.c: New file: ilogbl wrapper.
47329         * sysdeps/generic/math_private.h: Add __ieee754_ilogb[l|f] prototypes.
47330         * sysdeps/i386/fpu/s_ilogb.S: Moved to ...
47331         * sysdeps/i386/fpu/e_ilogb.S: ... here. Also fixed a FE_DIVBYZERO
47332         exception being thrown with 0.0 as argument.
47333         * sysdeps/i386/fpu/s_ilogbf.S: Moved to ...
47334         * sysdeps/i386/fpu/e_ilogbf.S: ... here. Also fixed a FE_DIVBYZERO
47335         exception being thrown with 0.0 as argument.
47336         * sysdeps/i386/fpu/s_ilogbl.S: Moved to ...
47337         * sysdeps/i386/fpu/e_ilogbl.S: ... here. Also fixed a FE_DIVBYZERO
47338         exception being thrown with 0.0 as argument.
47339         * sysdeps/x86_64/fpu/s_ilogbl.S: Moved to ...
47340         * sysdeps/x86_64/fpu/e_ilogbl.S: ... here. Also fixed a FE_DIVBYZERO
47341         exception being thrown with 0.0 as argument.
47342         * sysdeps/ieee754/dbl-64/s_ilogb.c: Moved to ...
47343         * sysdeps/ieee754/dbl-64/e_ilogb.c: ... here.
47344         * sysdeps/ieee754/flt-32/s_ilogbf.c: Moved to ...
47345         * sysdeps/ieee754/flt-32/e_ilogbf.c: ... here.
47346         * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Moved to ...
47347         * sysdeps/ieee754/ldbl-128ibm/e_ilogbl.c: ... here.
47348         * sysdeps/ieee754/ldbl-opt/s_ilogb.c: Moved to ...
47349         * sysdeps/ieee754/ldbl-opt/w_ilogb.c: ... here.
47350         * sysdeps/ieee754/ldbl-opt/w_ilogbl.c: New file: ilogbl wrapper.
47352 2012-04-17  Petr Baudis  <pasky@ucw.cz>
47354         * include/sys/uio.h: Change __vector to __iovec to avoid clash
47355         with altivec.
47357 2012-04-16  Marek Polacek  <polacek@redhat.com>
47359         * elf/pldd-xx.c: Rename static_assert to pldd_assert.
47361 2012-04-16  Marek Polacek  <polacek@redhat.com>
47363         * sysdeps/i386/fpu/bits/fenv.h (feraiseexcept): Reverse the
47364         operands of fdivp instruction.
47366 2012-04-13  H.J. Lu  <hongjiu.lu@intel.com>
47368         * elf/tst-auditmod1.c: Check __ILP32__ instead of __LP64__.
47369         * elf/tst-auditmod3b.c: Likewise.
47370         * elf/tst-auditmod4b.c: Likewise.
47371         * elf/tst-auditmod5b.c: Likewise.
47372         * elf/tst-auditmod6b.c: Likewise.
47373         * elf/tst-auditmod6c.c: Likewise.
47374         * elf/tst-auditmod7b.c: Likewise.
47375         * sysdeps/x86_64/ffsll.c (ffsl): Likewise.
47376         * sysdeps/x86_64/preconfigure.in: Likewise.
47377         * sysdeps/x86_64/preconfigure: Regenerated.
47379 2012-04-13  H.J. Lu  <hongjiu.lu@intel.com>
47381         * sysdeps/x86_64/bits/wordsize.h (__WORDSIZE): Also check
47382         __ILP32__.
47384 2012-04-13  Antoine Balestrat <merkil33@gmail.com>
47386         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
47387         (__get_clockfreq_via_proc_openprom): Fix test on wrong variable.
47389 2012-04-13  Chris Leonard  <cjlhomeaddress@gmail.com>
47391         [BZ #13973]
47392         * locale/iso-639.def: Fix gl language name. Spotted by
47393         Yaron Shahrabani.
47395 2012-04-12  Roland McGrath  <roland@hack.frob.com>
47397         [BZ #2074]
47398         * libio/libio.h (__io_write_fn): Update comment.
47400 2012-04-12  Petr Baudis  <pasky@ucw.cz>
47402         [BZ #2074]
47403         * stdio.texi (Hook Functions): The user provided writer function
47404         is not allowed to return -1.
47406 2012-04-11  David S. Miller  <davem@davemloft.net>
47408         * sysdeps/sparc/fpu/libm-test-ulps: Update.
47410 2012-04-11  Mike Frysinger  <vapier@gentoo.org>
47412         * .gitignore: Add /ports, /linuxthreads, and /linuxthreads_db.
47413         Add a leading slash to rtkaio.
47415 2012-04-11  Jim Meyering  <meyering@redhat.com>
47417         [BZ #11959]
47418         * libio/stdio.h (fwrite, fwrite_unlocked): Remove __wur.
47419         It is not necessarily an error to ignore fwrite's return
47420         value.  One can reliably use ferror to test for errors after
47421         the fact.
47423 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
47425         * bits/types.h (__snseconds_t): New type.
47426         * time/time.h (struct timespec): Use __snseconds_t on tv_nsec.
47428         * bits/typesizes.h (__SNSECONDS_T_TYPE): New macro.
47429         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
47430         (__SNSECONDS_T_TYPE): Likewise.
47431         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
47432         (__SNSECONDS_T_TYPE): Likewise.
47433         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
47434         (__SNSECONDS_T_TYPE): Likewise.
47436 2012-04-10  Andreas Jaeger  <aj@suse.de>
47438         [BZ #2636]
47439         * manual/time.texi (Processor Time): Return type of times is
47440         elapsed real time since an arbitrary point in the past.
47441         (CPU Time): Move CLK_TCK from here...
47442         (Processor Time): ...to here.  Correct description.
47443         * manual/conf.texi (Constants for Sysconf): Correct description of
47444         _SC_CLK_TCK.
47446 2012-04-10  David S. Miller  <davem@davemloft.net>
47448         [BZ #13967]
47449         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Handle the case
47450         where the is a gap between DT_REL(A) and DT_JMPREL.
47452 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
47454         * sysdeps/x86_64/bits/byteswap.h: Include <features.h>.
47455         (__bswap_32): Use __builtin_bswap32 for GCC >= 4.2.
47456         (__bswap_64): Use __builtin_bswap64 for GCC >= 4.2.
47458 2012-04-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
47460         * elf/dl-support.c (_dl_inhibit_cache): New variable.
47461         * elf/rtld.c (_rtld_global_ro): New member _dl_inhibit_cache.
47462         (dl_main): Handle --inhibit-cache.
47463         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): New member
47464         _dl_inhibit_cache.
47465         * elf/dl-load.c (_dl_map_object): Use it.
47466         * elf/Makefile: Define SYSCONFDIR when building rtld.c.
47468 2012-04-09  Joseph Myers  <joseph@codesourcery.com>
47470         [BZ #13872]
47471         * sysdeps/i386/fpu/e_powl.S (p78): New object.
47472         (__ieee754_powl): Saturate large exponents rather than testing for
47473         overflow of y*log2(x).
47474         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
47475         * math/libm-test.inc (pow_test): Do not permit spurious overflow
47476         exceptions.
47478         [BZ #11521]
47479         * math/s_ctan.c: Include <float.h>.
47480         (__ctan): Avoid internal overflow or cancellation in calculating
47481         denominator.
47482         * math/s_ctanf.c: Likewise.
47483         * math/s_ctanl.c: Likewise.
47484         * math/s_ctanh.c: Likewise.
47485         * math/s_ctanhf.c: Likewise.
47486         * math/s_ctanhl.c: Likewise.
47487         * math/libm-test.inc (ctan_test): Add more tests.
47488         (ctanh_test): Likewise.
47489         * sysdeps/i386/fpu/libm-test-ulps: Update.
47490         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
47492 2012-04-09  Andreas Jaeger  <aj@suse.de>
47494         [BZ #6894]
47495         * manual/filesys.texi (Directory Entries): Mention that d_namlen
47496         is an optional BSD extension.
47498         [BZ #10254]
47499         * manual/stdio.texi (Opening Streams): Document additional fopen
47500         parameters.
47502 2012-04-09  Roland McGrath  <roland@hack.frob.com>
47504         * sysdeps/i386/fpu/bits/mathinline.h (__sincos_code): Don't clobber
47505         %eax without telling the compiler.
47507 2012-04-09  Carlos O'Donell  <carlos_odonell@mentor.com>
47509         [BZ # 13963]
47510         * manual/install.texi: Use sourceware.org.
47512 2012-04-09  Joseph Myers  <joseph@codesourcery.com>
47514         [BZ #13873]
47515         * sysdeps/ieee754/dbl-64/e_pow.c (huge, tiny): New variables.
47516         (__ieee754_pow): Generate overflow and underflow using huge*huge
47517         and tiny*tiny rather than just returning constant infinity or zero
47518         for large exponents.
47519         * math/libm-test.inc (pow_test): Require overflow exceptions for
47520         applicable cases of large exponents.
47522         [BZ #706]
47523         * sysdeps/i386/fpu/e_pow.S (p10): New object.
47524         (__ieee754_pow): Use iterative multiplication algorithm only for
47525         integer exponents with absolute value below 1024.  Check for odd
47526         integer exponents when using algorithm for real exponents.
47527         * math/libm-test.inc (pow_test): Add more tests.
47528         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
47530 2012-04-08  Joseph Myers  <joseph@codesourcery.com>
47532         [BZ #13705]
47533         * math/libm-test.inc (exp_test): Do not allow overflow exception
47534         on underflow test.
47536 2012-04-08  Aurelien Jarno  <aurelien@aurel32.net>
47538         [BZ #13705]
47539         * sysdeps/ieee754/dbl-64/w_exp.c (__exp): Use __kernel_standard
47540         instead of __kernel_standard_f.
47542 2012-04-08  Mike Frysinger  <vapier@gentoo.org>
47544         * sysdeps/i386/i686/memset_chk.S: Update copyright year.
47545         * sysdeps/x86_64/memset_chk.S: Likewise.
47547 2012-04-08  Andreas Jaeger  <aj@suse.de>
47549         [BZ #10153]
47550         * manual/startup.texi (Environment Access): Describe return value
47551         for putenv and setenv.
47553         [BZ #6895]
47554         * manual/filesys.texi (Directory Entries): Add description for
47555         DT_LNK.
47557         [BZ #6890]
47558         * manual/filesys.texi (Directory Entries): Clarify that it's file
47559         system not operating system in the description of DT_UNKNOWN.
47561         [BZ #6578]
47562         * manual/syslog.texi (closelog): Fix reference, it's openlog.
47564 2012-04-08  Stephen Compall  <s11@member.fsf.org>
47566         [BZ #6649]
47567         * manual/llio.texi (Opening and Closing Files): Add cross
47568         reference to explain mode argument.
47570 2012-04-07  Mike Frysinger  <vapier@gentoo.org>
47572         * sysdeps/i386/i686/memset_chk.S: Change PIC to SHARED.
47573         * sysdeps/x86_64/memset_chk.S: Likewise.
47575 2012-04-07  David S. Miller  <davem@davemloft.net>
47577         * elf/elf.h (R_SPARC_WDISP10): Define.
47578         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Handle
47579         R_SPARC_SIZE32.
47580         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Handle
47581         R_SPARC_SIZE64 and R_SPARC_H34.
47583 2012-04-07  Carlos O'Donell  <carlos_odonell@mentor.com>
47585         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Simplify
47586         conditions and remove no longer applicable assertion.
47588 2012-04-06  H.J. Lu  <hongjiu.lu@intel.com>
47590         * bits/byteswap.h: Include <features.h>.
47591         (__bswap_32): Use __builtin_bswap32 for GCC >= 4.2.
47592         (__bswap_64): Use __builtin_bswap64 for GCC >= 4.2.
47594 2012-04-06  H.J. Lu  <hongjiu.lu@intel.com>
47596         * bits/byteswap.h (__bswap_16): Removed.
47597         Include <bits/byteswap-16.h> to get __bswap_16.
47598         * sysdeps/i386/bits/byteswap.h: Likewise.
47599         * sysdeps/s390/bits/byteswap.h: Likewise.
47600         * sysdeps/x86_64/bits/byteswap.h: Likewise.
47601         * bits/byteswap-16.h: New file.
47602         * sysdeps/i386/bits/byteswap-16.h: Likewise.
47603         * sysdeps/s390/bits/byteswap-16.h: Likewise.
47604         * sysdeps/x86_64/bits/byteswap-16.h: Likewise.
47605         * string/Makefile (headers): Add bits/byteswap-16.h.
47607 2012-04-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
47609         [BZ #13895]
47610         * nss/nsswitch.c (nss_load_library, __nss_lookup_function): Avoid
47611         extra indirection.
47612         * nss/Makefile (tests-static, tests): Add tst-nss-static.
47613         * nss/tst-nss-static.c: New.
47615 2012-04-06  Robert Millan  <rmh@gnu.org>
47617         [BZ #6486]
47618         * manual/llio.texi (File Position Primitive): lseek
47619         refers to WHENCE when it really means OFFSET.
47621 2012-04-06  Andreas Jaeger  <aj@suse.de>
47623         * nss/nss_db/db-initgroups.c: Include <string.h> for strlen and
47624         strncmp declarations.
47626         * abilist/libc.abilist: Add __poll and __ppoll.
47628 2012-04-05  David S. Miller  <davem@davemloft.net>
47630         * scripts/check-local-headers.sh: Accept a host triplet in the
47631         path matched by the exclude regexp.
47633         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Reduce down to one
47634         definition.
47635         * sysdeps/powerpc/powerpc32/dl-machine.h
47636         (ELF_MACHINE_PLTREL_OVERLAP): Delete.
47637         * sysdeps/s390/s390-32/dl-machine.h
47638         (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
47639         * sysdeps/sparc/sparc32/dl-machine.h
47640         (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
47641         * sysdeps/sparc/sparc64/dl-machine.h
47642         (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
47644         * elf/rtld.c (dl_main): If DL_DEBUG_UNUSED is enabled, turn off
47645         lazy binding.
47646         * elf/dl-lookup.c (_dl_lookup_symbol_x): If DL_DEBUG_UNUSED, ignore
47647         undefined symbol errors.
47649         * elf/rtld.c (dl_main): Skip VDSO when checking for unused
47650         DT_NEEDED entries.
47652 2012-04-05  Michael Matz  <matz@suse.de>
47654         [BZ #13592]
47655         * sysdeps/x86_64/memset.S: Fix size paramater comparisions.
47657 2012-04-05  Andreas Jaeger  <aj@suse.de>
47659         [BZ #13908]
47660         * stdlib/stdlib.h: Don't warn about unused result of mktemp, fix
47661         comment.
47663 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
47665         * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Fix return value
47666         which ROUND is no valid rounding mode.
47668 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
47670         * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Set fpscr register which
47671         read again.
47672         * sysdeps/sh/sh4/fpu/ftestexcept.c: Likewise.
47674 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
47676         * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Produce
47677         an exception using FPU order intentionally.
47679 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
47681         * sysdeps/sh/sh4/fpu/fedisblxcpt.c: New file.
47682         * sysdeps/sh/sh4/fpu/feenablxcpt.c: New file.
47683         * sysdeps/sh/sh4/fpu/fegetexcept.c: New file.
47684         * sysdeps/sh/sh4/fpu/feupdateenv.c: New file.
47686 2012-04-05  Simon Josefsson  <simon@josefsson.org>
47688         [BZ #12340]
47689         * sysdeps/mach/hurd/ttyname_r.c (__ttyname_r): Return ERANGE instead of
47690         EINVAL when BUFLEN is too smal.
47692 2012-04-05  Thomas Schwinge  <thomas@codesourcery.com>
47694         [BZ #13553]
47695         * sysdeps/mach/i386/machine-lock.h: Use volatile instead of __volatile.
47696         * sysdeps/mach/powerpc/machine-lock.h: Likewise.
47698 2012-04-03  Andreas Jaeger  <aj@suse.de>
47700         [BZ #13938]
47701         * manual/setjmp.texi (System V contexts): Fix sentence.
47703         [BZ #13926]
47704         * sysdeps/i386/bits/byteswap.h [!__GNUC__](__bswap_constant_64):
47705         New macro for this case.
47706         [!__GNUC__] (__bswap_64): New inline function for this case.
47707         * sysdeps/x86_64/bits/byteswap.h: Likewise.
47708         * bits/byteswap.h: Likewise.
47709         * sysdeps/s390/bits/byteswap.h: [!__GNUC__] (__bswap_64): Use
47710         ull, guard with __GLIBC_HAVE_LONG_LONG.
47712         * string/endian.h (htobe64,htole64,be64toh,le64toh): Guard with
47713         __GLIBC_HAVE_LONG_LONG.
47715         * string/byteswap.h (bswap_64): Guard with __GLIBC_HAVE_LONG_LONG.
47716         Include <features.h> for __GLIBC_HAVE_LONG_LONG.
47718 2012-04-02 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
47720         [BZ #13691]
47721         * iconvdata/tcvn5712-1.c (FROM_LOOP): Test end of input using
47722         inptr and inend, rather than using last_ch.
47724 2012-04-02  David S. Miller  <davem@davemloft.net>
47726         With help from Paul Eggert, Carlos O'Donell, and Roland McGrath.
47727         * stdio-common/printf-parse.h (read_int): Change return type to
47728         'int', return -1 on INT_MAX overflow.
47729         * stdio-common/vfprintf.c (vfprintf): Validate width and precision
47730         against overflow of INT_MAX.  Set errno to EOVERFLOW when 'done'
47731         overflows INT_MAX.  Check for overflow of in-format-string precision
47732         values properly.  Use EOVERFLOW rather than ERANGE throughout.  Use
47733         SIZE_MAX not INT_MAX for integer overflow test.
47734         * stdio-common/printf-parsemb.c: If read_int signals an overflow,
47735         skip the construct in the format string but do not record anything.
47736         * stdio-common/bug22.c: Adjust to test both width/prevision
47737         INT_MAX overflow as well as total length INT_MAX overflow.  Check
47738         explicitly for proper errno values.
47740 2012-04-02  Thomas Schwinge  <thomas@codesourcery.com>
47742         * string/test-memcmp.c [! WIDE]: #include <limits.h> for CHAR_MIN,
47743         CHAR_MAX.
47744         * string/test-strcmp.c [! WIDE]: Likewise.
47745         * time/tst-mktime2.c: Likewise for INT_MAX.
47746         * string/test-string.h: #include <sys/param.h> for MIN.
47748         * csu/init-first.c (__libc_init_first): Call __ctype_init.
47749         * sysdeps/i386/init-first.c (init): Likewise.
47750         * sysdeps/mach/hurd/i386/init-first.c (posixland_init): Likewise.
47751         * sysdeps/mach/hurd/powerpc/init-first.c (posixland_init): Likewise.
47752         * sysdeps/sh/init-first.c (init): Likewise.
47754 2012-04-01  Ulrich Drepper  <drepper@gmail.com>
47756         * po/ru.po: Update from translation team.
47757         * po/vi.po: Likewise.
47759 2012-03-31  Siddhesh Poyarekar  <siddhesh@redhat.com>
47761         * resolv/nss_dns/dns-host.c: Merge copyright years.
47763 2012-03-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
47765         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Update.
47766         Optimize memcpy with prefetch if
47767         DATA_CACHE_SIZE_HALF <= len <  SHARED_CACHE_SIZE_HALF and
47768         src, dst pointers have unequal 16 byte alignments.
47770 2012-03-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
47772         [BZ #13928]
47773         * resolv/nss_dns/dns-host.c (getanswer_r): Also consider ttl
47774         from a CNAME entry and return the minimum ttl for the query.
47775         (gaih_getanswer_slice): Likewise.
47777 2012-03-30  Jeff Law  <law@redhat.com>
47779         * crypt/md5-crypt.c (__md5_crypt_r): Avoid unbounded alloca uses
47780         due to long keys.
47781         * crypt/sha256-crypt.c (__sha256_crypt_r): Likewise.
47782         * crypt/sha512-crypt.c (__sha512_crypt_r): Likewise.
47784         * resolv/nss_dns/dns-host.c: Update copyright year.
47786 2012-03-30  Ulrich Drepper  <drepper@gmail.com>
47788         * resolv/res_send.c (send_dg): Use sendmmsg if we have to write two
47789         requests to save a system call.  Fix check that all bytes are sent.
47791         * sysdeps/unix/sysv/linux/bits/socket.h (struct mmsghdr): Fix up
47792         comments for sendmmsg.
47794 2012-03-30  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
47796         [BZ #13691]
47797         * iconvdata/tcvn5712-1.c (FROM_LOOP): Fix a bug when converting strings
47798         with only 1 character between 0x0041 and 0x01b0.
47799         * wcsmbs/Makefile (tests): Add tst-mbsnrtowcs.
47800         * wcsmbs/tst-mbsnrtowcs.c: New file.
47802 2012-03-29  David S. Miller  <davem@davemloft.net>
47804         * libio/fileops.c (_IO_new_file_xsputn): Don't try to optimize
47805         small copies by hand.
47807 2012-03-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
47809         [BZ #13761]
47810         * nis/nss_compat/compat-initgroups.c (getgrent_next_nss)
47811         (_nss_compat_initgroups_dyn): Fall back to malloc/free for large
47812         group memberships.
47814 2012-03-28  David S. Miller  <davem@davemloft.net>
47816         * sysdeps/sparc/sparc32/memcpy.S: Implement mempcpy using a stub
47817         that branches into memcpy.
47818         * sysdeps/sparc/sparc64/memcpy.S: Likewise.
47819         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S: Likewise.
47820         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
47821         * sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: Likewise.
47822         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Add mempcpy multiarch
47823         bits.
47824         * sysdeps/sparc/sparc64/rtld-memcpy.c: Include generic mempcpy
47825         implementation too.
47826         * sysdeps/sparc/mempcpy.S: New file.
47828         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Provide a hidden def to
47829         the IFUNC routine in the libc case.
47830         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
47832         * sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memset.c: New file.
47833         * sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memcpy.c: New file.
47834         * sysdeps/sparc/sparc32/sparcv9/rtld-memset.c: New file.
47835         * sysdeps/sparc/sparc32/sparcv9/rtld-memcpy.c: New file.
47836         * sysdeps/sparc/sparc64/multiarch/rtld-memset.c: New file.
47837         * sysdeps/sparc/sparc64/multiarch/rtld-memcpy.c: New file.
47838         * sysdeps/sparc/sparc64/rtld-memset.c: New file.
47839         * sysdeps/sparc/sparc64/rtld-memcpy.c: New file.
47841         * sysdeps/sparc/sparc64/multiarch/memset-niagara1.S: Unroll main
47842         loop to 256 bytes instead of 64 bytes and fix test signedness.
47844         * sysdeps/sparc/Makefile: Add -fPIC to ASFLAGS-.os here....
47845         * sysdeps/sparc/sparc32/Makefile: rather than here...
47846         * sysdeps/sparc/sparc64/Makefile: and here.
47848 2012-03-28  Ulrich Drepper  <drepper@gmail.com>
47850         * malloc/mallocbug.c: Avoid warnings about unused variables.
47852 2012-02-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
47854         [BZ #13760]
47855         * resolv/nss_dns/dns-host.c (gaih_getanswer): Look for errno
47856         in the right place. Discard and retry query if response is
47857         larger than input buffer size.
47859 2012-03-28  Joseph Myers  <joseph@codesourcery.com>
47861         [BZ #369]
47862         [BZ #2678]
47863         [BZ #3866]
47864         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Take absolute value of
47865         x for large integer exponent.
47866         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
47867         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.  Adjust
47868         sign of result as needed afterwards.
47869         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
47870         * sysdeps/ieee754/k_standard.c (__kernel_standard): Handle sign of
47871         result for underflowing pow the same as for overflow.
47872         (__kernel_standard_l): Handle powl overflow and underflow here
47873         rather than calling __kernel_standard.
47874         * math/libm-test.inc (pow_test): Add more tests.
47876         [BZ #3868]
47877         [BZ #13879]
47878         [BZ #13910]
47879         [BZ #13911]
47880         [BZ #13912]
47881         [BZ #13913]
47882         [BZ #13915]
47883         [BZ #13916]
47884         [BZ #13917]
47885         [BZ #13918]
47886         [BZ #13919]
47887         [BZ #13920]
47888         [BZ #13921]
47889         * sysdeps/generic/math_private.h (__kernel_standard_l): Declare.
47890         * sysdeps/ieee754/k_standard.c: Include <float.h>.
47891         (__kernel_standard_l): New function.
47892         * math/w_acoshl.c (__acoshl): Use __kernel_standard_l instead of
47893         __kernel_standard.
47894         * math/w_acosl.c (__acosl): Likewise.
47895         * math/w_asinl.c (__asinl): Likewise.
47896         * math/w_atan2l.c (__atan2l): Likewise.
47897         * math/w_atanhl.c (__atanhl): Likewise.
47898         * math/w_coshl.c (__coshl): Likewise.
47899         * math/w_exp10l.c (__exp10l): Likewise.
47900         * math/w_exp2l.c (__exp2l): Likewise.
47901         * math/w_fmodl.c (__fmodl): Likewise.
47902         * math/w_hypotl.c (__hypotl): Likewise.
47903         * math/w_j0l.c (__j0l, __y0l): Likewise.
47904         * math/w_j1l.c (__j1l, __y1l): Likewise.
47905         * math/w_jnl.c (__jnl, __ynl): Likewise.
47906         * math/w_lgammal.c (__lgammal): Likewise.
47907         * math/w_log10l.c (__log10l): Likewise.
47908         * math/w_log2l.c (__log2l): Likewise.
47909         * math/w_logl.c (__logl): Likewise.
47910         * math/w_powl.c (__powl): Likewise.
47911         * math/w_remainderl.c (__remainderl): Likewise.
47912         * math/w_scalbl.c (sysv_scalbl): Likewise.
47913         * math/w_sinhl.c (__sinhl): Likewise.
47914         * math/w_sqrtl.c (__sqrtl): Likewise.
47915         * math/w_tgammal.c (__tgammal): Likewise.
47916         * sysdeps/ieee754/ldbl-128/w_expl.c (__expl): Likewise.
47917         * sysdeps/ieee754/ldbl-96/w_expl.c (__expl): Likewise.
47918         * math/libm-test.inc (acos_test): Add more tests.
47919         (acosh_test): Likewise.
47920         (asin_test): Likewise.
47921         (atanh_test): Likewise.
47922         (exp_test): Likewise.
47923         (exp10_test): Likewise.
47924         (exp2_test): Likewise.
47925         (expm1_test): Likewise.
47926         (lgamma_test): Likewise.
47927         (log_test): Likewise.
47928         (log10_test): Likewise.
47929         (log1p_test): Likewise.
47930         (log2_test): Likewise.
47931         (pow_test): Do not allow some spurious overflow exceptions.
47932         (sqrt_test): Add more tests.
47933         (tgamma_test): Likewise.
47934         (y0_test): Likewise.
47935         (y1_test): Likewise.
47936         (yn_test): Likewise.
47938 2012-03-27  Anton Blanchard  <anton@samba.org>
47940         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Define MAP_STACK and
47941         MAP_HUGETLB.
47942         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
47943         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
47944         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
47946 2012-03-27  David S. Miller  <davem@davemloft.net>
47948         * conform/Makefile: Run run-conformtest.sh using $(BASH).
47950         * sysdeps/sparc/sparc64/Makefile (ASFLAGS-.os): Move before
47951         have-as-vis3 check.
47953 2012-03-27  Andreas Jaeger  <aj@suse.de>
47955         * sysdeps/x86_64/elf/configure.in: Moved to ...
47956         * sysdeps/x86_64/configure.in: ... here.
47957         * sysdeps/x86_64/elf/start.S: Moved to ...
47958         * sysdeps/x86_64/start.S: ... here.
47959         * sysdeps/x86_64/elf/configure: Delete.
47961         * sysdeps/x86_64/configure.in: Merge contents from
47962         sysdeps/i386/configure.in (without i686 check).
47964         * sysdeps/i386/elf/Versions: Merge into ...
47965         * sysdeps/i386/Versions: ... this.
47966         * sysdeps/i386/elf/Versions: Delete file.
47967         * sysdeps/i386/elf/start.S: Moved to ...
47968         * sysdeps/i386/start.S: ...here.
47969         * sysdeps/i386/elf/configure.in: Merge into...
47970         * sysdeps/i386/configure.in: ...here.
47971         * sysdeps/i386/elf/configure.in: Delete file.
47972         * sysdeps/i386/elf/configure: Delete file.
47974         * sysdeps/generic/elf/backtracesyms.c: Moved to ...
47975         * debug/backtracesyms.c: ... here.
47976         * sysdeps/generic/elf/backtracesymsfd.c: Moved to ...
47977         * debug/backtracesymsfd.c: ... here.
47978         * sysdeps/generic/elf/ifunc-sel.h: Moved to ...
47979         * sysdeps/generic/ifunc-sel.h: ... here.
47981         * sysdeps/unix/i386/start.c: Delete file.
47982         * sysdeps/unix/sparc/start.c: Delete file.
47983         * sysdeps/unix/start.c: Delete file.
47985         * sysdeps/sh/elf/configure.in: Moved to ...
47986         * sysdeps/sh/configure.in: ... here.
47987         * sysdeps/sh/elf/start.S: Moved to ...
47988         * sysdeps/sh/start.S: ... here.
47989         * sysdeps/sh/elf/configure: Delete file.
47991         * sysdeps/powerpc/powerpc64/elf/bzero.S: Moved to ...
47992         * sysdeps/powerpc/powerpc64/bzero.S: ... here.
47993         * sysdeps/powerpc/powerpc64/elf/entry.h: Moved to ...
47994         * sysdeps/powerpc/powerpc64/entry.h: ... here.
47995         * sysdeps/powerpc/powerpc64/elf/start.S: Moved to ...
47996         * sysdeps/powerpc/powerpc64/start.S: here.
47997         * sysdeps/powerpc/powerpc64/elf/Makefile: Merge into ...
47998         * sysdeps/powerpc/powerpc64/Makefile: ... this.
47999         * sysdeps/powerpc/powerpc64/elf/configure.in: Merge into ...
48000         * sysdeps/powerpc/powerpc64/configure.in: ... this.
48001         * sysdeps/powerpc/powerpc64/elf/configure: Delete file.
48003         * sysdeps/powerpc/powerpc32/elf/bzero.S: Moved to ...
48004         * sysdeps/powerpc/powerpc32/bzero.S: ... here.
48005         * sysdeps/powerpc/powerpc32/elf/start.S: Moved to ...
48006         * sysdeps/powerpc/powerpc32/start.S: ... here.
48007         * sysdeps/powerpc/powerpc32/elf/configure.in: Merge into ...
48008         * sysdeps/powerpc/powerpc32/configure.in: ... this.
48009         * sysdeps/powerpc/powerpc32/elf/configure: Delete file.
48011         * sysdeps/powerpc/elf/ifunc-sel.h: Moved to ...
48012         * sysdeps/powerpc/ifunc-sel.h: ... here.
48013         * sysdeps/powerpc/elf/rtld-global-offsets.sym: Moved to ...
48014         * sysdeps/powerpc/rtld-global-offsets.sym: ... here.
48016         * sysdeps/sparc/elf/configure.in: Moved to ...
48017         * sysdeps/sparc/configure.in: ... here.
48018         * sysdeps/sparc/elf/configure: Delete file.
48019         * sysdeps/sparc/sparc32/elf/start.S: Moved to ...
48020         * sysdeps/sparc/sparc32/start.S: ... here.
48021         * sysdeps/sparc/sparc64/elf/start.S: Moved to ...
48022         * sysdeps/sparc/sparc64/start.S: ... here.
48023         * sysdeps/sparc/sparc32/elf/Makefile: Merged into ...
48024         * sysdeps/sparc/sparc32/Makefile: ... this.
48025         * sysdeps/sparc/sparc64/elf/Makefile: Merged into ...
48026         * sysdeps/sparc/sparc64/Makefile: ... this.
48028         * sysdeps/s390/s390-32/elf/bsd-_setjmp.S: Moved to ...
48029         * sysdeps/s390/s390-32/bsd-_setjmp.S: ... here.
48030         * sysdeps/s390/s390-32/elf/bsd-setjmp.S: Moved to ...
48031         * sysdeps/s390/s390-32/bsd-setjmp.S: ... here.
48032         * sysdeps/s390/s390-32/elf/setjmp.S: Moved to ...
48033         * sysdeps/s390/s390-32/setjmp.S: ... here.
48034         * sysdeps/s390/s390-32/elf/configure.in: Moved to ...
48035         * sysdeps/s390/s390-32/configure.in: ... here.
48036         * sysdeps/s390/s390-32/elf/configure: Delete file.
48037         * sysdeps/s390/s390-32/elf/start.S: Moved to ...
48038         * sysdeps/s390/s390-32/start.S: ... here.
48040         * sysdeps/s390/s390-64/elf/bsd-_setjmp.S: Moved to ...
48041         * sysdeps/s390/s390-64/bsd-_setjmp.S: ... here.
48042         * sysdeps/s390/s390-64/elf/bsd-setjmp.S: Moved to ...
48043         * sysdeps/s390/s390-64/bsd-setjmp.S: ... here.
48044         * sysdeps/s390/s390-64/elf/setjmp.S: Moved to ...
48045         * sysdeps/s390/s390-64/setjmp.S: ... here.
48046         * sysdeps/s390/s390-64/elf/configure.in: Moved to ...
48047         * sysdeps/s390/s390-64/configure.in: ... here
48048         * sysdeps/s390/s390-64/elf/configure: Delete file.
48049         * sysdeps/s390/s390-64/elf/start.S: Moved to ...
48050         * sysdeps/s390/s390-64/start.S: ... here.
48051         * sysdeps/s390/s390-64/elf/configure: Delete.
48053         * configure.in: Remove support for elf directories in sysdeps.
48055         * configure: Regenerated.
48056         * sysdeps/i386/configure: Regenerated.
48057         * sysdeps/powerpc/powerpc32/configure: Regenerated.
48058         * sysdeps/powerpc/powerpc64/configure: Regenerated.
48059         * sysdeps/s390/s390-32/configure: Regenerated.
48060         * sysdeps/s390/s390-64/configure: Regenerated.
48061         * sysdeps/sh/configure: Regenerated.
48062         * sysdeps/sparc/configure: Regenerated.
48063         * sysdeps/x86_64/configure: Regenerated.
48065 2012-03-26  Andreas Schwab  <schwab@linux-m68k.org>
48067         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
48069         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (lomark): Adjust to take
48070         denormal result into account.
48072 2012-03-25  Roland McGrath  <roland@hack.frob.com>
48074         * posix/confstr.c (confstr): Lift RESTENVS definition to function scope.
48075         Reported by Allan McRae <allan@archlinux.org>.
48077 2012-03-23  Jeff Law  <law@redhat.com>
48079         * nss/getnssent.c (__nss_getent): Fix typo.
48081 2012-03-23  David S. Miller  <davem@davemloft.net>
48083         * sysdeps/sparc/fpu/libm-test-ulps: Update.
48085 2012-03-23  H.J. Lu  <hongjiu.lu@intel.com>
48087         * sysdeps/x86_64/dl-tlsdesc.h (tlsdesc): Use anonymous union
48088         to pad to uint64_t for each field.
48089         (dl_tls_index): Replace unsigned long with uint64_t.
48091 2012-03-23  Daniel Jacobowitz  <dmj@google.com>
48092         Paul Pluzhnikov  <ppluzhnikov@google.com>
48094         [BZ #6528]
48095         * grp/Makefile (otherlibs): Don't set it.
48096         * inet/Makefile (otherlibs): Likewise.
48097         * login/Makefile (otherlibs): Likewise.
48098         * nscd/Makefile (otherlibs): Likewise.
48099         * posix/Makefile (otherlibs): Likewise.
48100         * pwd/Makefile (otherlibs): Likewise.
48101         * rt/Makefile (otherlibs): Likewise.
48102         * sunrpc/Makefile (otherlibs): Likewise.
48103         * nss/Makefile (otherlibs): Likewise.
48104         Add libnss_files to routines and static-only-routines.
48105         ($(objpfx)getent): Remove rule.
48106         * resolv/Makefile: Add libnss_dns and libresolv to routines and
48107         static-only-routines.
48109 2012-03-22  Joseph Myers  <joseph@codesourcery.com>
48111         [BZ #13892]
48112         * math/s_cexp.c: Include <float.h>.
48113         (__cexp): Handle exp result overflowing not necessarily
48114         overflowing both real and imaginary parts of result.
48115         * math/s_cexpf.c: Likewise.
48116         * math/s_cexpl.c: Likewise.
48117         * math/libm-test.inc (cexp_test): Add more tests.
48118         * sysdeps/i386/fpu/libm-test-ulps: Update.
48119         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
48121 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
48123         * include/link.h (ELFW): New macro.
48124         * sysdeps/x86_64/dl-irel.h: Replace Elf64_XXX with ElfW(XXX).
48125         Replace ELF64_R_TYPE with ELFW(R_TYPE).
48127 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
48129         * sysdeps/x86_64/dl-tls.h (dl_tls_index): Replace unsigned long
48130         with uint64_t.
48132 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
48134         * sysdeps/generic/ldsodefs.h (struct La_x32_regs): New forward
48135         declaration.
48136         (struct La_x32_retval): Likewise.
48138 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
48140         * sysdeps/x86_64/preconfigure.in: New file.
48141         * sysdeps/x86_64/preconfigure: New generated file.
48143 2012-03-22  Joseph Myers  <joseph@codesourcery.com>
48145         [BZ #13824]
48146         * math/e_exp2l.c: Include <float.h>.
48147         (__ieee754_exp2l): Handle overflow and underflow cases
48148         separately.  Only pass fractional part of argument to
48149         __ieee754_expl.
48150         * math/libm-test.inc (exp2_test): Add more tests.
48152         * sysdeps/ieee754/ldbl-128/k_cosl.c (__kernel_cosl): Negate y if
48153         negating x to take absolute value.
48154         * sysdeps/ieee754/ldbl-128/k_sincosl.c (__kernel_sincosl):
48155         Likewise.
48156         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Likewise.
48157         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c (__kernel_sincosl):
48158         Likewise.
48159         * sysdeps/ieee754/ldbl-128/k_sinl.c (__kernel_sinl): Negate y when
48160         computing low part if x was negated.
48161         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
48163 2012-03-21  H.J. Lu  <hongjiu.lu@intel.com>
48165         * elf/tst-auditmod1.c: Support la_x32_gnu_pltenter and
48166         la_x32_gnu_pltexit.
48167         (pltexit): Cast int_retval to ptrdiff_t.
48168         * elf/tst-auditmod3b.c: Likewise.
48169         * elf/tst-auditmod4b.c: Likewise.
48170         * elf/tst-auditmod5b.c: Likewise.
48171         * elf/tst-auditmod6b.c: Likewise.
48172         * elf/tst-auditmod6c.c: Likewise.
48173         * elf/tst-auditmod7b.c: Likewise.
48175         * sysdeps/generic/ldsodefs.h (audit_ifaces): Add x32_gnu_pltenter
48176         and x32_gnu_pltexit.
48178         * sysdeps/x86_64/bits/link.h: Check __x86_64__ instead of
48179         __ELF_NATIVE_CLASS.
48180         (La_x32_regs): New macro.
48181         (La_x32_retval): Likewise.
48182         (la_x32_gnu_pltenter): New function prototype.
48183         (la_x32_gnu_pltexit): Likewise.
48185 2012-03-21  Andreas Schwab  <schwab@linux-m68k.org>
48187         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (huge, tiny): Correct
48188         exponent.
48190         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
48192         * configure.in (libc_cv_cc_nofma): Check for option to disable
48193         generation of FMA instructions.
48194         * configure: Regenerate.
48195         * config.make.in (config-cflags-nofma): Set from libc_cv_cc_nofma.
48196         * sysdeps/ieee754/dbl-64/Makefile: New file.
48197         * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
48198         Remove brandred-fma4.
48199         (CFLAGS-brandred-fma4.c): Remove.
48200         * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: Remove.
48201         * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c (__branred): Don't
48202         define.
48203         * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c (__branred): Don't
48204         define.
48206 2012-03-21  H.J. Lu  <hongjiu.lu@intel.com>
48208         * stdio-common/_itoa.c: Check _ITOA_NEEDED instead of
48209         LLONG_MAX != LONG_MAX.
48210         (_itoa_word): Use _ITOA_WORD_TYPE on value.
48211         (_fitoa_word): Likewise.
48212         * stdio-common/_itowa.c: Check _ITOA_NEEDED instead of
48213         LLONG_MAX != LONG_MAX.
48214         * stdio-common/_itowa.h: Include <_itoa.h>.
48215         (_itowa_word): Use _ITOA_WORD_TYPE on value.
48216         (_itowa): New macro.  Defined only if _ITOA_NEEDED is false.
48217         * sysdeps/generic/_itoa.h (_ITOA_NEEDED): New macro.  Defined
48218         only if not defined.
48219         (_ITOA_WORD_TYPE): Likewise.
48220         (_itoa_word): Use _ITOA_WORD_TYPE on value.
48221         Check !_ITOA_NEEDED instead of LONG_MAX == LLONG_MAX.
48223 2012-03-21  David S. Miller  <davem@davemloft.net>
48225         * sysdeps/sparc/fpu/libm-test-ulps: Update.
48227 2012-03-21  H.J. Lu  <hongjiu.lu@intel.com>
48229         * sysdeps/unix/sysv/linux/configure.in: Check x86_64* instead
48230         of x86_64 when setting libc_cv_slibdir, libdir and
48231         libc_cv_localedir.
48232         * sysdeps/unix/sysv/linux/configure: Regenerated.
48234 2012-03-21  Joseph Myers  <joseph@codesourcery.com>
48236         * manual/lang.texi (Old Varargs): Remove section.
48237         (How Variadic): Update menu.
48238         (va_start): Do not mention varargs.h.
48240 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
48241             Joseph Myers  <joseph@codesourcery.com>
48243         * configure.in (libc_cv_ssp): Use LIBC_TRY_CC_OPTION instead of a
48244         link test.
48245         * configure: Regenerated.
48247 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
48249         * conform/conformtest.pl: Handle --tmpdir argument, defaulting to /tmp.
48250         * conform/run-conformtest.sh: Pass --tmpdir argument when invoking
48251         conformtest.pl
48253 2012-03-21  Joseph Myers  <joseph@codesourcery.com>
48255         * NOTES: Remove.
48256         * Makefile (files-for-dist): Remove NOTES.
48257         (NOTES): Remove rule.
48258         * README: Don't refer to NOTES.
48259         * manual/creature.texi: Don't include macros.texi.
48260         * manual/intro.texi (creature.texi): Remove comment referring to
48261         NOTES.
48263         * aclocal.m4 (LIBC_TRY_CC_OPTION): New macro.
48264         * configure.in (libc_cv_cc_submachine): Use LIBC_TRY_CC_OPTION.
48265         * configure: Regenerated.
48266         * sysdeps/i386/configure.in (libc_cv_cc_sse4): Use
48267         LIBC_TRY_CC_OPTION.
48268         (libc_cv_as_i686): Likewise.
48269         (libc_cv_cc_avx): Likewise.
48270         (libc_cv_cc_sse2avx): Likewise.
48271         (libc_cv_cc_fma4): Likewise.
48272         (libc_cv_cc_novzeroupper): Likewise.
48273         * sysdeps/i386/configure: Regenerated.
48275         [BZ #13883]
48276         * sysdeps/i386/fpu/s_cexp.S: Remove.
48277         * sysdeps/i386/fpu/s_cexpf.S: Likewise.
48278         * sysdeps/i386/fpu/s_cexpl.S: Likewise.
48279         * math/libm-test.inc (cexp_test): Add more tests.
48280         * sysdeps/i386/fpu/libm-test-ulps: Update.
48281         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
48283 2012-03-21  Allan McRae  <allan@archlinux.org>
48285         * timezone/Makefile: Do not install iso3166.tab and zone.tab
48287 2012-03-21  Joseph Myers  <joseph@codesourcery.com>
48289         [BZ #13871]
48290         * math/w_exp2.c: Do not include <float.h>.
48291         (o_threshold, u_threshold): Remove.
48292         (__exp2): Calculate result before checking finiteness and calling
48293         __kernel_standard.
48294         * math/w_exp2f.c: Likewise.
48295         * math/w_exp2l.c: Likewise.
48296         * math/libm-test.inc (exp2_test): Require overflow exception for
48297         1e6 input.
48299         [BZ #3866]
48300         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Test for y outside the
48301         range of signed 64-bit integers before using fistpll.  Remove
48302         checks for whether integers fit in mantissa bits.
48303         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Test for y outside
48304         the range of signed 32-bit integers before using fistpl.  Remove
48305         checks for whether integers fit in mantissa bits.
48306         * sysdeps/i386/fpu/e_powl.S (p64): New object.
48307         (__ieee754_powl): Test for y outside the range of signed 64-bit
48308         integers before using fistpll.  Reduce 64-bit values to 63-bit
48309         ones as needed.
48310         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Ensure
48311         divide-by-zero is raised for zero to large negative powers.
48312         * sysdeps/x86_64/fpu/e_powl.S (p64): New object.
48313         (__ieee754_powl): Test for y outside the range of signed 64-bit
48314         integers before using fistpll.  Reduce 64-bit values to 63-bit
48315         ones as needed.
48316         * math/libm-test.inc (pow_test): Add more tests.
48318 2012-03-20  H.J. Lu  <hongjiu.lu@intel.com>
48320         * debug/backtracesymsfd.c: Include <_itoa.h> instead of
48321         <stdio-common/_itoa.h>.
48322         * debug/segfault.c: Likewise.
48323         * elf/dl-cache.c: Likewise.
48324         * elf/dl-minimal.c: Likewise.
48325         * elf/dl-misc.c: Likewise.
48326         * elf/dl-sysdep.c: Likewise.
48327         * elf/dl-version.c: Likewise.
48328         * elf/rtld.c: Likewise.
48329         * hurd/hurdsock.c: Likewise.
48330         * hurd/lookup-retry.c: Likewise.
48331         * malloc/malloc.c: Likewise.
48332         * malloc/mtrace.c: Likewise.
48333         * nscd/nscd_getgr_r.c: Likewise.
48334         * nscd/nscd_getpw_r.c: Likewise.
48335         * nscd/nscd_getserv_r.c: Likewise.
48336         * posix/getopt_init.c: Likewise.
48337         * posix/wordexp.c: Likewise.
48338         * stdio-common/_itoa.c: Likewise.
48339         * stdio-common/printf_fphex.c: Likewise.
48340         * stdio-common/vfprintf.c: Likewise.
48341         * string/_strerror.c: Likewise.
48342         * sysdeps/generic/elf/backtracesymsfd.c: Likewise.
48343         * sysdeps/i386/i686/hp-timing.h: Likewise.
48344         * sysdeps/mach/_strerror.c: Likewise.
48345         * sysdeps/mach/hurd/powerpc/register-dump.h: Likewise.
48346         * sysdeps/mach/hurd/sethostid.c: Likewise.
48347         * sysdeps/mach/hurd/xmknodat.c: Likewise.
48348         * sysdeps/mach/xpg-strerror.c: Likewise.
48349         * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
48350         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
48351         * sysdeps/powerpc/powerpc32/register-dump.h: Likewise.
48352         * sysdeps/powerpc/powerpc64/dl-machine.c: Likewise.
48353         * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
48354         * sysdeps/powerpc/powerpc64/register-dump.h: Likewise.
48355         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h: Likewise.
48356         * sysdeps/sparc/sparc64/hp-timing.h: Likewise.
48357         * sysdeps/unix/sysv/linux/fd_to_filename.h: Likewise.
48358         * sysdeps/unix/sysv/linux/futimes.c: Likewise.
48359         * sysdeps/unix/sysv/linux/i386/register-dump.h: Likewise.
48360         * sysdeps/unix/sysv/linux/ptsname.c: Likewise.
48361         * sysdeps/unix/sysv/linux/s390/s390-32/register-dump.h: Likewise.
48362         * sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h: Likewise.
48363         * sysdeps/unix/sysv/linux/sh/sh3/register-dump.h: Likewise.
48364         * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Likewise.
48365         * sysdeps/unix/sysv/linux/sparc/sparc32/register-dump.h: Likewise.
48366         * sysdeps/unix/sysv/linux/sparc/sparc64/register-dump.h: Likewise.
48367         * sysdeps/unix/sysv/linux/ttyname.c: Likewise.
48368         * sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
48369         * sysdeps/unix/sysv/linux/x86_64/register-dump.h: Likewise.
48371         * stdio-common/_itoa.c: Include <_itoa.h> instead of "_itoa.h".
48373         * stdio-common/_itoa.h: Moved to ...
48374         * sysdeps/generic/_itoa.h: Here.
48376         * stdio-common/_itowa.c: Include <_itowa.h> instead of "_itowa.h".
48378         * stdio-common/printf_fphex.c: Include <_itoa.h> and <_itowa.h>
48379         instead of "_itoa.h" and "_itowa.h".
48380         * stdio-common/vfprintf.: Likewise.
48382 2012-03-20  H.J. Lu  <hongjiu.lu@intel.com>
48384         * sysdeps/x86_64/fpu/bits/mathinline.h: Don't include
48385         <bits/wordsize.h>.
48386         (__signbitf): Check __x86_64__ instead of __WORDSIZE.
48387         (__signbit): Likwise.
48388         (llrintf): Likwise.
48389         (llrint): Likwise.
48391 2012-03-20  H.J. Lu  <hongjiu.lu@intel.com>
48393         * sysdeps/x86_64/bits/setjmp.h (__jmp_buf): Support x86-64 with
48394         __WORDSIZE != 64.
48396 2012-03-20  Joseph Myers  <joseph@codesourcery.com>
48398         * math/gen-libm-test.pl (%beautify): Add OVERFLOW_EXCEPTION and
48399         OVERFLOW_EXCEPTION_OK.
48400         * math/libm-test.inc ("Philosophy"): Update comment about
48401         exception testing.
48402         (OVERFLOW_EXCEPTION): Define.
48403         (OVERFLOW_EXCEPTION_OK): Likewise.
48404         (INVALID_EXCEPTION_OK): Renumber.
48405         (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
48406         (IGNORE_ZERO_INF_SIGN): Likewise.
48407         (test_exceptions): Handle FE_OVERFLOW.
48408         (exp10_test): Expect overflow exceptions.
48409         (exp2_test): Likewise.
48410         (expm1_test): Likewise.
48411         (nextafter_test): Likewise.
48412         (pow_test): Likewise.
48413         (scalbn_test): Likewise.
48414         (scalbln_test): Likewise.
48416 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
48418         * sysdeps/x86_64/bits/atomic.h
48419         (__arch_c_compare_and_exchange_val_64_acq): Use atomic64_t on
48420         64bit integer.
48421         (atomic_exchange_acq): Likewise.
48422         (__arch_exchange_and_add_body): Likewise.
48423         (__arch_add_body): Likewise.
48424         (atomic_add_negative): Likewise.
48425         (atomic_add_zero): Likewise.
48427 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
48429         * sysdeps/x86_64/fpu/bits/fenv.h: Don't include <bits/wordsize.h>.
48430         (fenv_t): Check __x86_64__ instead of __WORDSIZE.
48432 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
48434         * sysdeps/x86_64/bits/mathdef.h: Don't include <bits/wordsize.h>.
48435         Check __x86_64__ instead of __WORDSIZE.
48437 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
48439         * sysdeps/unix/sysv/linux/x86_64/ldd-rewrite.sed: Support x32.
48441 2012-03-19  David S. Miller  <davem@davemloft.net>
48443         * sysdeps/sparc/fpu/libm-test-ulps: Update.
48445         * sysdeps/sparc/fpu/fenv_private.h: New file.
48446         * sysdeps/sparc/fpu/math_private.h: Use it.
48447         (libc_feholdexcept, libc_feholdexceptf, libc_feholdexceptl):
48448         Remove.
48449         (libc_feholdexcept_setround, libc_feholdexcept_setroundf)
48450         (libc_feholdexcept_setroundl): Remove.
48451         (libc_fetestexcept, libc_fetestexceptf, libc_fetestexceptl):
48452         Remove.
48453         (libc_fesetenv, libc_fesetenvf, libc_fesetenvl): Remove.
48454         (libc_feupdateenv, libc_feupdateenvf, libc_feupdateenvf): Remove.
48456 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
48458         * sysdeps/x86_64/fpu/math_private.h (EXTRACT_WORDS64): Use
48459         int64_t instead of long int.
48460         (INSERT_WORDS64): Likwise.
48462 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
48464         * sysdeps/x86_64/jmpbuf-unwind.h (_JMPBUF_CFA_UNWINDS_ADJ): Cast
48465         _Unwind_GetCFA return to _Unwind_Ptr first.
48467 2012-03-19  Joseph Myers  <joseph@codesourcery.com>
48469         [BZ #13629]
48470         * math/s_clog.c: Include <float.h>.
48471         (__clog): Scale large or subnormal inputs.
48472         * math/s_clogf.c: Likewise.
48473         * math/s_clogl.c: Likewise.
48474         * math/s_clog10.c: Include <float.h>.
48475         (M_LOG10_2): Define.
48476         (__clog10): Scale large or subnormal inputs.
48477         * math/s_clog10f.c: Likewise.
48478         * math/s_clog10l.c: Likewise.
48479         * math/libm-test.inc (clog_test): Add more tests.
48480         (clog10_test): Likewise.
48481         * sysdeps/i386/fpu/libm-test-ulps: Update.
48482         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
48484         [BZ #11451]
48485         * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Scale large
48486         x and y.
48487         * math/libm-test.inc (atan2_test): Add another test.
48489         * Makerules (common-objdir-compile): Remove.
48490         * sysdeps/unix/Makefile (config-generated): Do not add
48491         $(unix-generated) to variable.
48492         [generic bits/local_lim.h] (mk-local_lim-CFLAGS): Remove variable.
48493         [generic bits/local_lim.h] ($(common-objpfx)bits/local_lim.h):
48494         Remove rule.
48495         [generic bits/local_lim.h] ($(common-objpfx)mk-local_lim):
48496         Likewise.
48497         [generic bits/local_lim.h] (before-compile): Do not append to
48498         variable.
48499         [generic bits/local_lim.h] (common-generated): Likewise.
48500         [generic sys/param.h] (before-compile): Do not append to variable.
48501         [generic sys/param.h] ($(common-objpfx)sys/param.h): Remove rule.
48502         [generic sys/param.h] ($(common-objpfx)param.h.c): Likewise.
48503         [generic sys/param.h] ($(common-objpfx)param.h.dep): Likewise.
48504         [generic sys/param.h] ($(common-objpfx)param.h.dep): Do not
48505         include.
48506         [generic sys/param.h] (sys/param.h-includes): Remove variable.
48507         [generic sys/param.h] (sys/param.h-includes): Remove rule.
48508         [generic sys/param.h] ($(addprefix
48509         $(common-objpfx),$(sys/param.h-includes))): Likewise.
48510         [generic sys/param.h] (common-generated): Do not append to
48511         variable.
48512         [generic sys/param.h] (sysdep_headers): Likewise.
48513         [generic bits/errno.h] (before-compile): Do not append to
48514         variable.
48515         [generic bits/errno.h] ($(common-objpfx)bits/errno.h): Remove
48516         rule.
48517         [generic bits/errno.h] ($(common-objpfx)make-errnos): Likewise.
48518         [generic bits/errno.h] ($(common-objpfx)make-errnos.c): Likewise.
48519         [generic bits/errno.h] ($(common-objpfx)errnos): Likewise.
48520         [generic bits/errno.h] (common-generated): Do not append to
48521         variable.
48522         [generic bits/ioctls.h] (before-compile): Do not append to
48523         variable.
48524         [generic bits/ioctls.h] ($(common-objpfx)bits/ioctls.h): Remove
48525         rule.
48526         [generic bits/ioctls.h] (ioctl-includes): Remove variable.
48527         [generic bits/ioctls.h] (make-ioctls-CFLAGS): Likewise.
48528         [generic bits/ioctls.h] ($(common-objpfx)make-ioctls): Remove
48529         rule.
48530         [generic bits/ioctls.h] ($(common-objpfx)make-ioctls.c): Likewise.
48531         [generic bits/ioctls.h] (bits_termios.h): Remove variable.
48532         [generic bits/ioctls.h] ($(common-objpfx)ioctls): Remove rule.
48533         [generic bits/ioctls.h] (common-generated): Do not append to
48534         variable.
48535         [generic sys/syscall.h] (syscall.h): Remove variable.
48536         [generic sys/syscall.h] ($(common-objpfx)sys/syscall.h): Remove
48537         rule.
48538         [generic sys/syscall.h] (before-compile): Do not append to
48539         variable.
48540         [generic sys/syscall.h] (common-generated): Likewise.
48541         * sysdeps/unix/errnos-tmpl.c: Remove file.
48542         * sysdeps/unix/errnos.awk: Likewise.
48543         * sysdeps/unix/ioctls-tmpl.c: Likewise.
48544         * sysdeps/unix/ioctls.awk: Likewise.
48545         * sysdeps/unix/mk-local_lim.c: Likewise.
48546         * sysdeps/unix/snarf-ioctls: Likewise.
48548 2012-03-19  Richard Henderson  <rth@twiddle.net>
48550         * sysdeps/i386/fpu/fenv_private.h: New file.
48551         * sysdeps/i386/fpu/math_private.h: Use it.
48552         (math_opt_barrier, math_force_eval): Remove.
48553         (libc_feholdexcept_setround_53bit): Remove.
48554         (libc_feupdateenv_53bit): Remove.
48555         * sysdeps/x86_64/fpu/math_private.h: Likewise.
48556         (math_opt_barrier, math_force_eval): Remove.
48557         (libc_feholdexcept): Remove.
48558         (libc_feholdexcept_setround): Remove.
48559         (libc_fetestexcept, libc_fesetenv): Remove.
48560         (libc_feupdateenv_test): Remove.
48561         (libc_feupdateenv, libc_feholdsetround): Remove.
48562         (libc_feresetround): Remove.
48564         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Avoid the fldenv.
48565         * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Likewise.
48567         * sysdeps/generic/math_private.h (default_libc_feupdateenv_test): New.
48568         (libc_feupdateenv_test, libc_feupdateenv_testf): New.
48569         (libc_feupdateenv_testl): New.
48570         * sysdeps/x86_64/fpu/math_private.h (libc_feupdateenv_test): New.
48571         (libc_feupdateenv_testf): New.
48572         (libc_feupdateenv): Use libc_feupdateenv_test.
48573         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use libc_feupdateenv_test.
48574         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Likewise.
48576         * sysdeps/generic/math_private.h (libc_feholdsetround): New.
48577         (libc_feholdsetroundf, libc_feholdsetroundl): New.
48578         (libc_feresetround, libc_feresetroundf, libc_feresetroundl): New.
48579         (libc_feresetround_noex): New.
48580         (libc_feresetround_noexf): New.
48581         (libc_feresetround_noexl): New.
48582         (SET_RESTORE_ROUND, SET_RESTORE_ROUNDF, SET_RESTORE_ROUNDL): New.
48583         (SET_RESTORE_ROUND_NOEX, SET_RESTORE_ROUND_NOEXF): New.
48584         (SET_RESTORE_ROUND_NOEXL, SET_RESTORE_ROUND_53BIT): New.
48585         * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Use
48586         SET_RESTORE_ROUND.
48587         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Likewise.
48588         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Use SET_RESTORE_ROUND_53BIT.
48589         (__cos): Likewise.
48590         * sysdeps/ieee754/dbl-64/s_tan.c (__tan): Likewise.
48591         * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Use
48592         SET_RESTORE_ROUND_NOEX.
48593         * sysdeps/ieee754/dbl-64/e_exp2f.c (__ieee754_exp2f): Use
48594         SET_RESTORE_ROUND_NOEXF.
48595         * sysdeps/ieee754/flt-32/e_expf.c (__ieee754_expf): Likewise.
48596         * sysdeps/x86_64/fpu/math_private.h (libc_feholdsetround): New.
48597         (libc_feholdsetroundf): New.
48598         (libc_feresetround, libc_feresetroundf): New.
48600         * sysdeps/i386/fpu/math_private.h: Include <fenv.h>, <fpu_control.h>.
48601         (libc_feholdexcept_setround_53bit): Convert from macro to function.
48602         (libc_feupdateenv_53bit): Likewise.  Don't force _FPU_EXTENDED.
48604         * sysdeps/generic/math_private.h: Include <fenv.h>.
48605         (default_libc_feholdexcept): New.
48606         (default_libc_feholdexcept_setround): New.
48607         (default_libc_fesetenv, default_libc_feupdateenv): New.
48608         (libc_feholdexcept): Only define if undefined.
48609         (libc_feholdexceptf, libc_feholdexceptl): Likewise.
48610         (libc_feholdexcept_setround, libc_feholdexcept_setroundf): Likewise.
48611         (libc_feholdexcept_setroundl): Likewise.
48612         (libc_feholdexcept_setround_53bit): Likewise.
48613         (libc_fetestexcept, libc_fetestexceptf, libc_fetestexceptl): Likewise.
48614         (libc_fesetenv, libc_fesetenvf, libc_fesetenvl): Likewise.
48615         (libc_feupdateenv, libc_feupdateenvf, libc_feupdateenvl): Likewise.
48616         (libc_feupdateenv_53bit): Likewise.
48617         * sysdeps/x86_64/fpu/math_private.h: Include <fenv.h>.
48618         (libc_feholdexcept): Convert from macro to inline function.
48619         (libc_feholdexcept_setround, libc_fetestexcept): Likewise.
48620         (libc_fesetenv, libc_feupdateenv): Likewise.
48622         * sysdeps/generic/math_private.h (GET_HIGH_WORD): Define only if
48623         not previously defined.
48624         (GET_LOW_WORD, EXTRACT_WORDS64, INSERT_WORDS): Likewise.
48625         (INSERT_WORDS64, SET_HIGH_WORD, SET_LOW_WORD): Likewise.
48626         (GET_FLOAT_WORD, SET_FLOAT_WORD): Likewise.
48627         * sysdeps/ieee754/dbl-64/wordsize-64/math_private.h: New file.
48628         * sysdeps/ieee754/flt-32/math_private.h: New file.
48629         * sysdeps/x86_64/fpu/math_private.h: Move the include_next of
48630         math_private.h below SET_FLOAT_WORD.
48631         (__isnan, __isinf_ns, __finite): Remove.
48632         (__isnanf, __isinf_nsf, __finitef): Remove.
48634 2012-03-18  Andreas Schwab  <schwab@linux-m68k.org>
48636         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
48638 2012-03-17  David S. Miller  <davem@davemloft.net>
48640         [BZ #6471]
48641         * sysdeps/unix/sysv/linux/sparc/Versions: Add __getshmlba entry
48642         for 2.16.
48644 2012-03-16  David S. Miller  <davem@davemloft.net>
48646         * sysdeps/unix/sysv/linux/shmat.c (shmat): Use -1l to avoid
48647         warnings.
48649         [BZ #6471]
48650         * sysdeps/unix/sysv/linux/shmat.c (shmat): Test for syscall errors
48651         properly.
48652         * sysdeps/unix/sysv/linux/sparc/getshmlba.c: New file.
48653         * sysdeps/unix/sysv/linux/sparc/Makefile: Add getshmlba to
48654         sysdep_routines when subdir is sysvipc.
48655         * sysdeps/unix/sysv/linux/sparc/bits/shm.h (SHMLBA): Use new
48656         __getshmlba helper.
48658         * sysdeps/sparc/fpu/libm-test/ulps: Update.
48660 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
48662         * sysdeps/x86_64/ffsll.c (ffsl): Define alias only under
48663         [__LP64__].
48665 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
48667         * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Moved to ...
48668         * sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c: This.
48669         (__lround): Renamed to ...
48670         (__llround): This.  Replace long int with long long int.
48671         Define lround functions as aliases of llround functions.
48672         * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Empty file.
48674 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
48676         * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
48677         Use greg_t on sp.  Use unsigned int on idx_uc_link.  Cast
48678         adresses to uintptr_t.  Replace "long int" and "unsigned long
48679         int" with "greg_t" on va_arg.
48681 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
48683         * sysdeps/generic/ldconfig.h (FLAG_X8664_LIBX32): New macro.
48684         * elf/cache.c (print_entry): Handle FLAG_X8664_LIBX32.
48686         * sysdeps/unix/sysv/linux/i386/readelflib.c (process_elf_file):
48687         Move e_machine check before EI_CLASS check.  Handle x32
48688         libraries.  Check EM_IA_64 only if SKIP_EM_IA_64 isn't defined.
48689         * sysdeps/unix/sysv/linux/x86_64/readelflib.c: Just define
48690         SKIP_EM_IA_64 and include
48691         <sysdeps/unix/sysv/linux/i386/readelflib.c>.
48693         * sysdeps/unix/sysv/linux/x86_64/dl-cache.h:
48694         Don't include <sysdeps/unix/sysv/linux/sparc/dl-cache.h>.
48695         (add_system_dir): New macro.
48697         * sysdeps/unix/sysv/linux/x86_64/ldconfig.h
48698         (SYSDEP_KNOWN_INTERPRETER_NAMES): Add /libx32/ld-linux-x32.so.2.
48700 2012-03-16  Joseph Myers  <joseph@codesourcery.com>
48702         [BZ #2551]
48703         [BZ #2552]
48704         [BZ #2553]
48705         [BZ #2554]
48706         [BZ #2562]
48707         [BZ #2563]
48708         [BZ #2565]
48709         [BZ #2566]
48710         [BZ #2576]
48711         * math/w_j0.c (j0): Don't produce TLOSS errors for POSIX libm.
48712         (y0): Likewise.
48713         * math/w_j0f.c (j0f): Likewise.
48714         (y0f): Likewise.
48715         * math/w_j0l.c (__j0l): Likewise.
48716         (__y0l): Likewise.
48717         * math/w_j1.c (j1): Likewise.
48718         (y1): Likewise.
48719         * math/w_j1f.c (j1f): Likewise.
48720         (y1f): Likewise.
48721         * math/w_j1l.c (__j1l): Likewise.
48722         (__y1l): Likewise.
48723         * math/w_jn.c (jn): Likewise.
48724         (yn): Likewise.
48725         * math/w_jnf.c (jnf): Likewise.
48726         (ynf): Likewise.
48727         * math/w_jnl.c (__jnl): Likewise.
48728         (__ynl): Likewise.
48729         * math/libm-test.inc (j0_test): Add more tests.
48730         (j1_test): Likewise.
48731         (jn_test): Likewise.  Add trailing semicolon to existing test.
48732         (y0_test): Likewise.
48733         (y1_test): Likewise.
48734         * sysdeps/i386/fpu/libm-test-ulps: Update.
48735         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
48737         [BZ #13851]
48738         [BZ #13854]
48739         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Use
48740         libc_feholdexcept_setround_53bit and libc_feupdateenv_53bit.
48741         * sysdeps/ieee754/ldbl-96/k_tanl.c: New file.
48742         * sysdeps/ieee754/ldbl-96/s_tanl.c: Include <errno.h>.
48743         (__tanl): Set errno for infinite argument.
48744         * sysdeps/i386/fpu/mptan.c: Remove.
48745         * sysdeps/i386/fpu/s_tan.S: Likewise.
48746         * sysdeps/i386/fpu/s_tanl.S: Likewise.
48747         * sysdeps/x86_64/fpu/k_tanl.c: Likewise.
48748         * sysdeps/x86_64/fpu/s_tanl.S: Likewise.
48749         * math/libm-test.inc (tan_test): Add more tests and enable more
48750         tests for double and long double.
48751         * sysdeps/i386/fpu/libm-test-ulps: Update.
48752         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
48754 2012-03-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
48756         * sysdeps/x86_64/elf/start.S: Include <sysdep.h>.
48757         (_start): Add cfi_startproc, cfi_undefined for rip and cfi_endproc.
48759 2012-03-16  Roland McGrath  <roland@hack.frob.com>
48761         * aclocal.m4 (LIBC_PRECONFIGURE): New macro.
48762         * configure.in: Use it for both main tree and add-ons.
48763         * configure: Regenerated.
48765 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
48767         * time/offtime.c (__offtime): Use time_t on days, rem, y and yg.
48769 2012-03-16  Joseph Myers  <joseph@codesourcery.com>
48771         * sysdeps/ieee754/ldbl-96/t_sincosl.c: Include generator program
48772         in comment.
48774         [BZ #13851]
48775         * sysdeps/ieee754/ldbl-96/e_rem_pio2l.c: New file.
48776         * sysdeps/ieee754/ldbl-96/k_cosl.c: Likewise.
48777         * sysdeps/ieee754/ldbl-96/k_sinl.c: Likewise.
48778         * sysdeps/ieee754/ldbl-96/t_sincosl.c: Likewise.
48779         * sysdeps/ieee754/ldbl-96/s_cosl.c (__cosl): Correct test for
48780         infinite argument.
48781         * sysdeps/ieee754/ldbl-96/s_sinl.c (__sinl): Likewise.
48782         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Handle __FLT_EVAL_METHOD__
48783         != 0 for prec == 2.
48784         * sysdeps/i386/fpu/e_rem_pio2l.c: Remove.
48785         * sysdeps/i386/fpu/k_rem_pio2.c: Likewise.
48786         * sysdeps/i386/fpu/s_cosl.S: Likewise.
48787         * sysdeps/i386/fpu/s_sincosl.S: Likewise.
48788         * sysdeps/i386/fpu/s_sinl.S: Likewise.
48789         * sysdeps/x86_64/fpu/e_rem_pio2l.c: Likewise.
48790         * sysdeps/x86_64/fpu/k_cosl.c: Likewise.
48791         * sysdeps/x86_64/fpu/k_sinl.c: Likewise.
48792         * sysdeps/x86_64/fpu/s_cosl.S: Likewise.
48793         * sysdeps/x86_64/fpu/s_sincosl.S: Likewise.
48794         * sysdeps/x86_64/fpu/s_sinl.S: Likewise.
48795         * math/libm-test.inc (cos_test): Add more tests and enable more
48796         tests for long double.
48797         (sin_test): Likewise.
48798         (sincos_test): Likewise.
48799         * sysdeps/i386/fpu/libm-test-ulps: Update.
48800         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
48802 2012-03-16  David S. Miller  <davem@davemloft.net>
48804         * sysdeps/sparc/fpu/math_private.h: New file.
48806 2012-03-15  David S. Miller  <davem@davemloft.net>
48808         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma-vis3.S: New
48809         file.
48810         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c: New file.
48811         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf-vis3.S: New
48812         file.
48813         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf.c: New file.
48814         * sysdeps/sparc/sparc64/fpu/multiarch/s_fma-vis3.S: New file.
48815         * sysdeps/sparc/sparc64/fpu/multiarch/s_fma.c: New file.
48816         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf-vis3.S: New file.
48817         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf.c: New file.
48818         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add fma/fmaf
48819         sysdep routines.
48820         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Likewise.
48822         * sysdeps/sparc/sparc32/fpu/s_fma.c: New file.
48823         * sysdeps/sparc/sparc64/fpu/s_fma.c: New file.
48825         * sysdeps/sparc/sparc-ifunc.h: New file.
48826         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Use
48827         sparc-ifunc.h
48828         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: Likewise.
48829         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S:
48830         Likewise.
48831         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S:
48832         Likewise.
48833         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: Likewise.
48834         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: Likewise.
48835         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
48836         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S:
48837         Likewise.
48838         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: Likewise.
48839         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf.S: Likewise.
48840         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: Likewise.
48841         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf.S: Likewise.
48842         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S:
48843         Likewise.
48844         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S:
48845         Likewise.
48846         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Likewise.
48847         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: Likewise.
48848         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt.S: Likewise.
48849         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf.S: Likewise.
48850         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: Likewise.
48851         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: Likewise.
48852         * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.S: Likewise.
48853         * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.S: Likewise.
48854         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: Likewise.
48855         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: Likewise.
48856         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmax.S: Likewise.
48857         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf.S: Likewise.
48858         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin.S: Likewise.
48859         * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf.S: Likewise.
48860         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.S: Likewise.
48861         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.S: Likewise.
48862         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.S: Likewise.
48863         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.S: Likewise.
48864         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.S: Likewise.
48865         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.S: Likewise.
48866         * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.S: Likewise.
48867         * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.S: Likewise.
48868         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.S: Likewise.
48869         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.S: Likewise.
48871 2012-03-15  Andreas Schwab  <schwab@linux-m68k.org>
48873         * sysdeps/powerpc/fpu/e_hypotf.c: Use double precision instead of
48874         scaling.
48875         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
48877 2012-03-15  Andreas Jaeger  <aj@suse.de>
48879         [BZ #13852]
48880         * sysdeps/i386/fpu/e_rem_pio2f.c: Delete so that i386 uses the
48881         ieee754/flt-32 implementation for sin, cos and sincos.
48882         * sysdeps/i386/fpu/k_rem_pio2f.c: Likewise.
48883         * sysdeps/i386/fpu/s_cosf.S: Likewise.
48884         * sysdeps/i386/fpu/s_sincosf.S: Likewise.
48885         * sysdeps/i386/fpu/s_sinf.S: Likewise.
48886         * sysdeps/i386/fpu/s_tanf.S: Delete so that i386 uses the
48887         ieee754/flt-32 implementation for tan.
48889         * math/libm-test.inc (cos_test): Enable some large input tests for
48890         float as well
48891         (sin_test): Likewise.
48892         (sincos_test): Likewise.
48893         (tan_test): Add tests for large input.
48895         * sysdeps/i386/fpu/libm-test-ulps: Update.
48897 2012-03-15  Andreas Jaeger  <aj@suse.de>
48899         [BZ #13658]
48900         * math/libm-test.inc (cos_test): Add more test cases.
48901         (sin_test): Likewise.
48902         (sincos_test): Likewise.
48904 2012-03-15  Andreas Jaeger  <aj@suse.de>
48906         [BZ #13837]
48907         * math/libm-test.inc (cos_test): Add a test case for large input
48908         value.
48909         (sin_test): Likewise.
48910         (sincos_test): Likewise.
48912 2012-03-15  Andreas Jaeger  <aj@suse.de>
48913             Joseph Myers  <joseph@codesourcery.com>
48915         [BZ #13658]
48916         * sysdeps/x86_64/fpu/s_sincos.S: Delete files so that
48917         x86-64 and i386 use the iee754/dbl-64 sin and cos implementation.
48918         * sysdeps/i386/fpu/branred.c: Likewise.
48919         * sysdeps/i386/fpu/dosincos.c: Likewise.
48920         * sysdeps/i386/fpu/mpa.c: Likewise.
48921         * sysdeps/i386/fpu/s_cos.S: Likewise.
48922         * sysdeps/i386/fpu/s_sin.S: Likewise.
48923         * sysdeps/i386/fpu/s_sincos.S: Likewise.
48924         * sysdeps/i386/fpu/sincos32.c: Likewise.
48926         * sysdeps/generic/math_private.h (libc_feholdexcept_setround_53bit):
48927         Define.
48928         (libc_feupdateenv_53bit): Define.
48929         * sysdeps/i386/fpu/math_private.h (libc_feholdexcept_setround_53bit):
48930         Define.
48931         (libc_feupdateenv_53bit): Define.
48933         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Do double arithmetic in
48934         53 bit (without extend i386 double precision).
48936         * math/libm-test.inc (sincos_test): Add tests for large input.
48937         (sin): Likewise.
48938         (cos): Likewise.
48940         * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
48942 2012-03-15  Andreas Schwab  <schwab@linux-m68k.org>
48944         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
48946 2012-03-15  David S. Miller  <davem@davemloft.net>
48948         * sysdeps/sparc/sparc64/fpu/s_fmax.S: New file.
48949         * sysdeps/sparc/sparc64/fpu/s_fmaxf.S: New file.
48950         * sysdeps/sparc/sparc64/fpu/s_fmin.S: New file.
48951         * sysdeps/sparc/sparc64/fpu/s_fminf.S: New file.
48952         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S: New file.
48953         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmaxf.S: New file.
48954         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S: New file.
48955         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fminf.S: New file.
48956         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmax.S: New file.
48957         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf-vis3.S: New file.
48958         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf.S: New file.
48959         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin-vis3.S: New file.
48960         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin.S: New file.
48961         * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf-vis3.S: New file.
48962         * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf.S: New file.
48963         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax-vis3.S: New
48964         file.
48965         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: New file.
48966         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf-vis3.S: New
48967         file.
48968         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf.S: New file.
48969         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin-vis3.S: New
48970         file.
48971         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: New file.
48972         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf-vis3.S: New
48973         file.
48974         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf.S: New file.
48975         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add new vis3
48976         fmin/fmax sysdep routines.
48977         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Likewise.
48979 2012-03-14  David S. Miller  <davem@davemloft.net>
48981         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S: New file.
48982         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: New file.
48983         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S: New file.
48984         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: New file.
48985         * sysdeps/sparc/sparc64/fpu/multiarch/s_finite-vis3.S: New file.
48986         * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.S: New file.
48987         * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef-vis3.S: New file.
48988         * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.S: New file.
48989         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S: New file.
48990         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: New file.
48991         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S: New file.
48992         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: New file.
48993         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf-vis3.S: New file.
48994         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.S: New file.
48995         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff-vis3.S: New file.
48996         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.S: New file.
48997         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan-vis3.S: New file.
48998         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.S: New file.
48999         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf-vis3.S: New file.
49000         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.S: New file.
49001         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint-vis3.S: New file.
49002         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.S: New file.
49003         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf-vis3.S: New file.
49004         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.S: New file.
49005         * sysdeps/sparc/sparc64/fpu/multiarch/s_rint-vis3.S: New file.
49006         * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.S: New file.
49007         * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf-vis3.S: New file.
49008         * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.S: New file.
49009         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add new VIS3
49010         routines.
49011         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S: New
49012         file.
49013         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: New file.
49014         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S: New
49015         file.
49016         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: New file.
49017         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs-vis3.S: New
49018         file.
49019         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: New file.
49020         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf-vis3.S: New
49021         file.
49022         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: New file.
49023         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S: New
49024         file.
49025         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: New file.
49026         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S: New
49027         file.
49028         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S: New
49029         file.
49030         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint-vis3.S: New
49031         file.
49032         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: New
49033         file.
49034         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf-vis3.S:
49035         New file.
49036         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S: New
49037         file.
49038         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint-vis3.S: New
49039         file.
49040         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: New file.
49041         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf-vis3.S: New
49042         file.
49043         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: New file.
49044         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt-vis3.S: New
49045         file.
49046         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt.S: New file.
49047         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf-vis3.S: New
49048         file.
49049         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf.S: New file.
49050         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add new
49051         VIS3 routines.
49053         * sysdeps/sparc/sparc32/sparcv9/fpu/unix/sysv/linux/multiarch/Implies:
49054         New file.
49056         * sysdeps/sparc/fpu/libm-test-ulps: Update.
49058         * sysdeps/sparc/configure.in: New file.
49059         * sysdeps/sparc/configure: Generate.
49060         * configure.in (libc_cv_sparc_as_vis3): Substitute.
49061         * configure: Regenerate.
49062         * config.h.in (HAVE_AS_VIS3_SUPPORT): New.
49063         * config.make.in (have-as-vis3): New.
49064         * sysdeps/sparc/sparc32/sparcv9/Makefile (ASFLAGS-*): If VIS3 is
49065         available use -Av9d instead of -Av9a.
49066         * sysdeps/sparc/sparc64/Makefile: Likewise.
49067         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: New file.
49068         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign-vis3.S:
49069         New file.
49070         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S: New
49071         file.
49072         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf-vis3.S:
49073         New file.
49074         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S: New
49075         file.
49076         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: New file.
49077         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit-vis3.S: New file.
49078         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.S: New file.
49079         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf-vis3.S: New file.
49080         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.S: New file.
49082         * sysdeps/sparc/sparc64/fpu/s_copysign.S (__copysign): Use
49083         fzeros/fnegs to load 0x80000000 into a float register instead of
49084         using the stack.
49085         * sysdeps/sparc/sparc64/fpu/s_copysignf.S (__copysignf): Likewise.
49087 2012-03-14  Joseph Myers  <joseph@codesourcery.com>
49089         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
49090         bits/syscall.h.
49091         ($(objpfx)syscall-%.h): Rename rule to $(objpfx)bits/syscall%h.
49092         ($(objpfx)syscall-%.d): Rename rule to $(objpfx)bits/syscall%d.
49093         ($(inst_includedir)/bits/syscall.h): Remove rule.
49094         ($(objpfx)bits/syscall.d): Include instead of
49095         $(objpfx)syscall-list.d.
49096         (generated): Change syscall-list.h and syscall-list.d to
49097         bits/syscall.h and bits/syscall.d.
49099 2012-03-14  Roland McGrath  <roland@hack.frob.com>
49101         [BZ #13846]
49102         * manual/llio.texi (Memory-mapped I/O): Fix wrong function name.
49104 2012-03-14  Joseph Myers  <joseph@codesourcery.com>
49106         [BZ #13841]
49107         * math/s_csqrt.c: Include <float.h>.
49108         (__csqrt): Scale large or subnormal inputs.
49109         * math/s_csqrtf.c: Likewise.
49110         * math/s_csqrtl.c: Likewise.
49111         * math/libm-test.inc (csqrt_test): Add more tests.
49112         * sysdeps/i386/fpu/libm-test-ulps: Update.
49113         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
49115         [BZ #13840]
49116         * math/libm-test.inc (hypot_test): Add more tests.
49118 2012-03-13  David S. Miller  <davem@davemloft.net>
49120         [BZ #13840]
49121         * sysdeps/ieee754/flt-32/e_hypotf.c (__ieee754_hypotf): Rewrite to use
49122         double-precision for the calculation instead of scaling.
49124 2012-03-13  Joseph Myers  <joseph@codesourcery.com>
49126         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Do not
49127         manipulate bits before adding and subtracting TWO52[sx].
49128         * sysdeps/ieee754/dbl-64/s_rint.c (__rint): Likewise.
49129         * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c (__nearbyint):
49130         Likewise.
49131         * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c (__rint): Likewise.
49133 2012-03-13  David S. Miller  <davem@davemloft.net>
49135         * sysdeps/sparc/Makefile: Remove rtld-global-offsets.sym handling.
49136         * sysdeps/sparc/elf/rtld-global-offsets.sym: Delete.
49137         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Don't include
49138         rtld-global-offsets.h
49139         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
49141         * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Use expl for
49142         large parameters.
49144         * sysdeps/unix/sysv/linux/sparc/sparc64/dl-fxstatat64.c: New file.
49146         * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Declare syscall
49147         'err' in the ifdef scope in which it is actually used.
49149         * nss/nss_db/db-init.c: Include string.h
49151 2012-03-12  David S. Miller  <davem@davemloft.net>
49153         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix
49154         masking out of the most significant byte of random value used.
49155         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
49156         Fix coding style in previous change.
49158         * sysdeps/unix/sysv/linux/kernel-features.h
49159         (__ASSUME_CLONE_THREAD_FLAGS): Set on sparc when 2.5.64 and later.
49160         (__ASSUME_TGKILL): Set on sparc when 2.6.1 and later, simplify
49161         expression.
49162         (__ASSUME_FADVISE64_64_SYSCALL): Set on sparc when 2.6.1 and
49163         later.
49165 2012-03-11  David S. Miller  <davem@davemloft.net>
49167         * sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c
49168         (__makecontext): Fix signedness of pointer casts setting up 'sp'.
49169         * sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL) Use 'long'
49170         for 'resultvar' otherwise things get truncated on 64-bit.
49172         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
49173         Fix masking out of the most significant byte of random value used.
49175         * sysdeps/sparc/fpu/libm-test-ulps: Update.
49177 2012-03-10  Andreas Schwab  <schwab@linux-m68k.org>
49179         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
49181 2012-03-09  David S. Miller  <davem@davemloft.net>
49183         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Protect local
49184         variables with appropriate CPP guards.
49185         * sysdeps/sparc/sparc32/dl-trampoline.S: Propagate the stack_ptr
49186         from the frame pointer, not the stack pointer.  Correct layout
49187         comments.  Fix test on resulting framesize and the management of
49188         the outregs buffer for pltexit.  Preserve floating point return
49189         values across _dl_call_pltexit call.
49190         * sysdeps/sparc/sparc64/dl-trampoline.S: Fix test on resulting
49191         framesize and the management of the outregs buffer for pltexit.
49192         Preserve floating point return values across _dl_call_pltexit
49193         call.
49194         * elf/sotruss-lib.c (la_sparc32_gnu_pltenter)
49195         (la_sparc64_gnu_pltenter, la_sparc32_gnu_pltexit)
49196         (la_sparc64_gnu_pltexit): New functions.
49197         (print_exit): Fix format string for return register value.
49199 2012-03-10  Joseph Myers  <joseph@codesourcery.com>
49201         * sunrpc/Makefile (others): Add rpcgen.
49202         ($(objpfx)rpcgen): Remove special build rule and dependency on
49203         libc.
49204         * sunrpc/rpcgen.c: New file.
49206 2012-03-09  Paul Eggert  <eggert@cs.ucla.edu>
49208         [BZ #13673]
49209         * posix/bug-regex33.c: Replace FSF snail mail address with URL.
49210         * stdio-common/bug-vfprintf-nargs.c: Likewise.
49211         * sysdeps/i386/crti.S: Likewise.
49212         * sysdeps/i386/crtn.S: Likewise.
49213         * sysdeps/powerpc/powerpc32/crti.S: Likewise.
49214         * sysdeps/powerpc/powerpc32/crtn.S: Likewise.
49215         * sysdeps/powerpc/powerpc64/crti.S: Likewise.
49216         * sysdeps/powerpc/powerpc64/crtn.S: Likewise.
49217         * sysdeps/sh/crti.S: Likewise.
49218         * sysdeps/sh/crtn.S: Likewise.
49219         * sysdeps/x86_64/fpu/e_expf.S: Likewise.
49221         [BZ #13673]
49222         * locale/programs/charmap-kw.gperf: Replace FSF snail mail address
49223         with URL.
49224         * locale/programs/locfile-kw.gperf: Likewise.
49225         * locale/programs/charmap-kw.h: Regenerated.
49226         * locale/programs/locfile-kw.h: Likewise.
49228         [BZ #13673]
49229         * intl/plural.y: Replace FSF snail mail address with URL.
49230         * intl/plural.c: Regenerated.
49232 2012-03-09  Richard Henderson  <rth@twiddle.net>
49234         * include/math_private.h: Remove file.
49235         * math/math_private.h: Move file ...
49236         * sysdeps/generic/math_private.h: ... here.
49238         * sysdeps/i386/fpu/math_private.h: Use include_next for math_private.h.
49239         * sysdeps/powerpc/fpu/math_private.h: Likewise.
49240         * sysdeps/x86_64/fpu/math_private.h: Likewise.
49242         * sysdeps/i386/fpu/s_fpclassifyl.c: Use <> to include both <math.h>
49243         and <math_private.h>.
49244         * sysdeps/i386/fpu/s_isinfl.c: Likewise.
49245         * sysdeps/i386/fpu/s_isnanl.c: Likewise.
49246         * sysdeps/i386/fpu/s_nextafterl.c: Likewise.
49247         * sysdeps/i386/fpu/s_nexttoward.c: Likewise.
49248         * sysdeps/i386/fpu/s_nexttowardf.c: Likewise.
49249         * sysdeps/ieee754/dbl-64/branred.c: Likewise.
49250         * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
49251         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
49252         * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
49253         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
49254         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
49255         * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
49256         * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
49257         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
49258         * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
49259         * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
49260         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
49261         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
49262         * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
49263         * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Likewise.
49264         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
49265         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
49266         * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
49267         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
49268         * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Likewise.
49269         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
49270         * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
49271         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
49272         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
49273         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
49274         * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
49275         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
49276         * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise.
49277         * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
49278         * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
49279         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
49280         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
49281         * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
49282         * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
49283         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
49284         * sysdeps/ieee754/dbl-64/s_fpclassify.c: Likewise.
49285         * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
49286         * sysdeps/ieee754/dbl-64/s_ilogb.c: Likewise.
49287         * sysdeps/ieee754/dbl-64/s_isinf.c: Likewise.
49288         * sysdeps/ieee754/dbl-64/s_isinf_ns.c: Likewise.
49289         * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
49290         * sysdeps/ieee754/dbl-64/s_llrint.c: Likewise.
49291         * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
49292         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
49293         * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
49294         * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
49295         * sysdeps/ieee754/dbl-64/s_lround.c: Likewise.
49296         * sysdeps/ieee754/dbl-64/s_modf.c: Likewise.
49297         * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
49298         * sysdeps/ieee754/dbl-64/s_remquo.c: Likewise.
49299         * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
49300         * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
49301         * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
49302         * sysdeps/ieee754/dbl-64/s_scalbn.c: Likewise.
49303         * sysdeps/ieee754/dbl-64/s_signbit.c: Likewise.
49304         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
49305         * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
49306         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
49307         * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
49308         * sysdeps/ieee754/dbl-64/s_trunc.c: Likewise.
49309         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
49310         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
49311         * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
49312         * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c: Likewise.
49313         * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c: Likewise.
49314         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: Likewise.
49315         * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
49316         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Likewise.
49317         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
49318         * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: Likewise.
49319         * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf.c: Likewise.
49320         * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf_ns.c: Likewise.
49321         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
49322         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c: Likewise.
49323         * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Likewise.
49324         * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: Likewise.
49325         * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Likewise.
49326         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: Likewise.
49327         * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Likewise.
49328         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
49329         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: Likewise.
49330         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c: Likewise.
49331         * sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c: Likewise.
49332         * sysdeps/ieee754/flt-32/e_acosf.c: Likewise.
49333         * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
49334         * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
49335         * sysdeps/ieee754/flt-32/e_atan2f.c: Likewise.
49336         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
49337         * sysdeps/ieee754/flt-32/e_coshf.c: Likewise.
49338         * sysdeps/ieee754/flt-32/e_fmodf.c: Likewise.
49339         * sysdeps/ieee754/flt-32/e_hypotf.c: Likewise.
49340         * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
49341         * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
49342         * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
49343         * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
49344         * sysdeps/ieee754/flt-32/e_log10f.c: Likewise.
49345         * sysdeps/ieee754/flt-32/e_log2f.c: Likewise.
49346         * sysdeps/ieee754/flt-32/e_logf.c: Likewise.
49347         * sysdeps/ieee754/flt-32/e_powf.c: Likewise.
49348         * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
49349         * sysdeps/ieee754/flt-32/e_remainderf.c: Likewise.
49350         * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
49351         * sysdeps/ieee754/flt-32/e_sqrtf.c: Likewise.
49352         * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
49353         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
49354         * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
49355         * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
49356         * sysdeps/ieee754/flt-32/s_asinhf.c: Likewise.
49357         * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
49358         * sysdeps/ieee754/flt-32/s_cbrtf.c: Likewise.
49359         * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
49360         * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
49361         * sysdeps/ieee754/flt-32/s_cosf.c: Likewise.
49362         * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
49363         * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
49364         * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
49365         * sysdeps/ieee754/flt-32/s_finitef.c: Likewise.
49366         * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
49367         * sysdeps/ieee754/flt-32/s_fpclassifyf.c: Likewise.
49368         * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
49369         * sysdeps/ieee754/flt-32/s_ilogbf.c: Likewise.
49370         * sysdeps/ieee754/flt-32/s_isinf_nsf.c: Likewise.
49371         * sysdeps/ieee754/flt-32/s_isinff.c: Likewise.
49372         * sysdeps/ieee754/flt-32/s_isnanf.c: Likewise.
49373         * sysdeps/ieee754/flt-32/s_llrintf.c: Likewise.
49374         * sysdeps/ieee754/flt-32/s_llroundf.c: Likewise.
49375         * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
49376         * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
49377         * sysdeps/ieee754/flt-32/s_lrintf.c: Likewise.
49378         * sysdeps/ieee754/flt-32/s_lroundf.c: Likewise.
49379         * sysdeps/ieee754/flt-32/s_modff.c: Likewise.
49380         * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
49381         * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise.
49382         * sysdeps/ieee754/flt-32/s_remquof.c: Likewise.
49383         * sysdeps/ieee754/flt-32/s_rintf.c: Likewise.
49384         * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
49385         * sysdeps/ieee754/flt-32/s_scalblnf.c: Likewise.
49386         * sysdeps/ieee754/flt-32/s_scalbnf.c: Likewise.
49387         * sysdeps/ieee754/flt-32/s_signbitf.c: Likewise.
49388         * sysdeps/ieee754/flt-32/s_sincosf.c: Likewise.
49389         * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
49390         * sysdeps/ieee754/flt-32/s_tanf.c: Likewise.
49391         * sysdeps/ieee754/flt-32/s_tanhf.c: Likewise.
49392         * sysdeps/ieee754/flt-32/s_truncf.c: Likewise.
49393         * sysdeps/ieee754/k_standard.c: Likewise.
49394         * sysdeps/ieee754/ldbl-128/e_acoshl.c: Likewise.
49395         * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
49396         * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
49397         * sysdeps/ieee754/ldbl-128/e_atan2l.c: Likewise.
49398         * sysdeps/ieee754/ldbl-128/e_atanhl.c: Likewise.
49399         * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
49400         * sysdeps/ieee754/ldbl-128/e_fmodl.c: Likewise.
49401         * sysdeps/ieee754/ldbl-128/e_hypotl.c: Likewise.
49402         * sysdeps/ieee754/ldbl-128/e_j0l.c: Likewise.
49403         * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
49404         * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
49405         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise.
49406         * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
49407         * sysdeps/ieee754/ldbl-128/e_log2l.c: Likewise.
49408         * sysdeps/ieee754/ldbl-128/e_logl.c: Likewise.
49409         * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
49410         * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c: Likewise.
49411         * sysdeps/ieee754/ldbl-128/e_remainderl.c: Likewise.
49412         * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
49413         * sysdeps/ieee754/ldbl-128/k_cosl.c: Likewise.
49414         * sysdeps/ieee754/ldbl-128/k_sincosl.c: Likewise.
49415         * sysdeps/ieee754/ldbl-128/k_sinl.c: Likewise.
49416         * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
49417         * sysdeps/ieee754/ldbl-128/s_asinhl.c: Likewise.
49418         * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
49419         * sysdeps/ieee754/ldbl-128/s_cbrtl.c: Likewise.
49420         * sysdeps/ieee754/ldbl-128/s_ceill.c: Likewise.
49421         * sysdeps/ieee754/ldbl-128/s_copysignl.c: Likewise.
49422         * sysdeps/ieee754/ldbl-128/s_cosl.c: Likewise.
49423         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
49424         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
49425         * sysdeps/ieee754/ldbl-128/s_fabsl.c: Likewise.
49426         * sysdeps/ieee754/ldbl-128/s_finitel.c: Likewise.
49427         * sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
49428         * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c: Likewise.
49429         * sysdeps/ieee754/ldbl-128/s_frexpl.c: Likewise.
49430         * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Likewise.
49431         * sysdeps/ieee754/ldbl-128/s_isinf_nsl.c: Likewise.
49432         * sysdeps/ieee754/ldbl-128/s_isinfl.c: Likewise.
49433         * sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
49434         * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
49435         * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
49436         * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
49437         * sysdeps/ieee754/ldbl-128/s_logbl.c: Likewise.
49438         * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
49439         * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
49440         * sysdeps/ieee754/ldbl-128/s_modfl.c: Likewise.
49441         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
49442         * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Likewise.
49443         * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
49444         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
49445         * sysdeps/ieee754/ldbl-128/s_remquol.c: Likewise.
49446         * sysdeps/ieee754/ldbl-128/s_rintl.c: Likewise.
49447         * sysdeps/ieee754/ldbl-128/s_roundl.c: Likewise.
49448         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
49449         * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
49450         * sysdeps/ieee754/ldbl-128/s_signbitl.c: Likewise.
49451         * sysdeps/ieee754/ldbl-128/s_sincosl.c: Likewise.
49452         * sysdeps/ieee754/ldbl-128/s_sinl.c: Likewise.
49453         * sysdeps/ieee754/ldbl-128/s_tanhl.c: Likewise.
49454         * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
49455         * sysdeps/ieee754/ldbl-128/s_truncl.c: Likewise.
49456         * sysdeps/ieee754/ldbl-128/w_expl.c: Likewise.
49457         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c: Likewise.
49458         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
49459         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
49460         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c: Likewise.
49461         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Likewise.
49462         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Likewise.
49463         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Likewise.
49464         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: Likewise.
49465         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
49466         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c: Likewise.
49467         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c: Likewise.
49468         * sysdeps/ieee754/ldbl-128ibm/e_logl.c: Likewise.
49469         * sysdeps/ieee754/ldbl-128ibm/e_powl.c: Likewise.
49470         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c: Likewise.
49471         * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c: Likewise.
49472         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
49473         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c: Likewise.
49474         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: Likewise.
49475         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: Likewise.
49476         * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: Likewise.
49477         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: Likewise.
49478         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Likewise.
49479         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
49480         * sysdeps/ieee754/ldbl-128ibm/s_cosl.c: Likewise.
49481         * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c: Likewise.
49482         * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c: Likewise.
49483         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Likewise.
49484         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c: Likewise.
49485         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c: Likewise.
49486         * sysdeps/ieee754/ldbl-128ibm/s_finitel.c: Likewise.
49487         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Likewise.
49488         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
49489         * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Likewise.
49490         * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c: Likewise.
49491         * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c: Likewise.
49492         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c: Likewise.
49493         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c: Likewise.
49494         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c: Likewise.
49495         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
49496         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
49497         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Likewise.
49498         * sysdeps/ieee754/ldbl-128ibm/s_remquol.c: Likewise.
49499         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
49500         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
49501         * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c: Likewise.
49502         * sysdeps/ieee754/ldbl-128ibm/s_sincosl.c: Likewise.
49503         * sysdeps/ieee754/ldbl-128ibm/s_sinl.c: Likewise.
49504         * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: Likewise.
49505         * sysdeps/ieee754/ldbl-128ibm/s_tanl.c: Likewise.
49506         * sysdeps/ieee754/ldbl-96/e_acoshl.c: Likewise.
49507         * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
49508         * sysdeps/ieee754/ldbl-96/e_atan2l.c: Likewise.
49509         * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
49510         * sysdeps/ieee754/ldbl-96/e_coshl.c: Likewise.
49511         * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
49512         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
49513         * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
49514         * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
49515         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
49516         * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
49517         * sysdeps/ieee754/ldbl-96/e_sinhl.c: Likewise.
49518         * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
49519         * sysdeps/ieee754/ldbl-96/s_cbrtl.c: Likewise.
49520         * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
49521         * sysdeps/ieee754/ldbl-96/s_copysignl.c: Likewise.
49522         * sysdeps/ieee754/ldbl-96/s_cosl.c: Likewise.
49523         * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
49524         * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
49525         * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
49526         * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
49527         * sysdeps/ieee754/ldbl-96/s_fpclassifyl.c: Likewise.
49528         * sysdeps/ieee754/ldbl-96/s_frexpl.c: Likewise.
49529         * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Likewise.
49530         * sysdeps/ieee754/ldbl-96/s_isinf_nsl.c: Likewise.
49531         * sysdeps/ieee754/ldbl-96/s_isinfl.c: Likewise.
49532         * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
49533         * sysdeps/ieee754/ldbl-96/s_llrintl.c: Likewise.
49534         * sysdeps/ieee754/ldbl-96/s_llroundl.c: Likewise.
49535         * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
49536         * sysdeps/ieee754/ldbl-96/s_lrintl.c: Likewise.
49537         * sysdeps/ieee754/ldbl-96/s_lroundl.c: Likewise.
49538         * sysdeps/ieee754/ldbl-96/s_modfl.c: Likewise.
49539         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
49540         * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
49541         * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise.
49542         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Likewise.
49543         * sysdeps/ieee754/ldbl-96/s_remquol.c: Likewise.
49544         * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
49545         * sysdeps/ieee754/ldbl-96/s_roundl.c: Likewise.
49546         * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
49547         * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
49548         * sysdeps/ieee754/ldbl-96/s_signbitl.c: Likewise.
49549         * sysdeps/ieee754/ldbl-96/s_sincosl.c: Likewise.
49550         * sysdeps/ieee754/ldbl-96/s_sinl.c: Likewise.
49551         * sysdeps/ieee754/ldbl-96/s_tanhl.c: Likewise.
49552         * sysdeps/ieee754/ldbl-96/s_tanl.c: Likewise.
49553         * sysdeps/ieee754/ldbl-96/s_truncl.c: Likewise.
49554         * sysdeps/ieee754/s_lib_version.c: Likewise.
49555         * sysdeps/ieee754/s_matherr.c: Likewise.
49556         * sysdeps/ieee754/s_signgam.c: Likewise.
49557         * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
49558         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
49559         * sysdeps/powerpc/fpu/e_rem_pio2f.c: Likewise.
49560         * sysdeps/powerpc/fpu/k_cosf.c: Likewise.
49561         * sysdeps/powerpc/fpu/k_rem_pio2f.c: Likewise.
49562         * sysdeps/powerpc/fpu/k_sinf.c: Likewise.
49563         * sysdeps/powerpc/fpu/s_cosf.c: Likewise.
49564         * sysdeps/powerpc/fpu/s_float_bitwise.h: Likewise.
49565         * sysdeps/powerpc/fpu/s_isnan.c: Likewise.
49566         * sysdeps/powerpc/fpu/s_rint.c: Likewise.
49567         * sysdeps/powerpc/fpu/s_rintf.c: Likewise.
49568         * sysdeps/powerpc/fpu/s_sinf.c: Likewise.
49569         * sysdeps/powerpc/fpu/w_sqrt.c: Likewise.
49570         * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
49571         * sysdeps/powerpc/powerpc32/fpu/s_llrintf.c: Likewise.
49572         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Likewise.
49573         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
49574         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Likewise.
49575         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
49576         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
49577         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
49579 2012-03-09  Joseph Myers  <joseph@codesourcery.com>
49581         * sunrpc/rpc_cout.c: Remove __GNU_LIBRARY__ conditionals.
49582         * sunrpc/rpc_main.c: Likewise.
49583         * sunrpc/rpc_svcout.c: Likewise.
49585 2012-03-09  David S. Miller  <davem@davemloft.net>
49587         * include/math_private.h: New file.
49589 2012-03-09  Joseph Myers  <joseph@codesourcery.com>
49591         * sysdeps/unix/sysv/linux/bits/socket_type.h: New file.
49592         * sysdeps/unix/sysv/linux/sparc/bits/socket_type.h: Likewise.
49593         * sysdeps/unix/sysv/linux/bits/socket.h: Get enum __socket_type
49594         from <bits/socket_type.h>.
49595         (enum __socket_type): Don't define here.
49596         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Remove.
49597         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
49598         bits/socket_type.h.
49600         [BZ #13566]
49601         * libio/stdio.h (gets): Always declare for C++ up to C++11 without
49602         checking __USE_GNU.
49604         * Makerules ($(inst_includedir)/%.h): New rule.
49605         * stdio-common/Makefile (headers): Add bits/stdio_lim.h.
49606         (install-others): Remove variable setting.
49607         ($(inst_includedir)/bits/stdio_lim.h): Remove rule.
49609 2012-03-08  Richard Henderson  <rth@twiddle.net>
49611         * sysdeps/powerpc/fpu/math_private.h (__ieee754_sqrt): Convert
49612         from macro to inline function; merge with the
49613         !__LIBC_INTERNAL_MATH_INLINES version.
49614         (__ieee754_sqrtf): Likewise.
49616         * sysdeps/x86_64/fpu/math_private.h (__rint): Convert from macro
49617         to inline function.
49618         (__rintf, __floor, __floorf): Likewise.
49620         * sysdeps/x86_64/fpu/math_private.h (__ieee754_sqrt): Convert from
49621         macro to inline function.
49622         (__ieee754_sqrtf, __ieee754_sqrtl): Likewise.
49624         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Include <math_private.h>,
49625         not <math/math_private.h>.
49627 2012-03-08  David S. Miller  <davem@davemloft.net>
49629         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: Update
49630         copyright year.
49631         * sysdeps/unix/sysv/linux/sparc/sysdep.h: Likewise.
49633 2012-03-08  Thomas Schwinge  <thomas@codesourcery.com>
49635         * resolv/gai_misc.c (handle_requests): Fix struct timespec
49636         normalization.
49637         * rt/tst-cpuclock2.c (test_nanosleep): Likewise.
49638         * sysdeps/pthread/aio_misc.c (handle_fildes_io): Likewise.
49640 2012-03-08  Ulrich Drepper  <drepper@gmail.com>
49642         * stdio-common/tst-fphex.c: Various cleanups.  The macros cannot
49643         be defined individually, they must be defined as a block.  Define
49644         S for printing a string instead of hidint the different by using a
49645         macro for adding the 'l'.
49646         * stdio-common/tst-fphex-wide.c: Adjust.
49648 2012-03-07  Marek Polacek  <polacek@redhat.com>
49650         * stdio-common/tst-long-dbl-fphex.c: Fix test for non ldbl-96 targets.
49652 2012-03-08  Marek Polacek  <polacek@redhat.com>
49654         [BZ #13806]
49655         * stdio-common/Makefile (tests): Add tst-fphex-wide.
49656         * stdio-common/tst-fphex.c: Define a few macros to make the
49657         test reusable.  Use them.
49658         * stdio-common/tst-fphex-wide.c: New file.
49660 2012-03-08  Joseph Myers  <joseph@codesourcery.com>
49662         [BZ #6911]
49663         * manual/macros.texi (gnusystems): New macro.
49664         (nongnusystems): Likewise.
49665         (gnulinuxhurdsystems): Likewise.
49666         (gnuhurdsystems): Likewise..
49667         (gnulinuxsystems): Likewise.
49668         * manual/charset.texi: Use new macros or @theglibc{} to refer to
49669         variants of the GNU system, not "GNU system".
49670         * manual/conf.texi: Likewise.
49671         * manual/errno.texi: Likewise.  Update example of errno macro
49672         expansion.
49673         * manual/filesys.texi: Likewise.
49674         (getumask): Document as specific to GNU/Hurd.
49675         * manual/install.texi: Likewise.  Reword some references to
49676         GNU/Linux.
49677         * manual/intro.texi: Likewise.
49678         * manual/io.texi: Likewise.
49679         (File Name Portability): Detail which constraints are inapplicable
49680         to all GNU systems and which are only inapplicable to GNU/Hurd.
49681         * manual/job.texi: Likewise.
49682         * manual/llio.texi: Likewise.
49683         (O_NOCTTY): Document as present on GNU/Linux.
49684         * manual/maint.texi: Likewise.
49685         * manual/memory.texi: Likewise.
49686         * manual/pattern.texi: Likewise.
49687         * manual/pipe.texi: Likewise.
49688         * manual/process.texi: Likewise.
49689         * manual/resource.texi: Likewise.
49690         (RUSAGE_CHILDREN): Remove statement about specifying a particular
49691         child on GNU/Hurd.
49692         * manual/setjmp.texi: Likewise.
49693         * manual/signal.texi: Likewise.
49694         * manual/startup.texi: Likewise.
49695         * manual/stdio.texi: Likewise.
49696         * manual/terminal.texi: Likewise.
49697         (ONLCR): Document as POSIX.
49698         (OXTABS): Document availability on GNU/Linux as XTABS.
49699         (ONOEOT): Document availability separately from other bits.
49700         (VLNEXT, VDISCARD, VSTATUS): Document availability individually.
49701         * manual/time.texi: Likewise.
49702         * manual/users.texi: Likewise.
49703         * INSTALL: Regenerated.
49704         * sysdeps/gnu/errlist.c: Regenerated.
49706         * aclocal.m4 (LIBC_TRY_LINK_STATIC): New macro.
49707         * configure.in (libc_cv_preinit_array): Use LIBC_TRY_LINK_STATIC.
49708         (libc_cv_ctors_header): Likewise.  Use asm ("") instead of calling
49709         puts.
49710         * configure: Regenerated.
49712 2012-03-07  Joseph Myers  <joseph@codesourcery.com>
49714         * sysdeps/i386/configure.in (cpuid.h): Use AC_CHECK_HEADER with no
49715         default includes instead of AC_HEADER_CHECK.
49716         * sysdeps/i386/configure: Regenerated.
49718         [BZ #10716]
49719         * math/s_cacosh.c (__cacosh): Convert negative log results to 0.
49720         * math/s_cacoshf.c (__cacoshf): Likewise.
49721         * math/s_cacoshl.c (__cacoshl): Likewise.
49722         * math/s_casinh.c (__casinh): Set signs of result from argument.
49723         * math/s_casinhf.c (__casinhf): Likewise.
49724         * math/s_casinhl.c (__casinhl): Likewise.
49725         * math/libm-test.inc (cacos_test, cacosh_test, casin_test)
49726         (casinh_test): Add more tests.
49727         * sysdeps/i386/fpu/libm-test-ulps: Update.
49728         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
49730 2012-03-07  Ulrich Drepper  <drepper@gmail.com>
49732         * po/zh_TW.po: Update from translation team.
49734         * login/Makefile (distribute): Remove variable.
49735         * catgets/Makefile: Likewise.
49736         * mach/Makefile: Likewise.
49737         * malloc/Makefile: Likewise.
49738         * misc/Makefile: Likewise.
49739         * iconv/Makefile: Likewise.
49740         * nscd/Makefile: Likewise.
49741         * hurd/Makefile: Likewise.
49742         * manual/Makefile: Likewise.
49743         * locale/Makefile: Likewise.
49744         * intl/Makefile: Likewise.
49745         * conform/Makefile: Likewise.
49746         * nss/Makefile: Likewise.
49747         * time/Makefile: Likewise.
49748         * soft-fp/Makefile: Likewise.
49749         * dirent/Makefile: Likewise.
49750         * gmon/Makefile: Likewise.
49751         * po/Makefile: Likewise.
49752         * rt/Makefile: Likewise.
49753         * socket/Makefile: Likewise.
49754         * math/Makefile: Likewise.
49755         * signal/Makefile: Likewise.
49756         * debug/Makefile: Likewise.
49757         * elf/Makefile: Likewise.
49758         * timezone/Makefile: Likewise.
49759         * stdlib/Makefile: Likewise.
49760         * iconvdata/Makefile: Likewise.
49761         * sunrpc/Makefile: Likewise.
49762         * io/Makefile: Likewise.
49763         * argp/Makefile: Likewise.
49764         * inet/Makefile: Likewise.
49765         * hesiod/Makefile: Likewise.
49766         * grp/Makefile: Likewise.
49767         * csu/Makefile: Likewise.
49768         * wctype/Makefile: Likewise.
49769         * crypt/Makefile: Likewise.
49770         * libio/Makefile: Likewise.
49771         * string/Makefile: Likewise.
49772         * nis/Makefile: Likewise.
49773         * resolv/Makefile: Likewise.
49774         * stdio-common/Makefile: Likewise.
49775         * wcsmbs/Makefile: Likewise.
49776         * dlfcn/Makefile: Likewise.
49777         * posix/Makefile: Likewise.
49779         [BZ #6959]
49780         * timezone/Makefile: Don't install timezone files, just the programs
49781         and scripts.
49783 2012-03-06  Ulrich Drepper  <drepper@gmail.com>
49785         * nss/databases.def: Add missing gshadow entry.
49787         * stdio-common/vfprintf.c: Fix formatting.  Missing copyright update.
49789 2012-03-06  Marek Polacek  <polacek@redhat.com>
49791         [BZ #13726]
49792         * sysdeps/ieee754/ldbl-96/printf_fphex.c: Adjust position of wnumstr.
49793         * sysdeps/x86_64/fpu/printf_fphex.c: Likewise.
49794         * stdio-common/Makefile (tests): Add tst-long-dbl-fphex.
49795         * stdio-common/tst-long-dbl-fphex.c: New file.
49797 2012-03-06  David S. Miller  <davem@davemloft.net>
49799         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
49800         (set_obp_int): New function.
49801         (get_obp_int): New function.
49802         (__get_clockfreq_via_dev_openprom): Likewise.
49803         * sysdeps/unix/sysv/linux/sparc/sysdep.h (INTERNAL_SYSCALL_ERROR_P):
49804         Avoid unused variable warnings on 'val' and use builtin_expect.
49805         (INLINE_SYSCALL): Don't wrap INTERNAL_SYSCALL_ERROR_P with
49806         __builtin_expect.
49807         (INLINE_CLONE_SYSCALL): Likewise.
49809 2012-03-05  David S. Miller  <davem@davemloft.net>
49811         * sysdeps/sparc/fpu/libm-test-ulps: Update.
49813 2012-03-05  Andreas Schwab  <schwab@linux-m68k.org>
49815         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
49817         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Drop exp(-x) term
49818         only for |x| >= 40.
49819         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
49821 2012-03-05  H.J. Lu  <hongjiu.lu@intel.com>
49823         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c (gettimeofday_ifunc):
49824         Replace gettimeofday with __vdso_gettimeofday.
49826         * sysdeps/unix/sysv/linux/x86_64/init-first.c
49827         (_libc_vdso_platform_setup): Replace clock_gettime and getcpu with
49828         __vdso_clock_gettime and __vdso_getcpu.
49830         * sysdeps/unix/sysv/linux/x86_64/time.c (time_ifunc): Replace
49831         time with __vdso_time.
49833 2012-03-05  Joseph Myers  <joseph@codesourcery.com>
49835         * manual/lang.texi (size_t): Note types to which size_t may be
49836         equivalent with the GNU C Library, but do not describe when
49837         differences between them are significant.
49839 2012-03-05  Andreas Jaeger  <aj@suse.de>
49841         * sysdeps/i386/fpu/libm-test-ulps: Update.
49843 2012-03-05  Joseph Myers  <joseph@codesourcery.com>
49845         [BZ #3976]
49846         * sysdeps/ieee754/dbl-64/e_pow.c: Include <fenv.h>.
49847         (__ieee754_pow): Save and restore rounding mode and use
49848         round-to-nearest for main computations.
49849         * math/libm-test.inc (pow_test_tonearest): New function.
49850         (pow_test_towardzero): Likewise.
49851         (pow_test_downward): Likewise.
49852         (pow_test_upward): Likewise.
49853         (main): Call the new functions.
49854         * sysdeps/i386/fpu/libm-test-ulps: Update.
49855         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
49857         [BZ #3976]
49858         * math/libm-test.inc (cosh_test_tonearest): New function.
49859         (cosh_test_towardzero): Likewise.
49860         (cosh_test_downward): Likewise.
49861         (cosh_test_upward): Likewise.
49862         (sinh_test_tonearest): Likewise.
49863         (sinh_test_towardzero): Likewise.
49864         (sinh_test_downward): Likewise.
49865         (sinh_test_upward): Likewise.
49866         (main): Call the new functions.
49867         * sysdeps/i386/fpu/libm-test-ulps: Update.
49868         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
49870 2012-03-05  Tom de Vries  <tom@codesourcery.com>
49872         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Ensure
49873         default stack guard is set in last bytes.
49874         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard): Same.
49876 2012-03-05  Kees Cook  <keescook@chromium.org>
49878         * stdio-common/vfprintf.c (vfprintf): add missing errno settings.
49880         [BZ #13656]
49881         * stdio-common/vfprintf.c (vfprintf): Check for nargs overflow and
49882         possibly allocate from heap instead of stack.
49883         * stdio-common/bug-vfprintf-nargs.c: New file.
49884         * stdio-common/Makefile (tests): Add nargs overflow test.
49886 2012-03-03  Andreas Schwab  <schwab@linux-m68k.org>
49888         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
49890 2012-03-03  Marek Polacek  <polacek@redhat.com>
49892         * include/sys/cdefs.h: Remove __GNUC_PREREQ macro.
49893         * math/math_private.h: Likewise.
49894         * stdlib/tst-strtod.c: Likewise.
49895         * sysdeps/i386/i486/bits/atomic.h: Likewise.
49896         * sysdeps/x86_64/bits/atomic.h: Likewise.
49898 2012-03-02  David S. Miller  <davem@davemloft.net>
49900         * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: New file.
49901         * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrintf.S: New file.
49902         * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S: New file.
49903         * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrintf.S: New file.
49904         * sysdeps/sparc/sparc64/fpu/s_llrint.S: New file.
49905         * sysdeps/sparc/sparc64/fpu/s_llrintf.S: New file.
49906         * sysdeps/sparc/sparc64/fpu/s_lrint.S: New file.
49907         * sysdeps/sparc/sparc64/fpu/s_lrintf.S: New file.
49909 2012-03-02  Roland McGrath  <roland@hack.frob.com>
49911         [BZ #13792]
49912         * manual/examples/README: New file, says the example source files
49913         can be used under GPL>=2.
49914         * manual/Makefile (%.c.texi): Eat the leading part of the file until a
49915         line containing just "*/".
49916         * manual/examples/add.c: Add copyright header (GPL>=2).
49917         * manual/examples/argp-ex1.c: Likewise.
49918         * manual/examples/argp-ex2.c: Likewise.
49919         * manual/examples/argp-ex3.c: Likewise.
49920         * manual/examples/argp-ex4.c: Likewise.
49921         * manual/examples/atexit.c: Likewise.
49922         * manual/examples/db.c: Likewise.
49923         * manual/examples/dir.c: Likewise.
49924         * manual/examples/dir2.c: Likewise.
49925         * manual/examples/execinfo.c: Likewise.
49926         * manual/examples/filecli.c: Likewise.
49927         * manual/examples/filesrv.c: Likewise.
49928         * manual/examples/fmtmsgexpl.c: Likewise.
49929         * manual/examples/genpass.c: Likewise.
49930         * manual/examples/inetcli.c: Likewise.
49931         * manual/examples/inetsrv.c: Likewise.
49932         * manual/examples/isockad.c: Likewise.
49933         * manual/examples/longopt.c: Likewise.
49934         * manual/examples/memopen.c: Likewise.
49935         * manual/examples/memstrm.c: Likewise.
49936         * manual/examples/mkfsock.c: Likewise.
49937         * manual/examples/mkisock.c: Likewise.
49938         * manual/examples/mygetpass.c: Likewise.
49939         * manual/examples/pipe.c: Likewise.
49940         * manual/examples/popen.c: Likewise.
49941         * manual/examples/rprintf.c: Likewise.
49942         * manual/examples/search.c: Likewise.
49943         * manual/examples/select.c: Likewise.
49944         * manual/examples/setjmp.c: Likewise.
49945         * manual/examples/sigh1.c: Likewise.
49946         * manual/examples/sigusr.c: Likewise.
49947         * manual/examples/stpcpy.c: Likewise.
49948         * manual/examples/strdupa.c: Likewise.
49949         * manual/examples/strftim.c: Likewise.
49950         * manual/examples/strncat.c: Likewise.
49951         * manual/examples/subopt.c: Likewise.
49952         * manual/examples/swapcontext.c: Likewise.
49953         * manual/examples/termios.c: Likewise.
49954         * manual/examples/testopt.c: Likewise.
49955         * manual/examples/testpass.c: Likewise.
49956         * manual/examples/timeval_subtract.c: Likewise.
49958         [BZ #13792]
49959         * manual/time.texi (Elapsed Time): Move timeval_subtract example
49960         function to ...
49961         * manual/timeval_subtract.c.texi: ... here, new file.
49963 2012-03-02  David S. Miller  <davem@davemloft.net>
49965         * sysdeps/sparc/fpu/libm-test-ulps: Update for recently added tests.
49967 2012-03-02  Joseph Myers  <joseph@codesourcery.com>
49969         [BZ #3976]
49970         * sysdeps/ieee754/dbl-64/s_sin.c: Include <fenv.h>
49971         (__sin): Save and restore rounding mode and use round-to-nearest
49972         for all computations.
49973         (__cos): Save and restore rounding mode and use round-to-nearest
49974         for all computations.
49975         * sysdeps/ieee754/dbl-64/s_tan.c: Include "math_private.h" and
49976         <fenv.h>.
49977         (tan): Save and restore rounding mode and use round-to-nearest for
49978         all computations.
49979         * math/libm-test.inc (cos_test_tonearest): New function.
49980         (cos_test_towardzero): Likewise.
49981         (cos_test_downward): Likewise.
49982         (cos_test_upward): Likewise.
49983         (sin_test_tonearest): Likewise.
49984         (sin_test_towardzero): Likewise.
49985         (sin_test_downward): Likewise.
49986         (sin_test_upward): Likewise.
49987         (tan_test_tonearest): Likewise.
49988         (tan_test_towardzero): Likewise.
49989         (tan_test_downward): Likewise.
49990         (tan_test_upward): Likewise.
49991         (main): Call the new functions.
49992         * sysdeps/i386/fpu/libm-test-ulps: Update.
49993         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
49995         [BZ #10135]
49996         * sysdeps/ieee754/dbl-64/s_scalbln.c (__scalbln): First test for
49997         small n, then large n, before computing and testing k+n.
49998         * sysdeps/ieee754/dbl-64/s_scalbn.c (__scalbn): Likewise.
49999         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c (__scalbln):
50000         Likewise.
50001         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c (__scalbn):
50002         Likewise.
50003         * sysdeps/ieee754/flt-32/s_scalblnf.c (__scalblnf): Likewise.
50004         * sysdeps/ieee754/flt-32/s_scalbnf.c (__scalbnf): Likewise.
50005         * sysdeps/ieee754/ldbl-128/s_scalblnl.c (__scalblnl): Likewise.
50006         * sysdeps/ieee754/ldbl-128/s_scalbnl.c (__scalbnl): Likewise.
50007         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c (__scalblnl): Likewise.
50008         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c (__scalbnl): Likewise.
50009         * sysdeps/ieee754/ldbl-96/s_scalblnl.c (__scalblnl): Likewise.
50010         * sysdeps/ieee754/ldbl-96/s_scalbnl.c (__scalbnl): Likewise.
50011         * math/libm-test.inc (scalbn_test): Add more tests.
50012         (scalbln_test): Likewise.
50014         * manual/filesys.texi (mode_t): Describe constraints on size and
50015         signedness, not exact equivalence to a particular type.
50016         (ino_t): Likewise.
50017         (ino64_t): Likewise.
50018         (dev_t): Likewise.
50019         (nlink_t): Likewise.
50020         (blkcnt_t): Likewise.
50021         (blkcnt64_t): Likewise.
50022         * manual/llio.texi (off_t): Likewise.
50024         [BZ #3976]
50025         * sysdeps/ieee754/dbl-64/e_exp.c: Include <fenv.h>.
50026         (__ieee754_exp): Save and restore rounding mode and use
50027         round-to-nearest for all computations.
50028         * math/libm-test.inc (exp_test_tonearest): New function.
50029         (exp_test_towardzero): Likewise.
50030         (exp_test_downward): Likewise.
50031         (exp_test_upward): Likewise.
50032         (main): Call the new functions.
50033         * sysdeps/i386/fpu/libm-test-ulps: Update.
50034         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
50036 2012-03-01  Chris Demetriou  <cgd@google.com>
50038         * sysdeps/gnu/errlist-compat.awk: Don't depend on AWK internals to
50039         have predictable order.
50041 2012-03-01  David S. Miller  <davem@davemloft.net>
50043         * sysdeps/unix/sysv/linux/sparc/sparc32/getpagesize.c: Delete.
50045         * sysdeps/sparc/sparc64/fpu/s_finite.S: New file.
50046         * sysdeps/sparc/sparc64/fpu/s_finitef.S: New file.
50047         * sysdeps/sparc/sparc64/fpu/s_isinf.S: New file.
50048         * sysdeps/sparc/sparc64/fpu/s_isinff.S: New file.
50050         * sysdeps/sparc/sparc32/fpu/s_signbit.S: New file.
50051         * sysdeps/sparc/sparc32/fpu/s_signbitf.S: New file.
50052         * sysdeps/sparc/sparc32/fpu/s_signbitl.S: New file.
50053         * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: New file.
50054         * sysdeps/sparc/sparc64/fpu/s_isnan.S: New file.
50055         * sysdeps/sparc/sparc64/fpu/s_isnanf.S: New file.
50056         * sysdeps/sparc/sparc64/fpu/s_signbit.S: New file.
50057         * sysdeps/sparc/sparc64/fpu/s_signbitf.S: New file.
50058         * sysdeps/sparc/sparc64/fpu/s_signbitl.S: New file.
50060         * sysdeps/sparc/fpu/libm-test-ulps: Update.
50062         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Move...
50063         * sysdeps/sparc/fpu/libm-test-ulps: to here.
50064         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Delete.
50066         * sysdeps/sparc/crti.S: Remove HAVE_BINUTILS_GOTDATA checks.
50067         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
50068         * sysdeps/sparc/sparc32/elf/start.S: Likewise.
50069         * sysdeps/sparc/sparc32/fpu/w_sqrt.S: Likewise.
50070         * sysdeps/sparc/sparc32/fpu/w_sqrtf.S: Likewise.
50071         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S: Likewise.
50072         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S: Likewise.
50073         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
50074         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
50075         * sysdeps/sparc/sparc64/fpu/w_sqrt.S: Likewise.
50076         * sysdeps/sparc/sparc64/fpu/w_sqrtf.S: Likewise.
50077         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
50078         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
50079         * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Likewise.
50080         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
50081         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
50082         * config.h.in (HAVE_BINUTILS_GOTDATA): Delete.
50083         * sysdeps/sparc/elf/configure.in: Remove binutils GOTDATA checks.
50084         * sysdeps/sparc/elf/configure: Regenerated.
50086 2012-03-01  Joseph Myers  <joseph@codesourcery.com>
50088         * configure.in (AS, LD): Require binutils 2.20 or later.
50089         * configure: Regenerated.
50090         * manual/install.texi (Tools for Compilation): Give binutils 2.20
50091         as required minimum version.
50092         * INSTALL: Regenerated.
50094         [BZ #2541]
50095         [BZ #4108]
50096         * sysdeps/ieee754/flt-32/s_erff.c (__erfcf): Mask out one more bit
50097         before squaring exponent.
50098         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c (__erfcl): Mask out whole
50099         bottom long double and 27 bits of top long double before squaring
50100         exponent.
50101         * math/libm-test.inc (erfc_test): Add more tests.
50102         * sysdeps/i386/fpu/libm-test-ulps: Update.
50103         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
50104         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
50106 2012-03-01  Kai Tietz  <ktietz@redhat.com>
50108         * soft-fp/soft-fp.h (_FP_STRUCT_LAYOUT): New macro.
50109         * soft-fp/quad.h (_FP_UNION_Q): Use _FP_STRUCT_LAYOUT on struct
50110         containing bit-fields.
50111         * soft-fp/extended.h (_FP_UNION_E): Likewise.
50112         * soft-fp/single.h (_FP_UNION_S): Likewise.
50113         * soft-fp/double.h (_FP_UNION_D): Likewise.
50115 2012-02-29  Joseph Myers  <joseph@codesourcery.com>
50117         [BZ #13786]
50118         * sysdeps/i386/i686/multiarch/strcmp.S [USE_AS_STRCASECMP_L]: Do
50119         not include ../strcmp.S.
50120         [USE_AS_STRNCASECMP_L]: Likewise.
50121         * sysdeps/i386/i686/multiarch/strcasecmp_l-c.c
50122         (__strcasecmp_l_ia32): Define as alias to __strcasecmp_l_nonascii.
50123         * sysdeps/i386/i686/multiarch/strncase_l-c.c
50124         (__strncasecmp_l_ia32): Define as alias to
50125         __strncasecmp_l_nonascii.
50127         [BZ #5794]
50128         * math/libm-test.inc (expm1_test): Add test for bug 5794.
50129         * sysdeps/i386/fpu/libm-test-ulps: Update.
50130         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
50132         * sysdeps/i386/fpu/libm-test-ulps: Reduce some expected errors.
50133         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
50135 2012-02-29  Jeff Law  <law@redhat.com>
50137         * resolv/res_query.c (__libc_res_nquerydomain): Avoid
50138         out of bounds read.
50140 2012-02-29  Marek Polacek  <polacek@redhat.com>
50142         [BZ #13706]
50143         * elf/rtld.c (dl_main): Always set l_used to 1 for vDSO.
50144         * elf/Makefile: Add rules to run tst-unused-dep.out.
50146 2012-02-28  David S. Miller  <davem@davemloft.net>
50148         * sysdeps/sparc/sparc32/fpu/w_sqrt.S: New file.
50149         * sysdeps/sparc/sparc32/fpu/w_sqrtf.S: New file.
50150         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S: New file.
50151         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S: New file.
50152         * sysdeps/sparc/sparc64/fpu/w_sqrt.S: New file.
50153         * sysdeps/sparc/sparc64/fpu/w_sqrtf.S: New file.
50155 2012-02-29  Joseph Myers  <joseph@codesourcery.com>
50157         * math/libm-test.inc (llround_test): Move one test from
50158         lround_test.  Use TEST_f_L in moved test.
50159         (lround_test): Move misplaced test to llround_test.  Add testcase
50160         from bug 2561.
50162 2012-02-28  Ulrich Drepper  <drepper@gmail.com>
50164         * sysdeps/x86_64/fpu/e_expf.S: New file.
50165         Contributed by Dmitrieva Liubov <liubov.dmitrieva@gmail.com>.
50167 2012-02-28  Stanislav Brabec  <sbrabec@suse.cz>
50169         [BZ #13637]
50170         * posix/regex_internal.c (re_string_skip_chars): Fix miscomputation
50171         of remain_len that may cause incomplete multi-byte character and
50172         false match.
50173         * posix/bug-regex33.c: New file.
50174         * posix/Makefile (tests): Add bug-regex33.
50176 2012-02-28  Joseph Myers  <joseph@codesourcery.com>
50178         * manual/macros.texi: New file.
50179         * Makefile (INSTALL, NOTES): Depend on manual/macros.texi.
50180         * manual/libc.texinfo: Include macros.texi.
50181         * manual/creatute.texi: Likewise.
50182         * manual/install.texi: Likewise.
50183         * manual/arith.texi: Use macros @Theglibc{}, @theglibc{} and
50184         @glibcadj{} in references to the GNU C Library.
50185         * manual/charset.texi: Likewise.
50186         * manual/conf.texi: Likewise.
50187         * manual/contrib.texi: Likewise.  Consistently use "GNU C Library"
50188         when not using those macros.
50189         * manual/creature.texi: Likewise.
50190         * manual/crypt.texi: Likewise.
50191         * manual/errno.texi: Likewise.
50192         * manual/filesys.texi: Likewise.
50193         * manual/header.texi: Likewise.
50194         * manual/install.texi: Likewise.
50195         * manual/intro.texi: Likewise.
50196         * manual/io.texi: Likewise.
50197         * manual/job.texi: Likewise.
50198         * manual/lang.texi: Likewise.
50199         * manual/libc.texiinfo: Likewise.
50200         * manual/llio.texi: Likewise.
50201         * manual/locale.texi: Likewise.
50202         * manual/maint.texi: Likewise.
50203         * manual/math.texi: Likewise.
50204         * manual/memory.texi: Likewise.
50205         * manual/message.texi: Likewise.
50206         * manual/nss.texi: Likewise.
50207         * manual/pattern.texi: Likewise.
50208         * manual/process.texi: Likewise.
50209         * manual/resource.texi: Likewise.
50210         * manual/search.texi: Likewise.
50211         * manual/setjmp.texi: Likewise.
50212         * manual/signal.texi: Likewise.
50213         * manual/socket.texi: Likewise.
50214         * manual/startup.texi: Likewise.
50215         * manual/stdio.texi: Likewise.
50216         * manual/string.texi: Likewise.
50217         * manual/sysinfo.texi: Likewise.
50218         * manual/syslog.texi: Likewise.
50219         * manual/terminal.texi: Likewise.
50220         * manual/time.texi: Likewise.
50221         * manual/users.texi: Likewise.
50222         * INSTALL: Regenerated.
50223         * NOTES: Regenerated.
50224         * sysdeps/gnu/errlist.c: Regenerated.
50226 2012-02-28  Andreas Schwab  <schwab@linux-m68k.org>
50228         * include/dirent.h: Include <dirstream.h> before
50229         <dirent/dirent.h>.
50231 2012-02-28  David S. Miller  <davem@davemloft.net>
50233         * sysdeps/sparc/sparc32/fpu/s_copysign.S: New file.
50234         * sysdeps/sparc/sparc32/fpu/s_copysignf.S: New file.
50235         * sysdeps/sparc/sparc64/fpu/s_copysign.S: New file.
50236         * sysdeps/sparc/sparc64/fpu/s_copysignf.S: New file.
50238 2012-02-27  David S. Miller  <davem@davemloft.net>
50240         * sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S: New file.
50241         * sysdeps/sparc/sparc32/sparcv9/fpu/s_floorf.S: New file.
50242         * sysdeps/sparc/sparc64/fpu/s_floor.S: New file.
50243         * sysdeps/sparc/sparc64/fpu/s_floorf.S: New file.
50245         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Fix accidental use of
50246         frame pointer instead of stack pointer relative arg slot.
50247         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: Likewise.
50248         * sysdeps/sparc/sparc64/fpu/s_ceil.S: Likewise.
50249         * sysdeps/sparc/sparc64/fpu/s_ceilf.S: Likewise.
50251 2012-02-27  Carlos O'Donell  <carlos_odonell@mentor.com>
50253         [BZ #3992]
50254         * stdlib/fmtmsg.c: Use of uint32_t requires stdint.h.
50256 2012-02-27  David S. Miller  <davem@davemloft.net>
50258         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Fix comment formatting.
50259         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: Likewise.
50260         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Likewise.
50261         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: Likewise.
50262         * sysdeps/sparc/sparc64/fpu/s_ceil.S: Likewise.
50263         * sysdeps/sparc/sparc64/fpu/s_ceilf.S: Likewise.
50264         * sysdeps/sparc/sparc64/fpu/s_rint.S: Likewise.
50265         * sysdeps/sparc/sparc64/fpu/s_rintf.S: Likewise.
50267 2012-02-27  Joseph Myers  <joseph@codesourcery.com>
50269         * configure.in (CC): Restrict allowed GCC versions to 4.3 and
50270         later.  Allow versions 5-9.
50271         * configure: Regenerated.
50272         * manual/install.texi (Tools for Compilation): Give GCC 4.3 as
50273         required minimum version and 4.6 as recommended version.  Do not
50274         mention bugs in GCC 2.7 and 2.8.
50275         * INSTALL: Regenerated.
50277 2012-02-27  David S. Miller  <davem@davemloft.net>
50279         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: New file.
50280         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: New file.
50281         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: New file.
50282         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: New file.
50283         * sysdeps/sparc/sparc64/fpu/s_ceil.S: New file.
50284         * sysdeps/sparc/sparc64/fpu/s_ceilf.S: New file.
50285         * sysdeps/sparc/sparc64/fpu/s_rint.S: New file.
50286         * sysdeps/sparc/sparc64/fpu/s_rintf.S: New file.
50288         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl): Do not
50289         manipulate bits before adding and subtracting TWO112[sx].
50290         * sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
50292 2012-02-27  Roland McGrath  <roland@hack.frob.com>
50294         [BZ #13775]
50295         * libio/bits/stdio-ldbl.h (vdprintf, dprintf): Put these under
50296         [__USE_XOPEN2K8] rather than [__USE_GNU], to match the stdio.h decls.
50297         * libio/stdio.h (vdprintf, dprintf): Remove comment about these not
50298         being in POSIX, because they are in 1003.1-2008.
50300         * rt/tst-aio.c: Include <fcntl.h>.
50301         * rt/tst-aio7.c: Likewise.
50302         * rt/tst-aio64.c: Likewise.
50304         * stdio-common/tst-fmemopen.c (main): Remove spurious const.
50306 2012-02-27  Joseph Myers  <joseph@codesourcery.com>
50308         * manual/install.texi (--with-headers): Describe headers as
50309         interface headers, not private headers.
50310         (Specific advice for GNU/Linux systems): Describe use of headers
50311         from "make headers_install", not private headers from older
50312         kernels.
50313         * INSTALL: Regenerated.
50314         * sysdeps/unix/sysv/linux/configure.in (LIBC_LINUX_VERSION):
50315         Change to 2.6.19.
50316         * sysdeps/unix/sysv/linux/configure: Regenerated.
50318         * manual/llio.texi (fclean): Remove documentation.
50320         * manual/Makefile (libc-texi-generated): New variable.  Include
50321         version.texi.
50322         (libc.dvi, libc.pdf, libc.info, libc/index.html): Depend on
50323         $(libc-texi-generated), not duplicated list of files.
50324         (version.texi, stamp-version): New rules.
50325         (realclean): Remove $(libc-texi-generated), not individual files
50326         from that list.  Do not remove dir-add.texinfo.
50327         * manual/libc.texinfo: Comment out uses of edition numbers and
50328         references to printed manual.  Remove last-updated dates.
50329         (EDITION): Comment out.
50330         (ISBN): Likewise.
50331         (VERSION, UPDATED): Remove.
50332         (version.texi): Include.
50334 2012-02-27  Andreas Schwab  <schwab@linux-m68k.org>
50336         * sysdeps/posix/spawni.c: Include <signal.h>.
50337         * sysdeps/pthread/aio_cancel.c: Include <fcntl.h>.
50338         * sysdeps/pthread/aio_fsync.c: Likewise.
50340 2012-02-26  Ulrich Drepper  <drepper@gmail.com>
50342         * conform/Makefile (tests): Run only when not cross-compiling and
50343         when fast-check is not defined.
50345         * conform/conformtest.pl: XPG7 and POSIX2008 require C99.
50346         * conform/data/limits.h-data: Fixes for POSIX2008.
50347         * conform/run-conformtest.sh: Run all tests.
50348         * include/arpa/inet.h: Changes to allow conformtest.pl to use the
50349         headers.
50350         * include/bits/dlfcn.h: Likewise.
50351         * include/langinfo.h: Likewise.
50352         * include/monetary.h: Likewise.
50353         * include/sys/poll.h: Likewise.
50355         * io/fcntl.h: Define AT_NO_AUTOMOUNT and AT_EMPTY_PATH only
50356         for __USE_GNU.
50357         * posix/spawn.h: Define __need_sigset_t.
50358         * posix/sys/wait.h: Don't include <sys/resource.h>, define id_t here.
50359         * posix/unistd.h: Declare ctermid only for XPG before XPG6.
50360         * rt/aio.h: Don't include fcntl.h and signal.h.  Use bits/siginfo.h
50361         to get sigevent_t only.
50362         * sysdeps/unix/sysv/linux/bits/socket.h: Declare sendmmsg and recvmmsg
50363         only for __USE_GNU.
50364         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
50365         * sysdeps/unix/sysv/linux/bits/uio.h: Declare process_vm_readv and
50366         process_vm_writev only for __USE_GNU.
50367         * termios/termios.h: Declare tcgetsid also for POSIX2008.
50369         * conform/Makefile: For now ignore errors from run-conformtest.
50370         * conform/conformtest.pl: Simplify code.  Add -ansi to CFLAGS for
50371         POSIX to avoid namespace pollution.  Don't prepend headers.
50372         * conform/data/aio.h-data: Fixes for POSIX testing.
50373         * conform/data/fcntl.h-data: Likewise.
50374         * conform/data/glob.h-data: Likewise.
50375         * conform/data/grp.h-data: Likewise.
50376         * conform/data/pthread.h-data: Likewise.
50377         * conform/data/pwd.h-data: Likewise.
50378         * conform/data/signal.h-data: Likewise.
50379         * conform/data/spawn.h-data: Likewise.
50380         * conform/data/stdio.h-data: Likewise.
50381         * conform/data/stdlib.h-data: Likewise.
50382         * conform/data/stropts.h-data: Likewise.
50383         * conform/data/sys/mman.h-data: Likewise.
50384         * conform/data/sys/stat.h-data: Likewise.
50385         * conform/data/sys/types.h-data: Likewise.
50386         * conform/data/sys/wait.h-data: Likewise.
50387         * conform/data/time.h-data: Likewise.
50388         * conform/data/unistd.h-data: Likewise.
50389         * conform/data/utime.h-data: Likewise.
50391         * io/sys/stat.h: fchmod was always in POSIX.
50392         * posix/sys/wait.h: Include <sys/resource.h> only for waitid.
50393         * posix/unistd.h: fsync and ftruncate were in early POSIX as well.
50394         * rt/aio.h: Define __need_timespec before including <time.h>.
50395         * sysdeps/unix/sysv/linux/bits/siginfo.h: Don't name siginfo_t
50396         struct.  Add forward declaration of pthread_attr_t and use it in
50397         sigevent.
50398         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h: Likewise.
50399         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
50400         * sysdeps/unix/sysv/linux/bits/time.h: Don't let __STRICT_ANSI__
50401         always remove CLK_TCK definition.
50403 2012-02-26  Andreas Schwab  <schwab@linux-m68k.org>
50405         * sysdeps/ieee754/dbl-64/k_tan.c: Replace with empty file.
50407 2012-02-25  Ulrich Drepper  <drepper@gmail.com>
50409         * conform/run-conformtest.sh: New file.
50410         * conform/Makefile: Run run-conformtest for tests.
50411         * conform/conformtest.pl: Many bug fixes.  Add ISO C99, ISO C11
50412         support.
50414         * conform/data/uchar.h-data: New file.
50415         * conform/data/aio.h-data: Fixes for ISO C and POSIX 1995 testing.
50416         * conform/data/arpa/inet.h-data: Likewise.
50417         * conform/data/assert.h-data: Likewise.
50418         * conform/data/complex.h-data: Likewise.
50419         * conform/data/cpio.h-data: Likewise.
50420         * conform/data/ctype.h-data: Likewise.
50421         * conform/data/dirent.h-data: Likewise.
50422         * conform/data/dlfcn.h-data: Likewise.
50423         * conform/data/errno.h-data: Likewise.
50424         * conform/data/fcntl.h-data: Likewise.
50425         * conform/data/float.h-data: Likewise.
50426         * conform/data/fmtmsg.h-data: Likewise.
50427         * conform/data/fnmatch.h-data: Likewise.
50428         * conform/data/ftw.h-data: Likewise.
50429         * conform/data/glob.h-data: Likewise.
50430         * conform/data/grp.h-data: Likewise.
50431         * conform/data/iconv.h-data: Likewise.
50432         * conform/data/inttypes.h-data: Likewise.
50433         * conform/data/langinfo.h-data: Likewise.
50434         * conform/data/libgen.h-data: Likewise.
50435         * conform/data/limits.h-data: Likewise.
50436         * conform/data/locale.h-data: Likewise.
50437         * conform/data/math.h-data: Likewise.
50438         * conform/data/monetary.h-data: Likewise.
50439         * conform/data/mqueue.h-data: Likewise.
50440         * conform/data/ndbm.h-data: Likewise.
50441         * conform/data/net/if.h-data: Likewise.
50442         * conform/data/netdb.h-data: Likewise.
50443         * conform/data/netinet/in.h-data: Likewise.
50444         * conform/data/nl_types.h-data: Likewise.
50445         * conform/data/poll.h-data: Likewise.
50446         * conform/data/pthread.h-data: Likewise.
50447         * conform/data/pwd.h-data: Likewise.
50448         * conform/data/regex.h-data: Likewise.
50449         * conform/data/sched.h-data: Likewise.
50450         * conform/data/search.h-data: Likewise.
50451         * conform/data/semaphore.h-data: Likewise.
50452         * conform/data/setjmp.h-data: Likewise.
50453         * conform/data/signal.h-data: Likewise.
50454         * conform/data/spawn.h-data: Likewise.
50455         * conform/data/stdarg.h-data: Likewise.
50456         * conform/data/stdio.h-data: Likewise.
50457         * conform/data/stdlib.h-data: Likewise.
50458         * conform/data/string.h-data: Likewise.
50459         * conform/data/strings.h-data: Likewise.
50460         * conform/data/stropts.h-data: Likewise.
50461         * conform/data/sys/ipc.h-data: Likewise.
50462         * conform/data/sys/mman.h-data: Likewise.
50463         * conform/data/sys/msg.h-data: Likewise.
50464         * conform/data/sys/resource.h-data: Likewise.
50465         * conform/data/sys/select.h-data: Likewise.
50466         * conform/data/sys/sem.h-data: Likewise.
50467         * conform/data/sys/shm.h-data: Likewise.
50468         * conform/data/sys/socket.h-data: Likewise.
50469         * conform/data/sys/stat.h-data: Likewise.
50470         * conform/data/sys/statvfs.h-data: Likewise.
50471         * conform/data/sys/time.h-data: Likewise.
50472         * conform/data/sys/timeb.h-data: Likewise.
50473         * conform/data/sys/times.h-data: Likewise.
50474         * conform/data/sys/types.h-data: Likewise.
50475         * conform/data/sys/uio.h-data: Likewise.
50476         * conform/data/sys/un.h-data: Likewise.
50477         * conform/data/sys/utsname.h-data: Likewise.
50478         * conform/data/sys/wait.h-data: Likewise.
50479         * conform/data/syslog.h-data: Likewise.
50480         * conform/data/tar.h-data: Likewise.
50481         * conform/data/termios.h-data: Likewise.
50482         * conform/data/utime.h-data: Likewise.
50483         * conform/data/utmpx.h-data: Likewise.
50484         * conform/data/varargs.h-data: Likewise.
50485         * conform/data/wchar.h-data: Likewise.
50486         * conform/data/wctype.h-data: Likewise.
50487         * conform/data/wordexp.h-data: Likewise.
50489         * include/stropts.h: New file.
50490         * include/uchar.h: New file.
50491         * include/aio.h: Changes to allow conformtest.pl to use the headers.
50492         * include/assert.h: Likewise.
50493         * include/ctype.h: Likewise.
50494         * include/dirent.h: Likewise.
50495         * include/dlfcn.h: Likewise.
50496         * include/fcntl.h: Likewise.
50497         * include/fnmatch.h: Likewise.
50498         * include/glob.h: Likewise.
50499         * include/grp.h: Likewise.
50500         * include/libio.h: Likewise.
50501         * include/locale.h: Likewise.
50502         * include/math.h: Likewise.
50503         * include/net/if.h: Likewise.
50504         * include/netdb.h: Likewise.
50505         * include/netinet/in.h: Likewise.
50506         * include/pthread.h: Likewise.
50507         * include/pwd.h: Likewise.
50508         * include/regex.h: Likewise.
50509         * include/sched.h: Likewise.
50510         * include/search.h: Likewise.
50511         * include/setjmp.h: Likewise.
50512         * include/signal.h: Likewise.
50513         * include/stdio.h: Likewise.
50514         * include/stdlib.h: Likewise.
50515         * include/string.h: Likewise.
50516         * include/sys/cdefs.h: Likewise.
50517         * include/sys/mman.h: Likewise.
50518         * include/sys/msg.h: Likewise.
50519         * include/sys/resource.h: Likewise.
50520         * include/sys/select.h: Likewise.
50521         * include/sys/socket.h: Likewise.
50522         * include/sys/stat.h: Likewise.
50523         * include/sys/statvfs.h: Likewise.
50524         * include/sys/time.h: Likewise.
50525         * include/sys/times.h: Likewise.
50526         * include/sys/uio.h: Likewise.
50527         * include/sys/utsname.h: Likewise.
50528         * include/sys/wait.h: Likewise.
50529         * include/termios.h: Likewise.
50530         * include/time.h: Likewise.
50531         * include/ulimit.h: Likewise.
50532         * include/unistd.h: Likewise.
50533         * include/utime.h: Likewise.
50534         * include/wchar.h: Likewise.
50535         * include/wctype.h: Likewise.
50536         * include/wordexp.h: Likewise.
50538         * posix/tar.h (TSVTX): Should not be visible for POSIX before 2008.
50540         * time/time.h: TIME_UTC must be a macro.
50541         Make timespec_get available for ISO C11 only as well.
50543 2012-02-24  Ulrich Drepper  <drepper@gmail.com>
50545         * stdlib/fmtmsg.c (fmtmsg): Lock around use of severity list.
50546         Reported by Peng Haitao <penght@cn.fujitsu.com>.
50548 2012-02-24  Joseph Myers  <joseph@codesourcery.com>
50550         * configure.in: Use -o not -a in test for unsupported multi-arch.
50552 2012-02-24  Joseph Myers  <joseph@codesourcery.com>
50554         * manual/texinfo.tex: Update to version 2012-01-19.16.
50556 2012-02-24  Joseph Myers  <joseph@codesourcery.com>
50558         * manual/Makefile (licenses): Change fdl-1.1.texi to fdl-1.3.texi.
50560 2012-02-24  Roland McGrath  <roland@hack.frob.com>
50562         [BZ #13738]
50563         * manual/libc.texinfo (FDL_VERSION): Set to 1.3.
50564         * manual/fdl-1.3.texi: New file.
50565         * manual/fdl-1.1.texi: File removed.
50567         [BZ #13738]
50568         * manual/libc.texinfo (FDL_VERSION): New @set.
50569         Use it for mention of FDL in cover text.
50570         (Documentation License): Use it in @include file name.
50572 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
50573             Roland McGrath  <roland@hack.frob.com>
50575         [BZ #5461]
50576         * manual/arith.texi (strtoll): Refer to LLONG_MAX and LLONG_MIN)
50577         (not LONG_LONG_MAX and LONG_LONG_MIN.
50578         * manual/lang.texi (LONG_LONG_MIN): Document first as ISO
50579         LLONG_MIN.  Refer to LONG_LONG_MIN only as older GCC-specific
50580         name.
50581         (LONG_LONG_MAX, LLONG_MAX, ULONG_LONG_MAX, ULLONG_MAX): Likewise.
50583 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
50585         [BZ #2547]
50586         [BZ #11365]
50587         * sysdeps/ieee754/flt-32/s_nearbyintf.c (__nearbyintf): Do not
50588         manipulate bits before adding and subtracting TWO23[sx].
50589         * math/libm-test.inc (nearbyint_test): Add more tests.
50591 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
50593         [BZ #2548]
50594         * sysdeps/ieee754/flt-32/s_rintf.c (__rintf): Do not manipulate
50595         bits before adding and subtracting TWO23[sx].
50596         * math/libm-test.inc (rint_test): Add more tests.
50597         (rint_test_tonearest): Likewise.
50598         (rint_test_towardzero): Likewise.
50599         (rint_test_downward): Likewise.
50600         (rint_test_upward: Likewise.
50602 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
50604         [BZ #10110]
50605         * include/stdc-predef.h: New file.  Extracted from features.h.
50606         * include/features.h: Include stdc-predef.h.
50607         * Makefile (headers): Add stdc-predef.h.
50608         * CONFORMANCE (Compiler limitations): Update.
50610 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
50612         * manual/libc.texinfo (VERSION, UPDATED): Revert.
50614 2012-02-21  David S. Miller  <davem@davemloft.net>
50616         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: More jn test ULP updates.
50617         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
50619 2012-02-20  David S. Miller  <davem@davemloft.net>
50621         * sysdeps/sparc/sparc32/__longjmp.S: Unwind in the 'thread' path
50622         using a normal save/restore sequence, rather than allocating a
50623         dummy stack frame just to store a frame pointer and restore.
50624         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
50626 2012-02-21  Joseph Myers  <joseph@codesourcery.com>
50628         * manual/install.texi: Fix stray word in line-wrapped comment.
50630 2012-02-20  David S. Miller  <davem@davemloft.net>
50632         * sysdeps/sparc/elf/configure.in (PI_STATIC_AND_HIDDEN): Define if
50633         both binutils and gcc support GOTDATA.
50635         * sysdeps/unix/sparc/sysdep.h: Document why we don't use
50636         "rd %pc" in the PIC register setup sequences.
50638         * sysdeps/sparc/crti.S: Try to use GOTDATA relocs.
50639         * sysdeps/sparc/sparc32/dl-machine.h (RTLD_START): Likewise.
50640         * sysdeps/sparc/sparc32/elf/start.S: Likewise.
50641         * sysdeps/sparc/sparc64/dl-machine.h (RTLD_START): Likewise.
50642         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
50643         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
50644         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
50645         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
50646         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
50647         (SYSCALL_ERROR_HANDLER): Likewise.
50648         * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Likewise.
50649         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
50650         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
50651         (SYSCALL_ERROR_HANDLER): Likewise.
50653         * config.h.in (HAVE_BINUTILS_GOTDATA): New.
50654         (HAVE_GCC_GOTDATA): New.
50655         * sysdeps/sparc/elf/configure.in: Test for GOTDATA
50656         relocation support in both binutils and gcc.
50657         * sysdeps/sparc/elf/configure: Regenerate.
50659         * sysdeps/sparc/sparc32/elf/configure.in: Delete.
50660         * sysdeps/sparc/sparc32/elf/configure: Delete.
50661         * sysdeps/sparc/sparc64/elf/configure.in: Delete.
50662         * sysdeps/sparc/sparc64/elf/configure: Delete.
50663         * sysdeps/sparc/elf/configure.in: New file.
50664         * sysdeps/sparc/elf/configure: Generate.
50666         * sysdeps/sparc/sparc32/elf/configure.in: Delete WDISP22 check.
50667         * sysdeps/sparc/sparc32/elf/configure: Regenerate.
50668         * sysdeps/sparc/sparc64/elf/configure.in: Likewise.
50669         * sysdeps/sparc/sparc64/elf/configure: Regenerate.
50670         * config.h.in (BROKEN_SPARC_WDISP22): Remove.
50672 2012-02-21  Joseph Myers  <joseph@codesourcery.com>
50674         * manual/install.texi: Do not mention specific glibc version
50675         numbers.
50676         * manual/libc.texinfo (VERSION, UPDATED): Update.
50677         (@copying): Use @copyright{} and range of years.
50679 2012-02-21  Joseph Myers  <joseph@codesourcery.com>
50681         [BZ #13695]
50682         * csu/Makefile (distribute): Remove initfini.c and defs.awk.
50683         [crti.S not in sysdirs] (generated): Do not append.
50684         [crti.S not in sysdirs] (omit-deps): Likewise.
50685         [crti.S not in sysdirs] ($(crtstuff:%=$(objpfx)%.o)): Remove rule.
50686         [crti.S not in sysdirs] ($(objpfx)initfini.s): Likewise.
50687         [crti.S not in sysdirs] ($(objpfx)crti.S): Likewise.
50688         [crti.S not in sysdirs] ($(objpfx)crtn.S): Likewise.
50689         [crti.S not in sysdirs] ($(patsubst %,$(objpfx)crt%.o,i n)):
50690         Likewise.
50691         [crti.S not in sysdirs] ($(objpfx)defs.h): Likewise.
50692         [crti.S not in sysdirs] (CFLAGS-initfini.s): Remove variable.
50693         [crti.S not in sysdirs] (initfini.c): Remove vpath directive.
50694         * csu/defs.awk: Remove file.
50695         * sysdeps/generic/initfini.c: Likewise.
50696         * sysdeps/powerpc/powerpc32/Makefile (CFLAGS-initfini.s): Remove
50697         variable.
50698         * sysdeps/powerpc/powerpc64/Makefile (CFLAGS-initfini.s):
50699         Likewise.
50701 2012-02-20  Joseph Myers  <joseph@codesourcery.com>
50703         * sysdeps/unix/sysv/linux/bits/epoll.h: New file.
50704         * sysdeps/unix/sysv/linux/sparc/bits/epoll.h: Likewise.
50705         * sysdeps/unix/sysv/linux/x86_64/bits/epoll.h: Likewise.
50706         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Remove
50707         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
50708         * sysdeps/unix/sysv/linux/sys/epoll.h: Get flags from
50709         <bits/epoll.h>.
50710         (EPOLL_CLOEXEC, EPOLL_NONBLOCK): Don't define here.
50711         (__EPOLL_PACKED): Define to empty if not defined by
50712         <bits/epoll.h>.
50713         (struct epoll_event): Use __EPOLL_PACKED to make possibly packed.
50714         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
50715         bits/epoll.h.
50717 2012-02-20  Joseph Myers  <joseph@codesourcery.com>
50719         * sysdeps/unix/sysv/linux/bits/timerfd.h: New file.
50720         * sysdeps/unix/sysv/linux/sparc/bits/timerfd.h: Likewise.
50721         * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: Remove.
50722         * sysdeps/unix/sysv/linux/sys/timerfd.h: Get flags from
50723         <bits/timerfd.h>.
50724         (TFD_CLOEXEC, TFD_NONBLOCK): Don't define here.
50725         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
50726         bits/timerfd.h.
50728 2012-02-20  Joseph Myers  <joseph@codesourcery.com>
50730         * sysdeps/i386/fpu/libm-test-ulps: Resort with gen-libm-test.pl -n
50731         in C locale.
50732         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
50733         * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
50734         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Likewise.
50735         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
50737 2012-02-20  Aurelien Jarno  <aurelien@aurel32.net>
50739         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Adjust ULPs for jn tests.
50740         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
50742 2012-02-19  Andreas Schwab  <schwab@linux-m68k.org>
50744         * manual/errno.texi (Error Codes): Add EHWPOISON entry.
50745         * sysdeps/unix/sysv/linux/bits/errno.h (EHWPOISON): Define if not
50746         defined.
50747         * sysdeps/unix/sysv/linux/sparc/bits/errno.h (EHWPOISON):
50748         Likewise.
50749         * sysdeps/unix/sysv/linux/sparc/Versions: Add new errlist compat
50750         entry for 2.16.
50752 2012-02-19  Aurelien Jarno  <aurelien@aurel32.net>
50754         * math/w_acos.c: Use non-signaling floating-point comparisons.
50755         * math/w_acosf.c: Likewise.
50756         * math/w_acosh.c: Likewise.
50757         * math/w_acoshf.c: Likewise.
50758         * math/w_acoshl.c: Likewise.
50759         * math/w_acosl.c: Likewise.
50760         * math/w_asin.c: Likewise.
50761         * math/w_asinf.c: Likewise.
50762         * math/w_asinl.c: Likewise.
50763         * math/w_atanh.c: Likewise.
50764         * math/w_atanhf.c: Likewise.
50765         * math/w_atanhl.c: Likewise.
50766         * math/w_exp2.c: Likewise.
50767         * math/w_exp2f.c: Likewise.
50768         * math/w_exp2l.c: Likewise.
50769         * math/w_j0.c: Likewise.
50770         * math/w_j0f.c: Likewise.
50771         * math/w_j0l.c: Likewise.
50772         * math/w_j1.c: Likewise.
50773         * math/w_j1f.c: Likewise.
50774         * math/w_j1l.c: Likewise.
50775         * math/w_jn.c: Likewise.
50776         * math/w_jnf.c: Likewise.
50777         * math/w_log.c: Likewise.
50778         * math/w_log10.c: Likewise.
50779         * math/w_log10f.c: Likewise.
50780         * math/w_log10l.c: Likewise.
50781         * math/w_log2.c: Likewise.
50782         * math/w_log2f.c: Likewise.
50783         * math/w_log2l.c: Likewise.
50784         * math/w_logf.c: Likewise.
50785         * math/w_logl.c: Likewise.
50786         * math/w_sqrt.c: Likewise.
50787         * math/w_sqrtf.c: Likewise.
50788         * math/w_sqrtl.c: Likewise.
50789         * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
50790         * sysdeps/ieee754/dbl-64/w_exp.c: Likewise.
50791         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
50792         * sysdeps/ieee754/flt-32/w_expf.c: Likewise.
50793         * sysdeps/ieee754/ldbl-96/w_expl.c: Likewise.
50795 2012-02-19  Joseph Myers  <joseph@codesourcery.com>
50797         [BZ #9739]
50798         * manual/string.texi (strnlen): Use correct parameter name in
50799         equivalent expression.
50801 2012-02-19  Joseph Myers  <joseph@codesourcery.com>
50803         [BZ #11174]
50804         * manual/users.texi (seteuid): Consistently use neweuid for
50805         argument name.
50807 2012-02-19  Joseph Myers  <joseph@codesourcery.com>
50809         [BZ #13704]
50810         * manual/nss.texi (Services in the NSS configuration): Correct
50811         list of services in example configuration file.
50813 2012-02-19  Nick Bowler  <nbowler@draconx.ca>
50815         [BZ #11322]
50816         * manual/arith.texi: Remove statements about negative zero
50817         behaving identically to zero.
50819 2012-02-18  Joseph Myers  <joseph@codesourcery.com>
50821         [BZ #5993]
50822         * manual/install.texi: Do not document upgrading from libc5.
50824 2012-02-18  Joseph Myers  <joseph@codesourcery.com>
50826         [BZ #4596]
50827         * manual/conf.texi (_POSIX_VERSION): Do not mention __POSIX__.
50829 2012-02-18  David S. Miller  <davem@davemloft.net>
50831         * sysdeps/unix/sparc/sysdep.h (SPARC_PIC_THUNK): New macro.
50832         (SETUP_PIC_REG): Use SPARC_PIC_THUNK and don't save and restore
50833         %o7 across the call.
50834         (SETUP_PIC_REG_LEAF): Do %o7 save/restore in this new macro
50835         instead.
50836         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Use
50837         SETUP_PIC_REG_LEAF.
50838         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
50839         * sysdeps/sparc/crti.S: Use SETUP_PIC_REG.
50840         * sysdeps/sparc/crtn.S: Likewise.
50842 2012-02-17  Ulrich Drepper  <drepper@gmail.com>
50844         * aout/Makefile: Remove.
50846 2012-02-18  Rafe Kettler  <rafe.kettler@gmail.com>
50848         [BZ #13058]
50849         * manual/examples/argp-ex1.c (main): Format definition in GNU
50850         style.
50851         * manual/examples/argp-ex2.c (main): Likewise.
50852         * manual/examples/argp-ex3.c (main): Likewise.
50853         * manual/examples/argp-ex4.c (main): Likewise.
50854         * manual/examples/longopt.c (main): Use new-style prototype
50855         definition.
50856         * manual/examples/strncat.c (main): Specify return type and use
50857         (void) for arguments.
50858         * manual/examples/subopt.c (main): Use char **argv argument.
50860 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
50862         [BZ #5077]
50863         * manual/lang.texi (FLT_EPSILON): Avoid description depending on
50864         rounding modes.
50866 2012-02-17  Fabrice Bauzac  <fabrice.bauzac@wanadoo.fr>
50868         [BZ #6907]
50869         * manual/string.texi (strchr): Change when strchrnul is
50870         recommended.
50872 2012-02-17  Dwayne Grant McConnell  <decimal@us.ibm.com>
50874         [BZ #174]
50875         * manual/locale.texi (setlocale): Document LOCPATH.
50877 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
50879         [BZ #10210]
50880         * manual/process.texi (execle): Move @dots{} before last argument.
50882 2012-02-17  Paul Bolle  <pebolle@tiscali.nl>
50884         [BZ #12047]
50885         * manual/charset.texi (Generic Charset Conversion): Fix typo
50886         (LC_TYPE -> LC_CTYPE).
50888 2012-02-17  Nicolas Boulenguez  <nicolas.boulenguez@free.fr>
50890         [BZ #5805]
50891         * manual/arith.texi (scalbn): Use @var{} on parameter names.
50892         (scalbnf): Likewise.
50893         (scalbnl): Likewise.
50894         (scalbln): Likewise.
50895         (scalblnf): Likewise.
50896         (scalblnl): Likewise.
50897         * manual/errno.texi (vwarn): Name last parameter as @var{ap}.
50898         (vwarnx): Likewise.
50899         (verr): Likewise.
50900         (verrx): Likewise.
50901         * manual/filesys.texi (telldir): Use braces around return type.
50902         * manual/llio.texi (mmap): Add space after comma.
50903         (mmap64): Likewise.
50904         * manual/math.texi (jn): Use @var{} on parameter names.
50905         (jnf): Likewise.
50906         (jnl): Likewise.
50907         (yn): Likewise.
50908         (ynf): Likewise.
50909         (ynl): Likewise.
50910         * manual/memory.texi (alloca): Remove semicolon on @deftypefun
50911         line.
50912         * manual/resource.texi (ulimit): Use @dots{} instead of literal
50913         "...".
50914         (sched_get_priority_min): Remove semicolon on @deftypefun line.
50915         (sched_get_priority_max): Likewise.
50916         * manual/signal.texi (sigvec): Add space after comma.
50917         * manual/socket.texi (if_nametoindex): Use @var{} on parameter
50918         names.
50919         (if_indextoname): Likewise.
50920         (if_freenameindex): Likewise.
50921         (sendto): Use ',' instead of '.' in prototype.
50922         * manual/startup.texi (syscall): Use @dots{} instead of literal
50923         "...".
50924         * manual/stdio.texi (__fpending): Separate initial words of
50925         paragraph from @deftypefun line.
50926         * manual/syslog.texi (syslog): Use @dots{} instead of literal
50927         "...".
50928         (vsyslog): Use @var{} on parameter names.
50929         * manual/terminal.texi (stty): Use @var{} on parameter names.
50930         * manual/users.texi (getutmp): Use @var{} on parameter names.
50931         (getutmpx): Likewise.
50933 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
50935         [BZ #6884]
50936         * manual/stdio.texi (fopen): Fix typos in description of
50937         ",ccs=STRING".
50939 2012-02-17  Aurelien Jarno  <aurelien@aurel32.net>
50941         [BZ #4026]
50942         * sysdeps/unix/sysv/linux/clock_settime.c: include <time.h> to
50943         get clock_id definition.
50945 2012-02-17  Thomas Schwinge  <thomas@schwinge.name>
50947         [BZ #4822]
50948         * sysdeps/mach/hurd/malloc-machine.h: #include <sys/mman.h>.
50949         (madvise): Cast every argument to void on its own.
50951 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
50953         [BZ #9902]
50954         * manual/startup.texi (Exit Status): Fix typo.
50956 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
50958         [BZ #10140]
50959         * manual/examples/argp-ex1.c: Include <stdlib.h>.
50960         * manual/examples/argp-ex2.c: Likewise.
50961         * manual/examples/argp-ex3.c: Likewise.
50963 2012-02-16  Richard Henderson  <rth@redhat.com>
50965         * sysdeps/s390/s390-32/crti.S, sysdeps/s390/s390-32/crtn.S: New files.
50966         * sysdeps/s390/s390-32/initfini.c: Remove.
50967         * sysdeps/s390/s390-64/crti.S, sysdeps/s390/s390-64/crtn.S:
50968         * sysdeps/s390/s390-64/initfini.c: Remove.
50970 2012-02-15  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
50972         * sysdeps/sh/crti.S, sysdeps/sh/crtn.S: New files, based on
50973         compiler output for sysdeps/generic/initfini.c.
50974         * sysdeps/sh/elf/initfini.c: Remove file.
50976 2012-02-16  David S. Miller  <davem@davemloft.net>
50978         [BZ #11494]
50979         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_FSYNC): Define.
50981         * sysdeps/sparc/Makefile: Add -fPIC when building crt{i,n}.S
50982         * sysdeps/sparc/crti.S: New file.
50983         * sysdeps/sparc/crtn.S: New file.
50984         * sysdeps/sparc/sparc32/Makefile: Remove initfini handling.
50985         * sysdeps/sparc/sparc64/Makefile: Likewise.
50987 2012-02-15  Mike Frysinger  <vapier@gentoo.org>
50989         [BZ #3335]
50990         * sysdeps/unix/sysv/linux/getcwd.c: Include sys/param.h.
50992 2012-02-15  Roland McGrath  <roland@hack.frob.com>
50994         [BZ #4822]
50995         * sysdeps/mach/hurd/malloc-machine.h (madvise): New macro.
50997         * mach/devstream.c (cookie_io_functions_t): Macro removed.
50998         (write, read, close): Likewise.
50999         Patch by Aurelien Jarno <aurelien@aurel32.net>.
51001 2012-02-15  Joseph Myers  <joseph@codesourcery.com>
51003         * sysdeps/unix/sysv/linux/bits/signalfd.h: New file.
51004         * sysdeps/unix/sysv/linux/sparc/bits/signalfd.h: Likewise.
51005         * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h: Remove.
51006         * sysdeps/unix/sysv/linux/sys/signalfd.h: Get flags from
51007         <bits/signalfd.h>.
51008         (SFD_CLOEXEC, SFD_NONBLOCK): Don't define here.
51009         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
51010         bits/signalfd.h.
51012 2012-02-14  Marek Polacek  <polacek@redhat.com>
51014         * sysdeps/x86_64/crti.S: New file.
51015         * sysdeps/x86_64/crtn.S: New file.
51016         * sysdeps/x86_64/elf/initfini.c: Remove file.
51018 2012-02-13  Joseph Myers  <joseph@codesourcery.com>
51020         * sysdeps/unix/sysv/linux/bits/inotify.h: New file.
51021         * sysdeps/unix/sysv/linux/sparc/bits/inotify.h: Likewise.
51022         * sysdeps/unix/sysv/linux/sparc/sys/inotify.h: Remove.
51023         * sysdeps/unix/sysv/linux/sys/inotify.h: Get flags from
51024         <bits/inotify.h>.
51025         (IN_CLOEXEC, IN_NONBLOCK): Don't define here.
51026         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
51027         bits/inotify.h.
51029 2012-02-13  Joseph Myers  <joseph@codesourcery.com>
51031         * sysdeps/unix/sysv/linux/bits/eventfd.h: New file.
51032         * sysdeps/unix/sysv/linux/sparc/bits/eventfd.h: Likewise.
51033         * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: Remove.
51034         * sysdeps/unix/sysv/linux/sys/eventfd.h: Get flags from
51035         <bits/eventfd.h>.
51036         (EFD_SEMAPHORE, EFD_CLOEXEC, EFD_NONBLOCK): Don't define here.
51037         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
51038         bits/eventfd.h.
51040 2012-02-10  Thomas Schwinge  <thomas@codesourcery.com>
51042         * sysdeps/i386/fpu/feupdateenv.c (__feupdateenv): Invoke
51043         __feraiseexcept instead of feraiseexcept.
51045         * rt/tst-cpuclock1.c: Add a few comments, and error checking for
51046         nanosleep invocations.
51047         * rt/tst-cpuclock2.c: Print some values as intended, fix explanatory
51048         strings, and add error checking for a nanosleep invocations.
51050 2012-02-09  Paul Eggert  <eggert@cs.ucla.edu>
51052         Replace FSF snail mail address with URLs, as per GNU coding standards.
51053         Most of the snail mail addresses were wrong anyway, and omitting
51054         them makes the source code easier to maintain.  Almost all of the
51055         changes are to license notices and to locale LC_IDENTIFICATION
51056         addresses, except for this one:
51057         * manual/libc.texinfo: In "Published by", give the FSF's URL,
51058         not its snail mail address.
51060 2012-02-09  Richard Henderson  <rth@twiddle.net>
51062         * sysdeps/unix/sysv/linux/internal_statvfs.c: Use <> for include
51063         of kernel-features.h.
51065         * elf/dl-tls.c (update_get_addr): Avoid pointer type mismatch warning.
51067 2012-02-08  Marek Polacek  <polacek@redhat.com>
51069         * libio/libio.h: Remove _G_HAVE_SYS_CDEFS conditional.
51070         * sysdeps/mach/hurd/_G_config.h: Remove _G_HAVE_SYS_CDEFS macro.
51071         * sysdeps/gnu/_G_config.h: Likewise.
51072         * sysdeps/generic/_G_config.h: Likewise.
51074 2012-02-08  Andreas Schwab  <schwab@linux-m68k.org>
51076         * sysdeps/i386/fpu/libm-test-ulps: Reduce ldouble ULPs for jn
51077         tests.
51078         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
51080         * sysdeps/powerpc/powerpc32/crti.S: New file.
51081         * sysdeps/powerpc/powerpc32/crtn.S: New file.
51082         * sysdeps/powerpc/powerpc64/crti.S: New file.
51083         * sysdeps/powerpc/powerpc64/crtn.S: New file.
51085         * Makeconfig (have-initfini): Don't set.
51086         * config.make.in (have-initfini, need-nopic-initfini): Don't set.
51087         * configure.in (nopic_initfini): Don't substitute.
51088         * config.h.in (HAVE_INITFINI): Don't #undef.
51089         * csu/Makefile (CPPFLAGS): Don't add -DHAVE_INITFINI.
51090         * csu/gmon-start.c: Assume HAVE_INITFINI is defined.
51092 2012-02-08  Joseph Myers  <joseph@codesourcery.com>
51094         Support crti.S and crtn.S provided directly by architectures.
51095         * csu/Makefile [crti.S in sysdirs] (generated): Do not append.
51096         [crti.S in sysdirs] (omit-deps): Likewise.
51097         [crti.S in sysdirs] (CFLAGS-initfini.s): Do not define variable.
51098         [crti.S in sysdirs] ($(crtstuff:%=$(objpfx)%.o)): Disable rule.
51099         [crti.S in sysdirs] ($(objpfx)initfini.s): Likewise.
51100         [crti.S in sysdirs] ($(objpfx)crti.S): Likewise.
51101         [crti.S in sysdirs] ($(objpfx)crtn.S): Likewise.
51102         [crti.S in sysdirs] ($(patsubst %,$(objpfx)crt%.o,i n)): Likewise.
51103         [crti.S in sysdirs] ($(objpfx)defs.h): Likewise.
51104         [crti.S in sysdirs] (initfini.c): Remove vpath directive.
51105         * sysdeps/i386/crti.S, sysdeps/i386/crtn.S: New files, based on
51106         compiler output for sysdeps/generic/initfini.c.
51107         * sysdeps/i386/elf/Makefile: Remove file.
51108         * sysdeps/i386/Makefile (CFLAGS-initfini.s): Remove variable.
51110 2012-02-07  Marek Polacek  <polacek@redhat.com>
51112         * sysdeps/generic/_G_config.h: Remove _G_ARGS macro.
51113         * sysdeps/gnu/_G_config.h: Likewise.
51114         * sysdeps/mach/hurd/_G_config.h: Likewise.
51116 2012-02-07  Marek Polacek  <polacek@redhat.com>
51118         * math/Makefile (tests): Add tst-CMPLX2.
51119         * math/tst-CMPLX2.c: New file.
51121 2012-02-07  Andreas Schwab  <schwab@linux-m68k.org>
51123         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust ULPs for jn tests.
51125         * math/libm-test.inc (jn_test): Add missing L suffix.
51127 2012-02-06  Marek Polacek  <polacek@redhat.com>
51129         * sysdeps/s390/asm-syntax.h: Remove __ELF__ conditionals.
51130         * sysdeps/i386/fpu/e_powf.S: Likewise.
51131         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
51132         * sysdeps/i386/fpu/s_cexpl.S: Likewise.
51133         * sysdeps/i386/fpu/e_acosh.S: Likewise.
51134         * sysdeps/i386/fpu/e_pow.S: Likewise.
51135         * sysdeps/i386/fpu/s_asinhl.S: Likewise.
51136         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
51137         * sysdeps/i386/fpu/s_expm1.S: Likewise.
51138         * sysdeps/i386/fpu/s_frexpf.S: Likewise.
51139         * sysdeps/i386/fpu/e_log2.S: Likewise.
51140         * sysdeps/i386/fpu/e_log2l.S: Likewise.
51141         * sysdeps/i386/fpu/e_scalb.S: Likewise.
51142         * sysdeps/i386/fpu/e_powl.S: Likewise.
51143         * sysdeps/i386/fpu/s_log1p.S: Likewise.
51144         * sysdeps/i386/fpu/e_log10f.S: Likewise.
51145         * sysdeps/i386/fpu/s_cbrtf.S: Likewise.
51146         * sysdeps/i386/fpu/e_logl.S: Likewise.
51147         * sysdeps/i386/fpu/s_cbrt.S: Likewise.
51148         * sysdeps/i386/fpu/s_expm1l.S: Likewise.
51149         * sysdeps/i386/fpu/s_frexpl.S: Likewise.
51150         * sysdeps/i386/fpu/s_expm1f.S: Likewise.
51151         * sysdeps/i386/fpu/e_log2f.S: Likewise.
51152         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
51153         * sysdeps/i386/fpu/e_log.S: Likewise.
51154         * sysdeps/i386/fpu/s_cexp.S: Likewise.
51155         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
51156         * sysdeps/i386/fpu/s_log1pl.S: Likewise.
51157         * sysdeps/i386/fpu/e_logf.S: Likewise.
51158         * sysdeps/i386/fpu/e_log10l.S: Likewise.
51159         * sysdeps/i386/fpu/e_atanh.S: Likewise.
51160         * sysdeps/i386/fpu/s_log1pf.S: Likewise.
51161         * sysdeps/i386/fpu/s_asinhf.S: Likewise.
51162         * sysdeps/i386/fpu/s_cexpf.S: Likewise.
51163         * sysdeps/i386/fpu/e_log10.S: Likewise.
51164         * sysdeps/i386/fpu/s_frexp.S: Likewise.
51165         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
51166         * sysdeps/i386/fpu/s_asinh.S: Likewise.
51167         * sysdeps/i386/fpu/s_cbrtl.S: Likewise.
51168         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
51169         * sysdeps/i386/i686/fpu/e_logl.S: Likewise.
51170         * sysdeps/i386/asm-syntax.h: Likewise.
51171         * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
51172         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
51173         * sysdeps/x86_64/fpu/e_logl.S: Likewise.
51174         * sysdeps/x86_64/fpu/s_expm1l.S: Likewise.
51175         * sysdeps/x86_64/fpu/s_log1pl.S: Likewise.
51176         * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
51177         * sysdeps/x86_64/fpu/s_copysignf.S: Likewise.
51178         * sysdeps/x86_64/fpu/s_copysign.S: Likewise.
51179         * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
51180         * sysdeps/powerpc/sysdep.h: Likewise.
51181         * sysdeps/powerpc/powerpc64/sysdep.h: Likewise.
51182         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
51184 2012-02-06  Joseph Myers  <joseph@codesourcery.com>
51186         [BZ #411]
51187         * sysdeps/i386/sysdep.h (__i686): Undefine and redefine.
51189 2012-02-06  Joseph Myers  <joseph@codesourcery.com>
51191         * sysdeps/i386/sysdep.h: Include <features.h>.
51192         (GET_PC_THUNK, GET_PC_THUNK_STR): Define conditionally on compiler
51193         version.
51195 2012-02-05  Joseph Myers  <joseph@codesourcery.com>
51197         * sysdeps/i386/sysdep.h (SETUP_PIC_REG_STR, LOAD_PIC_REG_STR):
51198         Define.
51199         * sysdeps/unix/sysv/linux/i386/sysdep.h (check_consistency): Use
51200         LOAD_PIC_REG_STR.
51202 2012-02-03  Joseph Myers  <joseph@codesourcery.com>
51204         * sysdeps/i386/sysdep.h (GET_PC_THUNK, GET_PC_THUNK_STR): Define.
51205         (SETUP_PIC_REG): Use GET_PC_THUNK.
51206         * sysdeps/unix/sysv/linux/i386/sysdep.h: Use GET_PC_THUNK_STR
51207         macro.
51209 2012-02-03  Joseph Myers  <joseph@codesourcery.com>
51211         * sysdeps/i386/sysdep.h (SETUP_PIC_REG, LOAD_PIC_REG): Define also
51212         for non-PIC compilation.
51213         (SETUP_PIC_REG): Add .p2align directive.
51214         * sysdeps/i386/i686/memcmp.S: Use macros for PIC register setup.
51215         * sysdeps/i386/i686/multiarch/bcopy.S: Likewise.
51216         * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
51217         * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
51218         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
51219         * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
51220         * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Likewise.
51221         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
51222         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
51223         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
51224         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
51225         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
51226         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
51227         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
51228         * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
51229         * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
51230         * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
51231         * sysdeps/i386/i686/multiarch/memset.S: Likewise.
51232         * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
51233         * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
51234         * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
51235         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
51236         * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
51237         * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
51238         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
51239         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
51240         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
51241         * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
51242         * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
51243         * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
51244         * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
51245         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
51246         * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
51247         * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
51248         * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
51249         * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
51250         * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
51251         * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
51252         * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
51253         * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
51254         * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
51256 2012-02-03  Joseph Myers  <joseph@codesourcery.com>
51258         * math/tst-CMPLX.c: Include <stdio.h>.
51260 2012-01-31  Joseph Myers  <joseph@codesourcery.com>
51262         * sysdeps/powerpc/bits/mathdef.h (float_t): Always define as
51263         float.
51264         * sysdeps/sh/sh4/bits/mathdef.h: Likewise.
51265         * sysdeps/sparc/bits/mathdef.h: Likewise.
51267 2012-01-31  Marek Polacek  <polacek@redhat.com>
51269         * libio/libio.h: Don't define _PARAMS.
51270         * locale/programs/config.h: Don't define PARAMS.
51271         * stdlib/strtol_l.c: Likewise.
51272         (__strtol_l): Remove PARAMS from the prototype.
51274 2012-01-31  Ulrich Drepper  <drepper@gmail.com>
51276         * malloc/malloc.c: Remove name translation.  Don't use mixed-cap
51277         names.  Just use the correct names.  Remove unnecessary wrapper
51278         functions.
51279         * malloc/arena.c: Likewise.
51280         * malloc/hooks.c: Likewise.
51282         * malloc/arena.c (arena_get2): Really don't call __get_nprocs if
51283         ARENA_TEST says not to.  Simplify test for creation of a new arena.
51284         Partially based on a patch by Siddhesh Poyarekar <siddhesh@redhat.com>.
51286 2012-01-30  Ulrich Drepper  <drepper@gmail.com>
51288         * elf/dl-tls.c (__tls_get_addr): Optimize by transforming all calls
51289         into tail calls.
51290         (update_get_addr): New function.
51291         (tls_get_addr_tail): Take GET_ADDR_ARGS parameter, remove
51292         GET_ADDR_MODULE parameter.
51294 2012-01-30  Joseph Myers  <joseph@codesourcery.com>
51296         * crypt/cert.c: Remove __STDC__ conditionals.
51297         * crypt/crypt-entry.c: Likewise.
51298         * crypt/crypt_util.c: Likewise.
51299         * libio/filedoalloc.c: Likewise.
51300         * libio/fileops.c: Likewise.
51301         * libio/genops.c: Likewise.
51302         * libio/iofclose.c: Likewise.
51303         * libio/iofdopen.c: Likewise.
51304         * libio/iofopen.c: Likewise.
51305         * libio/iofopen64.c: Likewise.
51306         * libio/iogetdelim.c: Likewise.
51307         * libio/iopopen.c: Likewise.
51308         * libio/obprintf.c: Likewise.
51309         * libio/oldfileops.c: Likewise.
51310         * libio/oldiofclose.c: Likewise.
51311         * libio/oldiofdopen.c: Likewise.
51312         * libio/oldiofopen.c: Likewise.
51313         * libio/oldiopopen.c: Likewise.
51314         * libio/wfiledoalloc.c: Likewise.
51315         * libio/wgenops.c: Likewise.
51316         * locale/programs/xmalloc.c: Likewise.
51317         * misc/syslog.c: Likewise.
51318         * stdio-common/xbug.c: Likewise.
51319         * string/memchr.c: Likewise.
51320         * string/memcmp.c: Likewise.
51321         * string/memrchr.c: Likewise.
51322         * string/rawmemchr.c: Likewise.
51323         * sysdeps/posix/getcwd.c: Likewise.
51324         * time/strftime_l.c: Likewise.
51326 2012-01-30  Joseph Myers  <joseph@codesourcery.com>
51328         * configure.in (libc_cv_cc_sse2avx): AC_SUBST.
51329         * config.make.in (config-cflags-sse2avx): Define.
51330         * sysdeps/x86_64/fpu/multiarch/Makefile (CFLAGS-slowexp-avx.c):
51331         Fix typo.
51333 2012-01-29  Chris Metcalf  <cmetcalf@tilera.com>
51335         * scripts/config.guess: Update from upstream config git repository.
51336         * scripts/config.sub: Likewise.
51338 2012-01-28  Chris Metcalf  <cmetcalf@tilera.com>
51340         * elf/elf.h (EM_TILEPRO, EM_TILEGX): New macros.
51341         (EM_NUM): Update.
51342         (R_TILEPRO_*, R_TILEGX_*): New macros.
51344         * scripts/firstversions.awk: Fix bug in version range handling.
51346         * sysdeps/unix/sysv/linux/grantpt.c: Use <> brackets for not-cancel.h.
51348         * sysdeps/unix/sysv/linux/faccessat.c (faccessat): Call __fxstatat64.
51350         * include/sys/epoll.h: New file.
51351         * sysdeps/unix/sysv/linux/epoll_pwait.c (epoll_pwait): Mark as
51352         libc_hidden_def.
51354 2012-01-28  Ulrich Drepper  <drepper@gmail.com>
51356         * sysdeps/x86_64/fpu/bits/mathinline.h (__signbitl): Optimize a bit.
51357         Avoid unnecessary __WORDSIZE == 64 test.
51358         (fmaxf): Use VEX format if possible.
51359         (fmax): Likewise.
51360         (fminf): Likewise.
51361         (fmin): Likewise.
51363         * config.h.in: Define HAVE_SSE2AVX_SUPPORT.
51364         * math/math_private.h: Remove libc_fegetround* and
51365         libc_fesetround*.
51366         * sysdeps/i386/configure.in: Check for -msse2avx.
51367         * sysdeps/x86_64/fpu/math_private.h: Use VEX-encoded instructions
51368         also if SSE2AVX is defined.
51369         Remove libc_fegetround* and libc_fesetround*.
51370         * sysdeps/x86_64/fpu/multiarch/Makefile: Compile *-avx functions
51371         if config-cflags-sse2avx is yes.  Also add -DSSE2AVX to defines.
51372         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Use HAS_AVX again instead
51373         of HAS_YMM_USABLE.
51374         * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
51375         * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
51376         * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
51377         * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
51378         * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
51380         * sysdeps/x86_64/fpu/math_private.h: Simplify use of AVX instructions.
51382 2012-01-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
51384         * sysdeps/powerpc/powerpc32/a2/memcpy.S: Fix for when cache line
51385         size is not set.
51386         * sysdeps/powerpc/powerpc64/a2/memcpy.S: Likewise.
51388 2012-01-27  Ulrich Drepper  <drepper@gmail.com>
51390         [BZ #13618]
51391         * elf/dl-open.c (dl_open_worker): Sort objects by dependency before
51392         relocation.
51393         * Makeconfig (libm): Define.
51394         * elf/Makefile: Add rules to build and run tst-relsort1.
51395         * elf/tst-relsort1.c: New file.
51396         * elf/tst-relsort1mod1.c: New file.
51397         * elf/tst-relsort1mod2.c: New file.
51399 2012-01-27  Joseph Myers  <joseph@codesourcery.com>
51401         * math/s_ldexp.c: Remove __STDC__ conditionals.
51402         * math/s_ldexpf.c: Likewise.
51403         * math/s_ldexpl.c: Likewise.
51404         * math/s_nextafter.c: Likewise.
51405         * math/s_nexttowardf.c: Likewise.
51406         * math/s_significand.c: Likewise.
51407         * math/s_significandf.c: Likewise.
51408         * math/s_significandl.c: Likewise.
51409         * math/w_jnl.c: Likewise.
51410         * sysdeps/i386/fpu/s_isinfl.c: Likewise.
51411         * sysdeps/i386/fpu/s_isnanl.c: Likewise.
51412         * sysdeps/i386/fpu/s_nextafterl.c: Likewise.
51413         * sysdeps/i386/fpu/s_nexttoward.c: Likewise.
51414         * sysdeps/i386/fpu/s_nexttowardf.c: Likewise.
51415         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
51416         * sysdeps/ieee754/dbl-64/k_tan.c: Likewise.
51417         * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
51418         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
51419         * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
51420         * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
51421         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
51422         * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
51423         * sysdeps/ieee754/dbl-64/s_ilogb.c: Likewise.
51424         * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
51425         * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
51426         * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
51427         * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
51428         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
51429         * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
51430         * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
51431         * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
51432         * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
51433         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
51434         * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
51435         * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
51436         * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
51437         * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
51438         * sysdeps/ieee754/flt-32/s_cosf.c: Likewise.
51439         * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
51440         * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
51441         * sysdeps/ieee754/flt-32/s_finitef.c: Likewise.
51442         * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
51443         * sysdeps/ieee754/flt-32/s_ilogbf.c: Likewise.
51444         * sysdeps/ieee754/flt-32/s_isnanf.c: Likewise.
51445         * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
51446         * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise.
51447         * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
51448         * sysdeps/ieee754/flt-32/s_tanf.c: Likewise.
51449         * sysdeps/ieee754/flt-32/s_tanhf.c: Likewise.
51450         * sysdeps/ieee754/k_standard.c: Likewise.
51451         * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
51452         * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
51453         * sysdeps/ieee754/ldbl-128/s_asinhl.c: Likewise.
51454         * sysdeps/ieee754/ldbl-128/s_ceill.c: Likewise.
51455         * sysdeps/ieee754/ldbl-128/s_copysignl.c: Likewise.
51456         * sysdeps/ieee754/ldbl-128/s_cosl.c: Likewise.
51457         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
51458         * sysdeps/ieee754/ldbl-128/s_fabsl.c: Likewise.
51459         * sysdeps/ieee754/ldbl-128/s_finitel.c: Likewise.
51460         * sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
51461         * sysdeps/ieee754/ldbl-128/s_frexpl.c: Likewise.
51462         * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Likewise.
51463         * sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
51464         * sysdeps/ieee754/ldbl-128/s_logbl.c: Likewise.
51465         * sysdeps/ieee754/ldbl-128/s_modfl.c: Likewise.
51466         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
51467         * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Likewise.
51468         * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
51469         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
51470         * sysdeps/ieee754/ldbl-128/s_rintl.c: Likewise.
51471         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
51472         * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
51473         * sysdeps/ieee754/ldbl-128/s_sinl.c: Likewise.
51474         * sysdeps/ieee754/ldbl-128/s_tanhl.c: Likewise.
51475         * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
51476         * sysdeps/ieee754/ldbl-128/w_expl.c: Likewise.
51477         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
51478         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
51479         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
51480         * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: Likewise.
51481         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: Likewise.
51482         * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Likewise.
51483         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
51484         * sysdeps/ieee754/ldbl-128ibm/s_cosl.c: Likewise.
51485         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Likewise.
51486         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c: Likewise.
51487         * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
51488         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
51489         * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Likewise.
51490         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Likewise.
51491         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
51492         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c: Likewise.
51493         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Likewise.
51494         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Likewise.
51495         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
51496         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Likewise.
51497         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Likewise.
51498         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
51499         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Likewise.
51500         * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
51501         * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
51502         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
51503         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
51504         * sysdeps/ieee754/ldbl-128ibm/s_sinl.c: Likewise.
51505         * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: Likewise.
51506         * sysdeps/ieee754/ldbl-128ibm/s_tanl.c: Likewise.
51507         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
51508         * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
51509         * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
51510         * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
51511         * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
51512         * sysdeps/ieee754/ldbl-96/s_copysignl.c: Likewise.
51513         * sysdeps/ieee754/ldbl-96/s_cosl.c: Likewise.
51514         * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
51515         * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
51516         * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
51517         * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
51518         * sysdeps/ieee754/ldbl-96/s_frexpl.c: Likewise.
51519         * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Likewise.
51520         * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
51521         * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
51522         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
51523         * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
51524         * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise.
51525         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Likewise.
51526         * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
51527         * sysdeps/ieee754/ldbl-96/s_sinl.c: Likewise.
51528         * sysdeps/ieee754/ldbl-96/s_tanhl.c: Likewise.
51529         * sysdeps/ieee754/ldbl-96/s_tanl.c: Likewise.
51530         * sysdeps/ieee754/s_matherr.c: Likewise.
51531         * sysdeps/powerpc/fpu/w_sqrt.c: Likewise.
51532         * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
51533         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
51534         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
51536 2012-01-26  Joseph Myers  <joseph@codesourcery.com>
51538         * crypt/md5.h: Remove __STDC__ conditionals.
51539         * libio/libioP.h: Likewise.
51540         * locale/programs/config.h: Likewise.
51541         * sysdeps/generic/sysdep.h: Likewise.
51542         * sysdeps/i386/asm-syntax.h: Likewise.
51543         * sysdeps/s390/asm-syntax.h: Likewise.
51544         * sysdeps/unix/sysdep.h: Likewise.
51545         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
51546         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
51548 2012-01-26  Joseph Myers  <joseph@codesourcery.com>
51550         * libio/libio.h: Remove __STDC__ conditionals.
51551         * malloc/obstack.h: Likewise.
51552         * math/complex.h: Likewise.
51553         * math/math.h: Likewise.
51554         * sysdeps/generic/_G_config.h: Likewise.
51555         * sysdeps/gnu/_G_config.h: Likewise.
51556         * sysdeps/mach/hurd/_G_config.h: Likewise.
51557         * sysdeps/powerpc/bits/mathdef.h: Likewise.
51558         * sysdeps/sh/sh4/bits/mathdef.h: Likewise.
51559         * sysdeps/sparc/bits/mathdef.h: Likewise.
51561 2012-01-26  Ulrich Drepper  <drepper@gmail.com>
51563         [BZ #13583]
51564         * sysdeps/x86_64/multiarch/init-arch.h: Define bit_OSXSAVE.
51565         Clean up HAS_* macros.
51566         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): If
51567         bit_AVX is set also check OSXAVE/XCR0 and set bit_YMM_Usable if
51568         possible.
51569         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Use HAS_YMM_USABLE, not
51570         HAS_AVX.
51571         * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
51572         * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
51573         * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
51574         * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
51575         * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
51577 2012-01-25  Joseph Myers  <joseph@codesourcery.com>
51579         * elf/tst-unique3.cc (gets): Remove declaration.
51580         * elf/tst-unique3lib.cc (gets): Likewise.
51581         * elf/tst-unique3lib2.cc (gets): Likewise.
51582         * elf/tst-unique4.cc (gets): Likewise.
51584 2012-01-24  Ulrich Drepper  <drepper@gmail.com>
51586         * include/stdio.h: Add C++ protection.  Add gets declarations and
51587         definitions.
51588         * debug/tst-chk1.c: Don't declare gets here.
51589         * stdio-common/tst-gets.c: Likewise.
51591 2012-01-24  Joseph Myers  <joseph@codesourcery.com>
51593         * posix/glob: Remove directory.
51595 2012-01-24  Joseph Myers  <joseph@codesourcery.com>
51597         * wcsmbs/Makefile (tst-c16c32-1-ENV): Define.
51599 2012-01-22  Pino Toscano  <toscano.pino@tiscali.it>
51601         * sysdeps/mach/hurd/socket.c (__socket): Return EAFNOSUPPORT instead
51602         of the non-standard EPFNOSUPPORT.
51604 2011-12-26  Samuel Thibault  <samuel.thibault@ens-lyon.org>
51606         * sysdeps/mach/hurd/mmap.c (__mmap): When MAPADDR is nonzero, try
51607         __vm_allocate and __vm_map with ANYWHERE set to 0 first, and try with
51608         ANYWHERE set to 1 only on KERN_NO_SPACE error.
51610 2012-01-21  Ulrich Drepper  <drepper@gmail.com>
51612         * wcsmbs/uchar.h: Test __STDC_VERSION__.
51614 2012-01-20  Ulrich Drepper  <drepper@gmail.com>
51616         * nscd/aicache.c (addhstaiX): Do not cache negative results of
51617         transient errors.
51618         * nscd/grpcache.c (cache_addgr): Likewise.
51619         * nscd/hstcache.c (cache_addhst): Likewise.
51620         * nscd/initgrcache.c (addinitgroupsX): Likewise.
51621         * nscd/pwdcache.c (cache_addpw): Likewise.
51622         * nscd/servicescache.c (cache_addserv): Likewise.
51624 2012-01-16  Ulrich Drepper  <drepper@gmail.com>
51626         * malloc/malloc.c: Various cleanups.
51627         * malloc/hooks.c: Likewise.
51629         * stdlib/Makefile (tests): Add bug-fmtmsg1.
51630         * stdlib/bug-fmtmsg1.c: New file.
51632         * stdlib/fmtmsg.c (init): Add missing unlock.
51633         Patch by Peng Haitao <penght@cn.fujitsu.com>.
51635 2012-01-12  Marek Polacek  <polacek@redhat.com>
51637         * libio/bits/stdio2.h: Do not define gets for ISO C11, ISO C++11,
51638         and _GNU_SOURCE.
51640 2012-01-04  Will Schmidt  <will_schmidt@vnet.ibm.com>
51642         * powerpc/powerpc32/sysdep.h: Add GLUE and GENERATE_GOT_LABEL macros.
51643         * unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Call
51644         macro to ensure uniqueness of label name.
51645         * unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Likewise.
51646         * unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Likewise.
51648 2012-01-11  Ulrich Drepper  <drepper@gmail.com>
51650         * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c: New file.
51652         * sysdeps/ieee754/dbl-64/s_scalbln.c: Add branch prediction.
51653         * sysdeps/ieee754/flt-32/s_scalblnf.c: Likewise.
51654         * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
51655         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: New file.
51657 2012-01-10  Ulrich Drepper  <drepper@gmail.com>
51659         * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: New file.
51661         * sysdeps/ieee754/dbl-64/s_modf.c: Add branch prediction.
51662         * sysdeps/ieee754/flt-32/s_modff.c: Likewise.
51663         * sysdeps/ieee754/ldbl-96/s_modfl.c: Likewise.
51665         * math/bits/mathcalls.h: Add const attribute to fmin and fmax.
51667         * sysdeps/ieee754/dbl-64/s_scalbn.c: Add branch prediction.
51668         * sysdeps/ieee754/flt-32/s_scalbnf.c: Likewise.
51669         * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
51670         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c: New file.
51672         * math/bits/math-finite.h: Add ldexp support.
51674 2012-01-10  Marek Polacek  <polacek@redhat.com>
51676         * locale/programs/localedef.h (show_archive_content): Add noreturn
51677         attribute.
51679 2012-01-09  Ulrich Drepper  <drepper@gmail.com>
51681         * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Add branch prediction.
51683 2012-01-08  Ulrich Drepper  <drepper@gmail.com>
51685         * io/bits/poll2.h: Add __BEGIN/__END_DECLS.
51687         * io/Makefile (headers): Add bits/poll2.h.
51689 2011-01-05  Will Schmidt  <will_schmidt@vnet.ibm.com>
51691         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Fix a
51692         typo #include statement.
51694 2012-01-08  Ulrich Drepper  <drepper@gmail.com>
51696         * include/sys/cdefs.h: Define __attribute_alloc_size.
51697         * catgets/gencat.c: Add alloc_size attribute and apply consistently
51698         the malloc attribute to xmalloc, xcalloc, xrealloc, and xstrdup.
51699         * elf/pldd.c: Likewise.
51700         * iconv/iconv_charmap.c: Likewise.
51701         * iconv/iconvconfig.c: Likewise.
51702         * iconv/strtab.c: Likewise.
51703         * locale/programs/locale.c: Likewise.
51704         * locale/programs/localedef.h: Likewise.
51705         * locale/programs/simple-hash.c: Likewise.
51706         * nscd/nscd.h: Likewise.
51707         * nss/makedb.c: Likewise.
51708         * sysdeps/generic/ldconfig.h: Likewise.
51709         * locale/programs/localedef.c: Remove xmalloc prototype.
51710         * nscd/mem.c: Remove xmalloc and xcalloc prototypes.
51712 2012-01-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
51714         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Use alloca when
51715         appropriate.
51717 2012-01-08  Ulrich Drepper  <drepper@gmail.com>
51719         * math/Makefile (tests): Add tst-CMPLX.
51720         * math/tst-CMPLX.c: New file.
51722         * math/complex.h (CMPLXL): Fix typo.
51724         * debug/Makefile (routines): Add poll_chk and ppoll_chk.
51725         * debug/Versions: Export __pool_chk and __ppoll_chk from libc for
51726         GLIBC_2.16.
51727         * debug/tst-chk1.c: Add poll and ppoll tests.
51728         * io/sys/poll.h: Include bits/poll2.h for _FORTIFY_SOURCE.
51729         * include/sys/poll.h: Add hidden proto for ppoll.
51730         * sysdeps/unix/sysv/linux/ppoll.c: Add hidden def.
51731         * sysdeps/mach/hurd/ppoll.c: Likewise.
51732         * io/ppoll.c: Likewise.
51733         * debug/poll_chk.c: New file.
51734         * debug/ppoll_chk.c: New file.
51735         * include/bits/poll2.h: New file.
51736         * io/bits/poll2.h: New file.
51738         [BZ #1350]
51739         * math/complex.h (CMPLX, CMPLXF, CMPLXL): Define.
51741         * configure.in: static is always set to yes.  Remove.
51742         * config.make.in: Don't set build-static.
51743         * Makeconfig: Remove use of build-static.
51744         * dlfcn/Makefile: Likewise.
51745         * elf/Makefile: Likewise.
51746         * math/Makefile: Likewise.
51747         * misc/Makefile: Likewise.
51748         * nptl/Makefile: Likewise.
51749         * sysdeps/mach/hurd/Makefile: Likewise.
51751         * configure.in: PWD_P is not used anymore.
51752         * config.make.in: Remove PWD_P entry.
51754         * configure.in: Remove last remnants of RANLIB.
51755         No need to check for signed size_t anymore.
51756         Don't set libc_commonpagesize and libc_relro_required here for Alpha
51757         and IA-64.
51758         Remove __builtin_expect test because we require at least gcc 3.4.
51759         * aclocal.m4: Likewise.
51761         * wcsmbs/mbrtoc16.c: Implement using towc function.
51762         * wcsmbs/wcsmbsload.h: No need for toc16 and fromc16 functions.
51763         * wcsmbs/wcsmbsload.c: Likewise.
51764         * iconv/gconv_simple.c: Likewise.
51765         * iconv/gconv_int.h: Likewise.
51766         * iconv/gconv_builtin.h: Likewise.
51767         * iconv/iconv_prog.c: Remove CHAR16 handling.
51769         * wcsmbs/c16rtomb.c: Remove #if 0'ed code.
51771         * wcsmbs/mbrtowc.c: Better check for invalid inputs.
51773         * configure.in: Remove --with-elf and --enable-bounded options.
51774         Dont set base_machine for ia64.  More non-ELF conditions removed.
51775         Remove testing and setting of leading underscore information.
51776         * config.make.in (build-bounded): Set to no.
51777         * config.h.in: Remove NO_UNDERSCORES entry.
51778         * include/libc-symbols.h: Don't define HAVE_WEAK_SYMBOLS.  ELF has
51779         them.
51780         * csu/start.c: Remove !NO_UNDERSCORE code.
51781         * locale/localeinfo.h: Likewise.
51782         * sysdeps/generic/machine-gmon.h: Likewise.
51783         * sysdeps/generic/sysdep.h: Likewise.
51784         * sysdeps/i386/sysdep.h: Likewise.
51785         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Likewise.
51786         * sysdeps/mach/sysdep.h: Likewise.
51787         * sysdeps/s390/s390-32/sysdep.h: Likewise.
51788         * sysdeps/s390/s390-64/sysdep.h: Likewise.
51789         * sysdeps/sh/sysdep.h: Likewise.
51790         * sysdeps/sparc/sparc32/alloca.S: Likewise.
51791         * sysdeps/unix/i386/sysdep.S: Likewise.
51792         * sysdeps/unix/sparc/start.c: Likewise.
51793         * sysdeps/unix/sparc/sysdep.S: Likewise.
51794         * sysdeps/unix/sparc/sysdep.h: Likewise.
51795         * sysdeps/unix/start.c: Likewise.
51796         * sysdeps/unix/x86_64/sysdep.S: Likewise.
51797         * sysdeps/x86_64/sysdep.h: Likewise.
51799 2012-01-07  Ulrich Drepper  <drepper@gmail.com>
51801         [BZ #13553]
51802         * misc/sys/cdefs.h: Remove __const, __signed, and __volatile definition
51803         for non-gcc.
51804         * argp/argp-fmtstream.h: Use const instead __const.
51805         * argp/argp.h: Likewise.
51806         * assert/assert.h: Likewise.
51807         * bits/fenv.h: Likewise.
51808         * bits/sched.h: Likewise.
51809         * bits/sigset.h: Likewise.
51810         * bits/sigthread.h: Likewise.
51811         * catgets/nl_types.h: Likewise.
51812         * conform/data/pthread.h-data: Likewise.
51813         * crypt/crypt-private.h: Likewise.
51814         * crypt/crypt.h: Likewise.
51815         * crypt/crypt_util.c: Likewise.
51816         * ctype/ctype.h: Likewise.
51817         * debug/execinfo.h: Likewise.
51818         * debug/mbsnrtowcs_chk.c: Likewise.
51819         * debug/mbsrtowcs_chk.c: Likewise.
51820         * debug/wcsnrtombs_chk.c: Likewise.
51821         * debug/wcsrtombs_chk.c: Likewise.
51822         * debug/wcstombs_chk.c: Likewise.
51823         * dirent/dirent.h: Likewise.
51824         * dlfcn/dlfcn.h: Likewise.
51825         * elf/neededtest4.c: Likewise.
51826         * grp/grp.h: Likewise.
51827         * gshadow/gshadow.h: Likewise.
51828         * iconv/gconv.h: Likewise.
51829         * iconv/gconv_int.h: Likewise.
51830         * iconv/gconv_simple.c: Likewise.
51831         * iconv/iconv.h: Likewise.
51832         * iconv/loop.c: Likewise.
51833         * iconv/skeleton.c: Likewise.
51834         * include/aio.h: Likewise.
51835         * include/aliases.h: Likewise.
51836         * include/argz.h: Likewise.
51837         * include/arpa/inet.h: Likewise.
51838         * include/assert.h: Likewise.
51839         * include/dirent.h: Likewise.
51840         * include/dlfcn.h: Likewise.
51841         * include/execinfo.h: Likewise.
51842         * include/fcntl.h: Likewise.
51843         * include/fenv.h: Likewise.
51844         * include/glob.h: Likewise.
51845         * include/grp.h: Likewise.
51846         * include/libintl.h: Likewise.
51847         * include/mntent.h: Likewise.
51848         * include/netdb.h: Likewise.
51849         * include/pwd.h: Likewise.
51850         * include/rpc/netdb.h: Likewise.
51851         * include/sched.h: Likewise.
51852         * include/search.h: Likewise.
51853         * include/shadow.h: Likewise.
51854         * include/signal.h: Likewise.
51855         * include/stdio.h: Likewise.
51856         * include/stdlib.h: Likewise.
51857         * include/string.h: Likewise.
51858         * include/sys/socket.h: Likewise.
51859         * include/sys/stat.h: Likewise.
51860         * include/sys/statfs.h: Likewise.
51861         * include/sys/statvfs.h: Likewise.
51862         * include/sys/syslog.h: Likewise.
51863         * include/sys/time.h: Likewise.
51864         * include/sys/uio.h: Likewise.
51865         * include/time.h: Likewise.
51866         * include/unistd.h: Likewise.
51867         * include/utmp.h: Likewise.
51868         * include/wchar.h: Likewise.
51869         * include/wctype.h: Likewise.
51870         * inet/aliases.h: Likewise.
51871         * inet/arpa/inet.h: Likewise.
51872         * inet/netinet/ether.h: Likewise.
51873         * inet/netinet/in.h: Likewise.
51874         * intl/libintl.h: Likewise.
51875         * io/bits/fcntl2.h: Likewise.
51876         * io/fcntl.h: Likewise.
51877         * io/ftw.h: Likewise.
51878         * io/sys/poll.h: Likewise.
51879         * io/sys/stat.h: Likewise.
51880         * io/sys/statfs.h: Likewise.
51881         * io/sys/statvfs.h: Likewise.
51882         * io/utime.h: Likewise.
51883         * libio/bits/stdio.h: Likewise.
51884         * libio/bits/stdio2.h: Likewise.
51885         * libio/libio.h: Likewise.
51886         * libio/libioP.h: Likewise.
51887         * libio/stdio.h: Likewise.
51888         * locale/lc-ctype.c: Likewise.
51889         * locale/locale.h: Likewise.
51890         * login/utmp.h: Likewise.
51891         * malloc/arena.c: Likewise.
51892         * malloc/malloc.c: Likewise.
51893         * malloc/malloc.h: Likewise.
51894         * malloc/mcheck.c: Likewise.
51895         * malloc/mtrace.c: Likewise.
51896         * math/bits/mathcalls.h: Likewise.
51897         * math/fenv.h: Likewise.
51898         * math/math_private.h: Likewise.
51899         * misc/bits/error.h: Likewise.
51900         * misc/bits/syslog.h: Likewise.
51901         * misc/err.h: Likewise.
51902         * misc/error.h: Likewise.
51903         * misc/fstab.h: Likewise.
51904         * misc/mntent.h: Likewise.
51905         * misc/regexp.h: Likewise.
51906         * misc/search.h: Likewise.
51907         * misc/sgtty.h: Likewise.
51908         * misc/sys/mman.h: Likewise.
51909         * misc/sys/syslog.h: Likewise.
51910         * misc/sys/uio.h: Likewise.
51911         * misc/sys/xattr.h: Likewise.
51912         * misc/ttyent.h: Likewise.
51913         * nis/rpcsvc/ypclnt.h: Likewise.
51914         * nss/nss.h: Likewise.
51915         * posix/bits/unistd.h: Likewise.
51916         * posix/fnmatch.h: Likewise.
51917         * posix/glob.h: Likewise.
51918         * posix/sched.h: Likewise.
51919         * posix/spawn.h: Likewise.
51920         * posix/sys/wait.h: Likewise.
51921         * posix/unistd.h: Likewise.
51922         * posix/wordexp.h: Likewise.
51923         * pwd/pwd.h: Likewise.
51924         * resolv/netdb.h: Likewise.
51925         * resource/sys/resource.h: Likewise.
51926         * rt/aio.h: Likewise.
51927         * rt/bits/mqueue2.h: Likewise.
51928         * rt/mqueue.h: Likewise.
51929         * shadow/shadow.h: Likewise.
51930         * signal/signal.h: Likewise.
51931         * socket/send.c: Likewise.
51932         * socket/sendto.c: Likewise.
51933         * socket/sys/socket.h: Likewise.
51934         * stdio-common/printf.h: Likewise.
51935         * stdlib/bits/stdlib.h: Likewise.
51936         * stdlib/fmtmsg.h: Likewise.
51937         * stdlib/monetary.h: Likewise.
51938         * stdlib/stdlib.h: Likewise.
51939         * stdlib/ucontext.h: Likewise.
51940         * streams/stropts.h: Likewise.
51941         * string/argz.h: Likewise.
51942         * string/bits/string2.h: Likewise.
51943         * string/string.h: Likewise.
51944         * string/strings.h: Likewise.
51945         * sunrpc/rpc/auth.h: Likewise.
51946         * sunrpc/rpc/auth_des.h: Likewise.
51947         * sunrpc/rpc/clnt.h: Likewise.
51948         * sunrpc/rpc/netdb.h: Likewise.
51949         * sunrpc/rpc/pmap_clnt.h: Likewise.
51950         * sunrpc/rpc/xdr.h: Likewise.
51951         * sysdeps/generic/inttypes.h: Likewise.
51952         * sysdeps/generic/net/if.h: Likewise.
51953         * sysdeps/generic/sys/swap.h: Likewise.
51954         * sysdeps/gnu/net/if.h: Likewise.
51955         * sysdeps/gnu/utmpx.h: Likewise.
51956         * sysdeps/i386/fpu/bits/fenv.h: Likewise.
51957         * sysdeps/i386/i486/bits/string.h: Likewise.
51958         * sysdeps/ieee754/ldbl-opt/nldbl-strtold_l.c: Likewise.
51959         * sysdeps/s390/bits/string.h: Likewise.
51960         * sysdeps/s390/fpu/bits/fenv.h: Likewise.
51961         * sysdeps/sparc/fpu/bits/fenv.h: Likewise.
51962         * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
51963         * sysdeps/unix/sysv/linux/bits/resource.h: Likewise.
51964         * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
51965         * sysdeps/unix/sysv/linux/bits/sigset.h: Likewise.
51966         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
51967         * sysdeps/unix/sysv/linux/bits/sys_errlist.h: Likewise.
51968         * sysdeps/unix/sysv/linux/bits/uio.h: Likewise.
51969         * sysdeps/unix/sysv/linux/i386/glob64.c: Likewise.
51970         * sysdeps/unix/sysv/linux/i386/olddirent.h: Likewise.
51971         * sysdeps/unix/sysv/linux/preadv.c: Likewise.
51972         * sysdeps/unix/sysv/linux/prlimit.c: Likewise.
51973         * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
51974         * sysdeps/unix/sysv/linux/readv.c: Likewise.
51975         * sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: Likewise.
51976         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: Likewise.
51977         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
51978         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
51979         * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
51980         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Likewise.
51981         * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: Likewise.
51982         * sysdeps/unix/sysv/linux/sys/acct.h: Likewise.
51983         * sysdeps/unix/sysv/linux/sys/epoll.h: Likewise.
51984         * sysdeps/unix/sysv/linux/sys/mount.h: Likewise.
51985         * sysdeps/unix/sysv/linux/sys/swap.h: Likewise.
51986         * sysdeps/unix/sysv/linux/sys/timerfd.h: Likewise.
51987         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
51988         * sysdeps/x86_64/fpu/bits/fenv.h: Likewise.
51989         * sysdeps/x86_64/strcasecmp_l-nonascii.c: Likewise.
51990         * sysdeps/x86_64/strncase_l-nonascii.c: Likewise.
51991         * sysvipc/sys/ipc.h: Likewise.
51992         * sysvipc/sys/msg.h: Likewise.
51993         * sysvipc/sys/sem.h: Likewise.
51994         * sysvipc/sys/shm.h: Likewise.
51995         * termios/termios.h: Likewise.
51996         * time/sys/time.h: Likewise.
51997         * time/time.h: Likewise.
51998         * wcsmbs/bits/wchar2.h: Likewise.
51999         * wcsmbs/uchar.h: Likewise.
52000         * wcsmbs/wchar.h: Likewise.
52001         * wctype/wctype.h: Likewise.
52003         [BZ #13551]
52004         * Makeconfig: Remove all but ELF support including AIX support.
52005         * Makerules: Likewise.
52006         * config.h.in: Likewise.
52007         * config.make.in: Likewise.
52008         * configure: Likewise.
52009         * configure.in: Likewise.
52010         * csu/Makefile: Likewise.
52011         * csu/version.c: Likewise.
52012         * debug/Makefile: Likewise.
52013         * dlfcn/Makefile: Likewise.
52014         * elf/Makefile: Likewise.
52015         * extra-lib.mk: Likewise.
52016         * iconv/Makefile: Likewise.
52017         * include/libc-symbols.h: Likewise.
52018         * include/shlib-compat.h: Likewise.
52019         * resolv/Makefile: Likewise.
52020         * resolv/res_libc.c: Likewise.
52021         * rt/Makefile: Likewise.
52022         * sysdeps/i386/asm-syntax.h: Likewise.
52023         * sysdeps/i386/sysdep.h: Likewise.
52024         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Likewise.
52025         * sysdeps/mach/sysdep.h: Likewise.
52026         * sysdeps/powerpc/powerpc32/Makefile: Likewise.
52027         * sysdeps/powerpc/powerpc64/Makefile: Likewise.
52028         * sysdeps/s390/asm-syntax.h: Likewise.
52029         * sysdeps/s390/s390-32/sysdep.h: Likewise.
52030         * sysdeps/s390/s390-64/sysdep.h: Likewise.
52031         * sysdeps/sh/sysdep.h: Likewise.
52032         * sysdeps/unix/sparc/sysdep.h: Likewise.
52033         * sysdeps/wordsize-32/divdi3.c: Likewise.
52034         * sysdeps/x86_64/sysdep.h: Likewise.
52036         * argp/Versions: Remove _argp_unlock_xxx.
52038         [BZ #13559]
52039         * abilist/ld.abilist: Update.  Adjust for removal of tls option.
52040         * abilist/libBrokenLocale.abilist: Likewise.
52041         * abilist/libanl.abilist: Likewise.
52042         * abilist/libc.abilist: Likewise.
52043         * abilist/libcrypt.abilist: Likewise.
52044         * abilist/libdl.abilist: Likewise.
52045         * abilist/libm.abilist: Likewise.
52046         * abilist/libnsl.abilist: Likewise.
52047         * abilist/libpthread.abilist: Likewise.
52048         * abilist/libresolv.abilist: Likewise.
52049         * abilist/librt.abilist: Likewise.
52050         * abilist/libthread_db.abilist: Likewise.
52051         * abilist/libutil.abilist: Likewise.
52052         * abilist/libnss_db.abilist: New file.
52054         * scripts/abilist.awk: Add support for indirect functions.
52056         * sysdeps/unix/sysv/linux/configure.in: Remove m68k support.
52058         * sysdeps/generic/ldsodefs.h: Remove Alpha support.
52060         * shlib-versions: Remove entries for ports architectures.
52062         * elf/tls-macros.h: Remove support for Alpha and IA-64.  Should be in
52063         files in ports.
52064         * elf/stackguard-macros.h: Remove support for IA-64.
52065         * elf/tst-auditmod1.c: Likewise.
52066         * sysdeps/generic/ldsodefs.h: Likewise.
52068         * sysdeps/unix/sysv/linux/configure.in: Ports should define
52069         libc_cv_gcc_unwind_find_fde and arch_minimum_kernel in their
52070         configure files.
52072         [BZ #13552]
52073         * configure.in: Remove --enable-omitfp support.
52074         * FAQ.in: Adjust.
52075         * config.make.in: Likewise.
52076         * Makeconfig: Likewise.
52077         * manual/install.texi: Likewise.
52079         In case anyone cares, the IA-64 architecture could move to ports.
52080         * sysdeps/ia64/*: Removed.
52081         * sysdeps/unix/sysv/linux/ia64/*: Removed.
52082         * sysdeps/unix/sysv/linux/kernel-features.h: Remove IA-64 support.
52084         [BZ #13555]
52085         * configure.in: Remove entries for unsupported architectures.
52087         [BZ #13533]
52088         * iconv/gconv_builtin.h: Use CHAR16 for the char16_t conversions.
52089         * iconv/gconv_simple.c: Rename char16_t routines.  Add char16_t<->utf8
52090         routines.
52091         * iconv/gconv_int.h: Adjust prototypes for char16_t routines.
52092         * iconv/iconv_prog.c: Recognize CHAR16 as internal name.
52093         * wcsmbs/c16rtomb.c: Fix a few problems.  Disable all the code and
52094         fall back to using wcrtomb.
52095         * wcsmbs/mbrtoc16.: Fix implementation to handle real conversions.
52096         * wcsmbs/wcsmbsload.c: Make char16 routines optional.  Adjust for
52097         renaming.
52098         * wcsmbs/Makefile (tests): Add tst-c16c32-1:
52099         * wcsmbs/tst-c16c32-1.c: New file.
52101         * wcsmbs/wcrtomb.c: Use MB_LEN_MAX instead of MB_CUR_MAX for sizing
52102         local variable.
52104         * libio/stdio.h: Do not declare gets at all for _GNU_SOURCE.
52106         * elf/tst-unique3.cc: Add explicit declaration of gets.
52107         * elf/tst-unique3lib.cc: Likewise.
52108         * elf/tst-unique3lib2.cc: Likewise.
52109         * elf/tst-unique4.cc: Likewise.
52111         * string/test-strcpy.c (do_one_test): Fix format string for WIDE use.
52113 2012-01-06  Joseph Myers  <joseph@codesourcery.com>
52115         [BZ #13566]
52116         * assert/assert.h (static_assert): Don't define for C++.
52117         * libio/stdio.h (gets): Do declare for C++ <= C++11.
52118         * wcsmbs/uchar.h (char16_t, char32_t): Don't typedef for C++11.
52120 2012-01-03  Ulrich Drepper  <drepper@gmail.com>
52122         * iconv/loop.c (single loop): Fix assertion in storing of
52123         remaining bytes.
52125         * posix/regcomp.c (init_word_char): Optimize a bit for sane encodings.
52127 2012-01-01  Ulrich Drepper  <drepper@gmail.com>
52129         * posix/getconf.c: Update copyright year.
52130         * nss/getent.c: Likewise.
52131         * nss/makedb.c: Likewise.
52132         * iconv/iconvconfig.c: Likewise.
52133         * iconv/iconv_prog.c: Likewise.
52134         * elf/ldconfig.c: Likewise.
52135         * elf/pldd.c: Likewise.
52136         * elf/sotruss.ksh: Likewise.
52137         * catgets/gencat.c: Likewise.
52138         * csu/version.c: Likewise.
52139         * elf/ldd.bash.in: Likewise.
52140         * elf/sprof.c (print_version): Likewise.
52141         * locale/programs/locale.c: Likewise.
52142         * locale/programs/localedef.c: Likewise.
52143         * login/programs/pt_chown.c: Likewise.
52144         * nscd/nscd.c (print_version): Likewise.
52145         * debug/xtrace.sh: Likewise.
52146         * malloc/memusage.sh: Likewise.
52147         * malloc/mtrace.pl: Likewise.
52148         * debug/catchsegv.sh: Likewise.
52150 2011-12-30  Jakub Jelinek  <jakub@redhat.com>
52152         * posix/regex_internal.c (re_string_fetch_byte_case): Remove
52153         pure attribute.
52155 2011-12-24  Ulrich Drepper  <drepper@gmail.com>
52157         [BZ #13533]
52158         * iconv/gconv_simple.c: Add ASCII<->UTF-16 transformations.
52159         * iconv/gconv_builtin.h: Add entries for internal ASCII<->UTF-16
52160         transformations.
52161         * iconv/gconv_int.h: Likewise.
52162         * wcsmbs/Makefile (routines): Add mbrtoc16 and c16rtomb.
52163         * wcsmbs/Versions: Export mbrtoc16, c16rtomb, mbrtoc32, c32rtomb
52164         from libc for GLIBC_2.16.
52165         * wcsmbs/mbrtowc.c: Define mbrtoc32 alias.
52166         * wcsmbs/wcrtomb.c: Define c32rtomb alias.
52167         * wcsmbs/uchar.h: Really define mbstate_t.
52168         * wcsmbs/wchar.h: Allow defining mbstate_t in uchar.h.
52169         * wcsmbs/c16rtomb.c: New file.
52170         * wcsmbs/mbrtoc16.c: New file.
52171         * wcsmbs/wcsmbsload.c: Add static definitions for c16 conversions
52172         for C/POSIX locale.
52173         (__wcsmbs_load_conv): Do not fill in c16 routines yet.
52174         * wcsmbs/wcsmbsload.h (gconv_fcts): Add entries for c16 routines.
52176         * wcsmbs/wchar.h: Add missing __restrict.
52178 2011-12-23  Ulrich Drepper  <drepper@gmail.com>
52180         [BZ #13532]
52181         * time/Makefile (routines): Add timespec_get.
52182         * time/Versions: Export timespec_get from libc for GLIBC_2.16.
52183         * time/time.h: Define TIME_UTC and declare timespec_get.  Define
52184         timespec for ISO C11.
52185         * time/timespec_get.c: New file.
52186         * sysdeps/unix/sysv/linux/timespec_get.c: New file.
52187         * sysdeps/unix/sysv/linux/x86_64/timespec_get.c: New file.
52189         [BZ #13531]
52190         * malloc/malloc.c: Define alias aligned_alloc for public_mEMALIGn.
52191         * stdlib/stdlib.h: Declare aligned_alloc.
52192         * Versions.def: Add GLIBC_2.16 for libc.
52193         * malloc/Versions: Export aligned_alloc from libc for GLIBC_2.16.
52195         [BZ 13527]
52196         * stdlib/stdlib.h: Make at_quick_exit and quick_exit available for
52197         ISO C11.
52199         * include/features.h: Define __USE_ISOCXX11 when compiling ISO C++11
52200         code.
52202         [BZ #13528]
52203         * libio/stdio.h: Do not declare gets for ISO C11 and _GNU_SOURCE.
52205         [BZ #13529]
52206         * assert/assert.h (static_assert): Define.
52208         * version.h: Update for 2.16 development version.
52210         [BZ #13526]
52211         * include/features.h: Handle __STDC_VERSION__ >= 201112 and
52212         _ISOC11_SOURCE.
52214         * version.h (RELEASE): Bump for 2.15 release.
52215         * include/features.h (__GLIBC_MINOR__): Bump to 15.
52217         * sysdeps/x86_64/dl-machine.h: Fix typos in comments.
52218         Patch by Marek Polacek <mpolacek@redhat.com>.
52220         * bits/byteswap.h: Protect long long constants with __extension__.
52221         * sysdeps/i386/bits/byteswap.h: Likewise.
52222         * sysdeps/ia64/bits/byteswap.h: Likewise.
52223         * sysdeps/s390/bits/byteswap.h: Likewise.
52224         * sysdeps/x86_64/bits/byteswap.h: Likewise.
52226 2011-12-23  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
52228         [BZ #13540]
52229         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Fix overrun in
52230         destination buffer.
52231         * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: Likewise.
52233 2011-12-23  Marek Polacek  <polacek@redhat.com>
52235         * elf/dl-addr.c (determine_info): Add inline keyword.
52236         * elf/tst-auditmod4b.c (check_avx): Likewise.
52237         * elf/tst-auditmod6b.c (check_avx): Likewise.
52238         * elf/tst-auditmod6c.c (check_avx): Likewise.
52239         * elf/tst-auditmod7b.c (check_avx): Likewise.
52241 2011-12-23  Ulrich Drepper  <drepper@gmail.com>
52243         * sysdeps/i386/fpu/bits/fenv.h (feraiseexcept): Also enable for
52244         !__SSE_MATH__.
52246 2011-12-23  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
52248         [BZ #13540]
52249         * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: Fix wrong copying
52250         processing for last bytes.
52252 2011-08-06  Bruno Haible  <bruno@clisp.org>
52254         [BZ #13061]
52255         * iconvdata/cp1258.c (comp_table_data): Combine U+00A8 U+0301 to
52256         U+0385, not to U+1FEE.
52258         [BZ #13062]
52259         * iconvdata/tcvn5712-1.c (comp_table_data): Remove useless and wrong
52260         entry for U+00A5 U+0301.
52262 2011-12-22  Ulrich Drepper  <drepper@gmail.com>
52264         [BZ #13166]
52265         * inet/getnameinfo.c (getnameinfo): Return EAI_OVERFLOW if the
52266         buffer for the output is too small.
52268         * sysdeps/i386/fpu/bits/fenv.h [__SSE_MATH__]: Add feraiseexcept
52269         optimization.
52271         [BZ #13185]
52272         * sysdeps/i386/fpu/fgetexcptflg.c (__fegetexceptflag): Also return
52273         SSE flags if possible.
52275 2011-12-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
52277         [BZ #13540]
52278         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Fix wrong copying
52279         processing for last bytes.
52281 2011-12-22  Joseph Myers  <joseph@codesourcery.com>
52283         * sysdeps/unix/sysv/linux/Makefile (syscall-list-variants)
52284         (syscall-list-default-options, syscall-list-default-condition)
52285         (syscall-list-includes): Define.
52286         ($(objpfx)syscall-%.h $(objpfx)syscall-%.d): Support arbitrary
52287         list of ABIs and options and #if conditions for each ABI.  Do not
52288         handle common syscalls between ABIs specially.
52289         * sysdeps/unix/sysv/linux/powerpc/Makefile (64bit-predefine):
52290         Remove.
52291         (syscall-list-variants, syscall-list-32bit-options)
52292         (syscall-list-32bit-condition, syscall-list-64bit-options)
52293         (syscall-list-64bit-condition): Define.
52294         * sysdeps/unix/sysv/linux/s390/Makefile (64bit-predefine): Remove.
52295         (syscall-list-variants, syscall-list-32bit-options)
52296         (syscall-list-32bit-condition, syscall-list-64bit-options)
52297         (syscall-list-64bit-condition): Define.
52298         * sysdeps/unix/sysv/linux/sparc/Makefile (64bit-predefine):
52299         Remove.
52300         (syscall-list-variants, syscall-list-32bit-options)
52301         (syscall-list-32bit-condition, syscall-list-64bit-options)
52302         (syscall-list-64bit-condition): Define.
52303         * sysdeps/unix/sysv/linux/x86_64/Makefile (64bit-predefine):
52304         Remove.
52305         (syscall-list-variants, syscall-list-32bit-options)
52306         (syscall-list-32bit-condition, syscall-list-64bit-options)
52307         (syscall-list-64bit-condition): Define.
52309 2011-12-22  Ulrich Drepper  <drepper@gmail.com>
52311         * locale/iso-639.def: Add brx entry.
52313         [BZ #13328]
52314         * malloc/mtrace.c (tr_freehook): Avoid unnecessary unlock/lock.
52315         Proposed by Mariusz_Cukr <marcukr@op.pl>.
52317         * sysdeps/x86_64/fpu/bits/fenv.h: Use __REDIRECT_NTH for
52318         __feraiseexcept_renamed.
52320 2011-12-21  Ulrich Drepper  <drepper@gmail.com>
52322         [BZ #13538]
52323         * sysdeps/unix/sysv/linux/sys/epoll.h: Initialize EPOLLONESHOT and
52324         EPOLLET with unsigned values.
52325         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
52326         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Likewise.
52328         * math/s_cacosh.c: Use Kahan's formula if the subtraction could lead
52329         to large cancellation.
52330         * math/s_cacoshf.c: Likewise.
52331         * math/s_cacoshl.c: Likewise.
52333 2011-11-18  Richard B. Kreckel  <kreckel@ginac.de>
52335         [BZ #13305]
52336         [BZ #12786]
52337         * math/s_cacosh.c: Fix rare miscomputation in cacosh().
52338         * math/s_cacoshf.c: Likewise.
52339         * math/s_cacoshl.c: Likewise.
52341 2011-12-21  Ulrich Drepper  <drepper@gmail.com>
52343         [BZ #13439]
52344         * iconv/gconv.h: Define __GCONV_SWAP.
52345         * iconvdata/unicode.c: The swap bit must be stored in __flags.
52346         * iconvdata/utf-16.c: Likewise.
52347         * iconvdata/utf-32.c: Likewise.
52349 2011-12-21  Andreas Schwab  <schwab@linux-m68k.org>
52351         [BZ #13524]
52352         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Clear lowest limb of
52353         numerator after shifting it by one limb.
52355 2011-12-19  Rafael Ávila de Espíndola  <rafael.espindola@gmail.com>
52357         * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Define it only
52358         under [__USE_EXTERN_INLINES].
52360 2011-12-17  Ulrich Drepper  <drepper@gmail.com>
52362         [BZ #13446]
52363         * stdio-common/vfprintf.c (vfprintf): Fix extension of specs array.
52365 2011-11-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
52367         * sysdeps/powerpc/Makefile: Added locale-defines.sym generation.
52368         * sysdeps/powerpc/locale-defines.sym: Locale definitions for strcasecmp
52369         optimized code.
52370         * sysdeps/powerpc/powerpc32/power7/Makefile: New file.
52371         * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: New file.
52372         * sysdeps/powerpc/powerpc32/power7/strcasecmp_l.S: New file.
52373         * sysdeps/powerpc/powerpc64/power7/Makefile: Added unroll-loop option
52374         for strncasecmp/strncasecmp_l compilation.
52375         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: New file.
52376         * sysdeps/powerpc/powerpc64/power7/strcasecmp_l.S: New file.
52378 2011-12-08  Marek Polacek  <mpolacek@redhat.com>
52380         [BZ #13484]
52381         * math/bits/math-finite.h: Use __REDIRECT_NTH and __NTH instead
52382         of __asm__.
52384 2011-12-17  Ulrich Drepper  <drepper@gmail.com>
52386         [BZ #13506]
52387         * time/tzfile.c (__tzfile_read): Check values from file header.
52389 2011-11-21  Will Schmidt  <will_schmidt@vnet.ibm.com>
52391         * powerpc/powerpc32/sysdep.h: Define SETUP_GOT_ACCESS() macro.
52392         * powerpc/powerpc32/a2/memcpy.S: Use SETUP_GOT_ACCESS() macro.
52393         * powerpc/powerpc32/dl-start.S: Likewise.
52394         * powerpc/powerpc32/elf/start.S: Likewise.
52395         * powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
52396         * powerpc/powerpc32/fpu/s_ceil.S: Likewise.
52397         * powerpc/powerpc32/fpu/s_ceilf.S: Likewise.
52398         * powerpc/powerpc32/fpu/s_floor.S: Likewise.
52399         * powerpc/powerpc32/fpu/s_floorf.S: Likewise.
52400         * powerpc/powerpc32/fpu/s_lround.S: Likewise.
52401         * powerpc/powerpc32/fpu/s_rint.S: Likewise.
52402         * powerpc/powerpc32/fpu/s_rintf.S: Likewise.
52403         * powerpc/powerpc32/fpu/s_round.S: Likewise.
52404         * powerpc/powerpc32/fpu/s_roundf.S: Likewise.
52405         * powerpc/powerpc32/fpu/s_trunc.S: Likewise.
52406         * powerpc/powerpc32/fpu/s_truncf.S: Likewise.
52407         * powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
52408         * powerpc/powerpc32/memset.S: Likewise.
52409         * powerpc/powerpc32/power4/fpu/s_llround.S: Likewise.
52410         * powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
52411         * powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
52412         * powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
52413         * powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
52414         * powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
52415         * powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
52416         * powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
52417         * unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S: Likewise.
52418         * unix/sysv/linux/powerpc/powerpc32/brk.S: Likewise.
52419         * unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Likewise.
52420         * unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Likewise.
52421         * unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Likewise.
52423 2011-11-18  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
52425         * math/libm-test.inc: Added more nearbyint tests.
52426         * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S: New file.
52427         * sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S: New file.
52428         * sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S: New file.
52429         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: New file.
52431 2011-11-21  Ross Lagerwall  <rosslagerwall@gmail.com>
52433         * resolv/res_init.c (__res_vinit): Open /etc/resolv.conf with
52434         FD_CLOEXEC.
52436 2011-11-14  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
52438         * sysdeps/x86_64/multiarch/Makefile [subdir=wcsmbs] (sysdep_routines):
52439         Add wcscpy-ssse3 wcscpy-c.
52440         * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: New file.
52441         * sysdeps/x86_64/multiarch/wcscpy-c.c: New file.
52442         * sysdeps/x86_64/multiarch/wcscpy.S: New file.
52443         * sysdeps/x86_64/wcschr.S: New file.
52444         * sysdeps/x86_64/wcsrchr.S: New file.
52445         * string/test-strcmp.c: Remove checking of wcscmp function for
52446         wrong alignments.
52447         * sysdeps/i386/i686/multiarch/Makefile [subdir=wcsmbs]
52448         (sysdep_routines): Add wcscpy-ssse3 wcscpy-c wcschr-sse2 wcschr-c
52449         wcsrchr-sse2 wcsrchr-c.
52450         * sysdeps/i386/i686/multiarch/wcschr.S: New file.
52451         * sysdeps/i386/i686/multiarch/wcschr-c.c: New file.
52452         * sysdeps/i386/i686/multiarch/wcschr-sse2.S: New file.
52453         * sysdeps/i386/i686/multiarch/wcsrchr.S: New file.
52454         * sysdeps/i386/i686/multiarch/wcsrchr-c.c: New file.
52455         * sysdeps/i386/i686/multiarch/wcsrchr-sse2.S: New file.
52456         * sysdeps/i386/i686/multiarch/wcscpy.S: New file.
52457         * sysdeps/i386/i686/multiarch/wcscpy-c.c: New file.
52458         * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: New file.
52459         * wcsmbc/wcschr.c (WCSCHR): New macro.
52461 2011-11-17  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
52463         * wcsmbs/Makefile (strop-tests): Add wcsrchr wcscpy.
52464         * wcsmbs/test-wcsrchr.c: New file.
52465         * string/test-strrchr.c: Add wcsrchr support.
52466         (WIDE): New macro.
52467         * wcsmbs/test-wcscpy.c: New file.
52468         * string/test-strcpy.c: Add wcscpy support.
52469         (WIDE): New macro.
52471 2011-12-10  Ulrich Drepper  <drepper@gmail.com>
52473         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Lift one operation out of
52474         the inner loop.
52476 2011-12-06  Andreas Schwab  <schwab@linux-m68k.org>
52478         [BZ #13472]
52479         * sysdeps/powerpc/fpu/e_hypot.c (twoM600): Correct value.
52481 2011-12-04  Ulrich Drepper  <drepper@gmail.com>
52483         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Fix attribute.
52484         Minor optimizations.
52486         * sunrpc/clnt_unix.c (clntunix_control): Fix aliasing issues.
52487         * sunrpc/clnt_tcp.c (clnttcp_control): Likewise.
52488         * sunrpc/clnt_udp.c (clntudp_call): Likewise.
52490 2011-12-03  Ulrich Drepper  <drepper@gmail.com>
52492         * inet/netinet/in.h: Provide versions of IN6_IS_ADDR_UNSPECIFIED,
52493         IN6_IS_ADDR_LOOPBACK, IN6_IS_ADDR_LINKLOCAL, IN6_IS_ADDR_SITELOCAL,
52494         IN6_IS_ADDR_V4MAPPED, IN6_IS_ADDR_V4COMPAT, and IN6_ARE_ADDR_EQUAL
52495         for gcc to avoid warnings.
52496         * inet/Makefile (tests): Add tst-checks.
52497         * inet/tst-checks.c: New file.
52499         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Add attribute to avoid
52500         warning.
52502         * sysdeps/x86_64/multiarch/wmemcmp-c.c: Provide prototype for
52503         __wmemcmp_sse2.
52505         * sysdeps/x86_64/fpu/s_scalbln.c: Removed.
52506         * sysdeps/x86_64/fpu/s_scalbn.c: Removed.
52508         * malloc/mcheck.h: Fix use of incorrect encoding in comment.
52510 2011-12-02  Ulrich Drepper  <drepper@gmail.com>
52512         * nis/nis_findserv.c (__nis_findfastest_with_timeout): Avoid aliasing
52513         problem.
52515         * nscd/aicache.c (addhstaiX): Avoid unused variable warning.
52517 2011-11-29  Joseph Myers  <joseph@codesourcery.com>
52519         * sysdeps/unix/sysv/linux/sh/bits/atomic.h (rNOSP): Define
52520         conditional on GCC version.
52521         (__arch_compare_and_exchange_val_8_acq)
52522         (__arch_compare_and_exchange_val_16_acq)
52523         (__arch_compare_and_exchange_val_32_acq, atomic_exchange_and_add)
52524         (atomic_add, atomic_add_negative, atomic_add_zero, atomic_bit_set)
52525         (atomic_bit_test_set): Use rNOSP instead of "r" constraints.
52527 2011-12-02  Joseph Myers  <joseph@codesourcery.com>
52529         * sysdeps/sh/backtrace.c: New file.
52531 2011-12-02  Andreas Schwab  <schwab@redhat.com>
52533         * misc/bits/select2.h (__FD_ELT): Mark as extension.  Add
52534         parenthesis.
52536 2011-12-01  Andreas Schwab  <schwab@redhat.com>
52538         * sysdeps/unix/sysv/linux/futimes.c: Truncate time values when
52539         falling back to utime.
52541 2011-11-30  Andreas Schwab  <schwab@redhat.com>
52543         * sysdeps/s390/fpu/libm-test-ulps: Relax cpow (2 + 3 i, 4 + 0 i)
52544         expectations for float.
52546 2011-11-29  Andreas Schwab  <schwab@redhat.com>
52548         * locale/weight.h (findidx): Add parameter len.
52549         * locale/weightwc.h (findidx): Likewise.
52550         * posix/fnmatch_loop.c (FCT): Adjust caller.
52551         * posix/regcomp.c (build_equiv_class): Likewise.
52552         * posix/regex_internal.h (re_string_elem_size_at): Likewise.
52553         * posix/regexec.c (check_node_accept_bytes): Likewise.
52554         * string/strcoll_l.c (STRCOLL): Likewise.
52555         * string/strxfrm_l.c (STRXFRM): Likewise.
52557 2011-11-17  Ulrich Drepper  <drepper@gmail.com>
52559         * Makefile.in: Remove CVSOPT handling.
52560         * configure.in: Remove use of AC_REVISION.
52561         * iconvdata/Makefile (distribute): No need to filter out CVS.
52562         * scripts/list-sources.sh: Remove CVS, subversion and monotone
52563         handling.
52565 2011-11-16  Andreas Schwab  <schwab@redhat.com>
52567         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S
52568         [USE_AS_STRCASECMP_L]: Fix argument offsets for non-PIC.
52569         [USE_AS_STRNCASECMP_L]: Likewise.
52570         (__strcasecmp_ssse3, __strncasecmp_ssse3): Handle
52571         NO_TLS_DIRECT_SEG_REFS.
52572         * sysdeps/i386/i686/multiarch/strcmp-sse4.S [USE_AS_STRCASECMP_L]:
52573         Fix argument offsets for non-PIC.
52574         [USE_AS_STRNCASECMP_L]: Likewise.
52575         (__strcasecmp_sse4_2, __strncasecmp_sse4_2): Handle
52576         NO_TLS_DIRECT_SEG_REFS.
52578 2011-11-15  Ulrich Drepper  <drepper@gmail.com>
52580         * locale/loadarchive.c (_nl_load_locale_from_archive): Open files with
52581         O_CLOEXEC.
52582         * locale/loadlocale.c (_nl_load_locale): Likewise.
52584 2011-11-15  Andreas Schwab  <schwab@redhat.com>
52586         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSDEP_GETTIME_CPU)
52587         [__ASSUME_POSIX_CPU_TIMERS > 0]: Assign to retval and break.
52588         * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c
52589         (SYSCALL_GETTIME): Set errno on error.
52591         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Properly
52592         count references to noai6ai_cached.
52594 2011-11-15  Ulrich Drepper  <drepper@gmail.com>
52596         * time/getdate.c (__getdate_r): Set FD_CLOEXEC for given file.
52598         * sysdeps/unix/sysv/linux/readonly-area.c (__readonly_area): Set
52599         FD_CLOEXEC for /proc/self/maps.
52601         * sysdeps/unix/sysv/linux/getsysstats.c (phys_pages_info): Set
52602         FD_CLOEXEC for /proc/meminfo.
52604         * sysdeps/posix/getaddrinfo.c (gaiconf_init): Set FD_CLOEXEC for
52605         gai.conf.
52607         * resolv/res_query.c (res_hostalias):  Don't allow cancellation and set
52608         FD_CLOEXEC for given file.
52610         * resolv/res_hconf.c (do_init): Set FD_CLOEXEC for host.conf.
52612         * resolv/gethnamaddr.c (_sethtent): Don't allow cancellation and set
52613         FD_CLOEXEC for /etc/hosts.
52614         (_gethtent): Likewise.
52616         * nss/nsswitch.c (nss_parse_file): Set FD_CLOEXEC.
52618         * nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): Don't allow
52619         cancellation and set FD_CLOEXEC for /etc/netgroup.
52621         * nss/nss_files/files-key.c (search): Don't allow cancellation when
52622         reading /etc/publickey.
52624         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Don't
52625         allow cancellation when reading /etc/group.
52627         * nss/nss_files/files-alias.c (internal_setent): Don't allow
52628         cancellation.
52629         (get_next_alias): Likewise for included file.  Also set FD_CLOEXEC.
52631         * nss/nss_files/files-XXX.c (internal_setent): Don't allow cancellation
52632         when using data file.
52634         * nis/nss-default.c (init): Set FD_CLOEXEC for /etc/default/nss.
52636         * nis/nis_file.c (read_nis_obj): Set FD_CLOEXEC.
52637         (write_nis_obj): Use "c" and "e" in fopen.
52639         * misc/mntent_r.c (__setmntent): Also append e to fopen format.
52641         * misc/getusershell.c (initshells): Set FD_CLOEXEC for /etc/shells.
52643         * misc/getttyent.c (setttyent): Set FD_CLOEXEC.
52645         * misc/getpass.c (getpass): Set FD_CLOEXEC for /dev/tty.
52647         * intl/localealias.c (read_alias_file): Set FD_CLOEXEC for
52648         locale.alias.
52650         * inet/ruserpass.c (ruserpass): Set FD_CLOEXEC for .netrc.
52652         * inet/rcmd.c (iruserfopen): Set FD_CLOEXEC for hosts.equiv.
52654         * iconv/gconv_conf.c (read_conf_file): Set FD_CLOEXEC for config file.
52656         * hesiod/hesiod.c (parse_config_file): Prevent cancellation in config
52657         file parsing and set FD_CLOEXEC.
52659 2011-11-14  Ulrich Drepper  <drepper@gmail.com>
52661         * time/tzfile.c (__tzfile_read): Use "e" in fopen call.
52663 2011-11-14  Andreas Schwab  <schwab@redhat.com>
52665         * malloc/arena.c (arena_get2): Don't call reused_arena when
52666         _int_new_arena failed.
52668 2011-11-14  Ulrich Drepper  <drepper@gmail.com>
52670         * sysdeps/i386/i686/multiarch/Makefile [subdir=string]
52671         (sysdep_routines): Add strcasecmp_l-sse4 and strncase_l-sse4.
52672         * sysdeps/i386/i686/multiarch/strcasecmp.S: Re-enable SSE4.2 code.
52673         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
52674         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
52675         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Change to allow reuse
52676         to compile strcasecmp and strncasecmp.
52677         * sysdeps/i386/i686/multiarch/strcasecmp_l-sse4.S: New file.
52678         * sysdeps/i386/i686/multiarch/strncase_l-sse4.S: New file.
52680         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Use L macro consistently.
52682 2011-11-13  Ulrich Drepper  <drepper@gmail.com>
52684         * sysdeps/i386/i686/multiarch/Makefile [subdir=string]: Add
52685         locale-defines.sym to gen-as-const-headers.
52686         (sysdep_routines): Add strcasecmp_l-c, strcasecmp-c,
52687         strcasecmp_l-ssse3, strncase_l-c, strncase-c, and strncase_l-ssse3.
52688         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Change to allow reuse
52689         to compile strcasecmp and strncasecmp.
52690         * sysdeps/i386/i686/multiarch/strcmp.S: Allow to use for
52691         strcasecmp_l and strncasecmp_l.
52692         * sysdeps/i386/i686/multiarch/locale-defines.sym: New file.
52693         * sysdeps/i386/i686/multiarch/strcasecmp-c.c: New file.
52694         * sysdeps/i386/i686/multiarch/strcasecmp.S: New file.
52695         * sysdeps/i386/i686/multiarch/strcasecmp_l-c.c: New file.
52696         * sysdeps/i386/i686/multiarch/strcasecmp_l-ssse3.S: New file.
52697         * sysdeps/i386/i686/multiarch/strcasecmp_l.S: New file.
52698         * sysdeps/i386/i686/multiarch/strncase-c.c: New file.
52699         * sysdeps/i386/i686/multiarch/strncase.S: New file.
52700         * sysdeps/i386/i686/multiarch/strncase_l-c.c: New file.
52701         * sysdeps/i386/i686/multiarch/strncase_l-ssse3.S: New file.
52702         * sysdeps/i386/i686/multiarch/strncase_l.S: New file.
52704 2011-11-12  Ulrich Drepper  <drepper@gmail.com>
52706         * sysdeps/unix/clock_gettime.c (clock_gettime): No need to assign
52707         result of SYSDEP_GETTIME_CPU to retval.
52708         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSDEP_GETTIME_CPU): Add
52709         parameter list to macro.  Remove trailing semicolon.  Adjust users.
52711         * resolv/getaddrinfo_a.c (getaddrinfo_a): Avoid warning about unused
52712         variable.
52714         * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l): Avoid storing
52715         mantissa words.
52716         * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l): Likewise.
52718         * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Avoid warning
52719         from unused variable.
52721         * sysdeps/generic/sysdep.h: Clean up, pretty print, use dwarf2.h for
52722         DWARF definitions.
52723         * sysdeps/generic/dwarf2.h: Don't define enums when using the file
52724         for assembling.
52726         * elf/dl-iteratephdr.c [!SHARED] (__dl_iterate_phdr): Don't iterate
52727         over namespaces.
52729         * sunrpc/rpc_prot.c (rejected): Fix case value.
52731         * sysdeps/unix/sysv/linux/internal_statvfs.c (INTERNAL_STATVFS): Use
52732         unsigned long long int to avoid warnings in shift.
52734         * posix/regex_internal.c (re_string_reconstruct): Actually use result
52735         of use of trans.
52736         * posix/regex_internal.h (re_string_wchar_at): Remove temporary
52737         variable tmp.
52739         * sysdeps/i386/i686/multiarch/wcscmp-c.c: Avoid warning.
52740         * sysdeps/i386/i686/multiarch/wcslen-c.c: Likewise.
52741         * sysdeps/i386/i686/multiarch/wmemcmp-c.c: Likewise.
52743         * nis/nis_table.c (nis_list): Use variable of correct type for
52744         result of __follow_path call.
52746 2011-11-07  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
52748         * sysdeps/powerpc/fpu/math_private.h: Using inline assembly version
52749         of math functions ceil, trunc, floor, round, and sqrt, when
52750         avaliable on the platform.
52751         * sysdeps/powerpc/fpu/e_sqrt.c: Undefine __ieee754_sqrt to avoid
52752         name clash.
52753         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
52754         * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: Likewise.
52755         * sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c: Likewise.
52757 2011-10-30  Marek Polacek  <mpolacek@redhat.com>
52759         * libio/wfileops.c (_IO_wfile_underflow_mmap): Remove unused variable.
52760         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Likewise.
52762 2011-11-11  Roland McGrath  <roland@hack.frob.com>
52764         * include/unistd.h: Fix __readlink return type.
52765         Reported by Chris Metcalf <cmetcalf@tilera.com>.
52767 2011-11-11  Ulrich Drepper  <drepper@gmail.com>
52769         * stdlib/ucontext.h: Undo last change for makecontext.
52771 2011-11-11  Andreas Schwab  <schwab@redhat.com>
52773         * nss/db-Makefile ($(VAR_DB)/group.db): Fix typo in awk script.
52775         * misc/sys/cdefs.h (__REDIRECT_NTHNL): Define.
52776         * setjmp/setjmp.h: Mark functions as non-leaf.
52777         * setjmp/bits/setjmp2.h: Likewise.
52778         * stdlib/ucontext.h: Likewise.
52780 2011-11-10  Andreas Schwab  <schwab@redhat.com>
52782         * malloc/arena.c (_int_new_arena): Don't increment narenas.
52783         (reused_arena): Don't check arena limit.
52784         (arena_get2): Atomically check arena limit.
52786 2011-11-08  Ulrich Drepper  <drepper@gmail.com>
52788         * locale/findlocale.c (_nl_find_locale): Use __strcasecmp_l.
52789         * intl/localealias.c (strcasecmp): Define using __strcasecmp_l.
52791         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Remove unnecessary
52792         instructions.
52794 2011-11-07  Andreas Schwab  <schwab@redhat.com>
52796         * libio/genops.c (_IO_flush_all_lockp): Only register cleanup
52797         handler when locking.
52799         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
52800         Fix size of allocated buffer.
52802 2011-11-04  Andreas Schwab  <schwab@redhat.com>
52804         [BZ #10103]
52805         * math/math.h [__NO_LONG_DOUBLE_MATH && !_LIBC]: Provide
52806         declarations for long double functions.
52807         * math/complex.h [__NO_LONG_DOUBLE_MATH && !_LIBC]: Likewise.
52809         * elf/sprof.c (load_shobj): Fix off-by-one when reading link name.
52811 2011-11-03  Andreas Schwab  <schwab@redhat.com>
52813         * nscd/nscd.c (main): Don't start AVC thread until credentials are
52814         installed.
52816         * nss/makedb.c (set_file_creation_context): Do nothing if SELinux
52817         is disabled.
52819 2011-11-02  Samuel Thibault  <samuel.thibault@ens-lyon.org>
52821         * bits/ioctl-types.h (_IOT_sgttyb): Set number of chars to 4.
52823 2011-11-01  Andreas Schwab  <schwab@linux-m68k.org>
52825         * include/alloca.h (stackinfo_alloca_round): Define.
52826         (extend_alloca): Use it.
52827         [_STACK_GROWS_UP]: Correct check for adjacent allocation.
52828         * elf/dl-deps.c (_dl_map_object_deps): Don't round alloca size
52829         here.
52831         * scripts/check-local-headers.sh: Ignore libaudit.h.
52833         * nscd/Makefile (extra-objs): Make recursively expanded.
52835 2011-11-01  Ulrich Drepper  <drepper@gmail.com>
52837         * sysdeps/x86_64/strcmp.S: Fix test for non-ASCII locales.
52838         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
52840         * posix/tst-rfc3484.c: Add missing __free_in6ai dummy function.
52841         * posix/tst-rfc3484-2.c: Likewise.
52842         * posix/tst-rfc3484-3.c: Likewise.
52844         * sysdeps/unix/sysv/linux/bits/uio.h: Declare process_vm_readv and
52845         process_vm_writev.
52846         * sysdeps/unix/sysv/linux/syscalls.list: Add process_vm_readv and
52847         process_vm_writev.
52848         * sysdeps/unix/sysv/linux/Versions: Export process_vm_readv and
52849         process_vm_writev from libc using GLIBC_2.15 version.
52851         * nscd/connections.c: Use kernel headers instead of <netlink/netlink.h>.
52853 2011-10-31  Paul Pluzhnikov  <ppluzhnikov@google.com>
52855         * elf/dl-deps.c (_dl_map_object_deps): Reuse alloca space to reduce
52856         stack usage.
52858 2011-10-31  Ulrich Drepper  <drepper@gmail.com>
52860         [BZ #13367]
52861         * nss/getent.c (initgroups_keys): Show error message in case no group
52862         names are given.
52864         * include/ifaddrs.h: Declare __free_in6ai and __bump_nl_timestamp.
52865         * inet/check_pf.c: Provide dummy versions of __free_in6ai and
52866         __bump_nl_timestamp.
52867         * nscd/connections (nscd_init): When host database is served open
52868         netlink socket and request notification about configuration changes.
52869         (main_loop_poll): Track netlink file descriptor and bump timestamp
52870         in case data becomes available.
52871         (main_loop_epoll): Likewise.
52872         * nscd/nscd-client.h (DB_VERSION): Bump to 2.
52873         (database_pers_head): Add extra_data fileds.
52874         Declare __nscd_get_mapping and __nscd_get_nl_timestamp.
52875         * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp): New function.
52876         * nscd/nscd_helper.c (__nscd_get_mapping): Renamed from get_mapping.
52877         Adjust caller.
52878         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Don't call free on
52879         in6ai data, call __free_in6ai.
52880         * sysdeps/unix/sysv/linux/Makefile [subdir=nscd] (sysdep-CFLAGS):
52881         Add -DHAVE_NETLINK.
52882         * sysdeps/unix/sysv/linux/check_pf.c: Major rewrite.  Cache the
52883         interface information.  Reuse previous data if netlink timestamp
52884         is not changed.
52885         (__bump_nl_timestamp): New function.
52886         (__free_in6ai): New function.
52888 2011-10-30  Ulrich Drepper  <drepper@gmail.com>
52890         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Don't call
52891         close_not_cancel_no_status here.
52892         (__check_pf): Reorganize code a bit to not call close twice if OOM.
52894 2011-10-29  Ulrich Drepper  <drepper@gmail.com>
52896         [BZ #13276]
52897         * malloc/malloc.c (munmap_chunk): Don't use assertion to check munmap
52898         return value.
52900         * posix/sys/wait.h: Mark wait3 and wait4 with __THROWNL.
52901         * libio/stdio.h: Mark sprintf, vsprintf snprintf, vsnprintf, vasprintf,
52902         asprintf, __asprintf, obstack_printf, obstack_vprintf with __THROWNL.
52904 2011-07-03  Andreas Jaeger  <aj@suse.de>
52906         [BZ #10709]
52907         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Fix incorrect rounding
52908         of sin. Patch suggested by Paul Zimmermann <zimmerma+gcc@loria.fr>.
52909         * math/libm-test.inc (sin_test): Add test case.
52911 2011-10-29  Ulrich Drepper  <drepper@gmail.com>
52913         [BZ #13337]
52914         * elf/sprof.c (load_shobj): Correctly NUL-terminate link name.
52915         Patch by Thomas Jarosch <thomas.jarosch@intra2net.com>.
52917         * elf/chroot_canon.c (chroot_canon): Cleanups.
52919         * elf/dl-lookup.c (_dl_setup_hash): Avoid warning.
52921         [BZ #13335]
52922         * elf/chroot_canon.c (chroot_canon): Fix readlink call.
52923         Patch by Thomas Jarosch <thomas.jarosch@intra2net.com>.
52925         * string/test-strchr.c: Make usable for strchrnul testing.
52926         * string/test-strchrnul.c: New file.
52927         * string/Makefile (strop-tests): Add strchrnul.
52929         * po/it.po: Update from translation team.
52930         * po/es.po: Likewise.
52932 2011-10-28  Ulrich Drepper  <drepper@gmail.com>
52934         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu_tolower): Take
52935         the three constants needed as parameters.  Drop the others.
52936         (strcasestr_sse42): Load uclow, uchigh, and lcqword and pass to
52937         __m128i_strloadu_tolower.
52938         Create and initialize variable zero and use it in all the places
52939         where _mm_setzero_si128 was used.
52941         * sysdeps/x86_64/fpu/multiarch/Makefile: Don't build brandred-avx.c,
52942         doasin-avx.c, dosincos-avx.c, e_asin-avx.c, mpatan-avx.c,
52943         mpatan2-avx.c, mpsqrt-avx.c, mptan-avx.c, sincos32-avx.c.
52944         * sysdeps/x86_64/fpu/multiarch/e_asin.c: There are no _avx variants
52945         anymore.
52946         * sysdeps/x86_64/fpu/multiarch/e_atan2-avx.c: Don't redirect __mpatan2.
52947         * sysdeps/x86_64/fpu/multiarch/s_atan-avx.c: Don't redirect __mpatan.
52948         * sysdeps/x86_64/fpu/multiarch/s_sin-avx.c: Don't redirect __branred,
52949         __docos, __dubsin, __mpcos, __mpcos1, __mpsin, __mpsin1.
52950         * sysdeps/x86_64/fpu/multiarch/s_tan-avx.c: Don't redirect __branred,
52951         __mpranred, __mptan.
52952         * sysdeps/x86_64/fpu/multiarch/brandred-avx.c: Removed.
52953         * sysdeps/x86_64/fpu/multiarch/doasin-avx.c: Removed.
52954         * sysdeps/x86_64/fpu/multiarch/dosincos-avx.c: Removed.
52955         * sysdeps/x86_64/fpu/multiarch/e_asin-avx.c: Removed.
52956         * sysdeps/x86_64/fpu/multiarch/mpatan-avx.c: Removed.
52957         * sysdeps/x86_64/fpu/multiarch/mpatan2-avx.c: Removed.
52958         * sysdeps/x86_64/fpu/multiarch/mpsqrt-avx.c: Removed.
52959         * sysdeps/x86_64/fpu/multiarch/mptan-avx.c: Removed.
52960         * sysdeps/x86_64/fpu/multiarch/sincos32-avx.c: Removed.
52962 2011-10-28  Andreas Schwab  <schwab@redhat.com>
52964         * sysdeps/i386/i686/multiarch/strnlen-c.c (libc_hidden_def): Only
52965         redefine if SHARED.
52966         * sysdeps/i386/i686/multiarch/wcscmp-c.c (libc_hidden_def): Likewise.
52968         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Move
52969         wide char related routines to wcsmbs subdir.
52971 2011-10-27  Andreas Schwab  <schwab@redhat.com>
52973         [BZ #13344]
52974         * misc/sys/cdefs.h (__THROWNL): Define.
52975         * posix/unistd.h: Use __THREADNL instead of __THREAD
52976         for memory synchronization functions.
52978 2011-10-26  Roland McGrath  <roland@hack.frob.com>
52980         [BZ #13349]
52981         * libio/Versions (GLIBC_2.0): Remove open_obstack_stream, which
52982         doesn't exist.
52983         * manual/stdio.texi (Obstack Streams): Node removed.
52985 2011-10-26  Andreas Schwab  <schwab@redhat.com>
52987         * sysdeps/ieee754/flt-32/e_j0f.c: Fix use of math_force_eval.
52988         * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
52989         * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
52991         * math/math_private.h (math_force_eval): Allow non-addressable
52992         arguments.
52993         * sysdeps/i386/fpu/math_private.h (math_force_eval): Likewise.
52995 2011-10-25  Ulrich Drepper  <drepper@gmail.com>
52997         * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Comment everything out, the
52998         file is not needed.
53000         * sysdeps/x86_64/fpu/multiarch/e_asin.c: Support AVX variants.
53001         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Likewise.
53002         * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
53003         * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
53004         * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
53005         * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
53006         * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
53007         * sysdeps/x86_64/fpu/multiarch/Makefile: Fix some CFLAGS-* variables.
53008         Add AVX variants.
53009         * sysdeps/x86_64/fpu/multiarch/brandred-avx.c: New file.
53010         * sysdeps/x86_64/fpu/multiarch/doasin-avx.c: New file.
53011         * sysdeps/x86_64/fpu/multiarch/dosincos-avx.c: New file.
53012         * sysdeps/x86_64/fpu/multiarch/e_asin-avx.c: New file.
53013         * sysdeps/x86_64/fpu/multiarch/e_atan2-avx.c: New file.
53014         * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c: New file.
53015         * sysdeps/x86_64/fpu/multiarch/e_log-avx.c: New file.
53016         * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: New file.
53017         * sysdeps/x86_64/fpu/multiarch/mpatan-avx.c: New file.
53018         * sysdeps/x86_64/fpu/multiarch/mpatan2-avx.c: New file.
53019         * sysdeps/x86_64/fpu/multiarch/mpexp-avx.c: New file.
53020         * sysdeps/x86_64/fpu/multiarch/mplog-avx.c: New file.
53021         * sysdeps/x86_64/fpu/multiarch/mpsqrt-avx.c: New file.
53022         * sysdeps/x86_64/fpu/multiarch/mptan-avx.c: New file.
53023         * sysdeps/x86_64/fpu/multiarch/s_atan-avx.c: New file.
53024         * sysdeps/x86_64/fpu/multiarch/s_sin-avx.c: New file.
53025         * sysdeps/x86_64/fpu/multiarch/s_tan-avx.c: New file.
53026         * sysdeps/x86_64/fpu/multiarch/sincos32-avx.c: New file.
53027         * sysdeps/x86_64/fpu/multiarch/slowexp-avx.c: New file.
53029         * sysdeps/x86_64/multiarch/init-arch.h: Make bit_* macros available
53030         all the time.  Define bit_AVX.  Define HAS_* macros using bit_* macros.
53032         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Move common code to earlier
53033         place.  Use VEX encoding when compiling for AVX.
53035 2011-10-25  Andreas Schwab  <schwab@redhat.com>
53037         * wcsmbs/wcscmp.c (WCSCMP): Compare as wchar_t, not wint_t.
53038         * wcsmbs/wmemcmp.c (WMEMCMP): Likewise.
53040         * string/test-strchr.c (do_test): Don't generate NUL bytes.
53042 2011-10-25  Ulrich Drepper  <drepper@gmail.com>
53044         * sysdeps/ieee754/dbl-64/e_atanh.c: Use math_force_eval instead of a
53045         useless if() expression.
53046         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
53047         * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
53048         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
53049         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
53050         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
53051         * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
53052         * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
53053         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
53054         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
53055         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
53056         * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
53057         * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
53058         * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
53059         * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
53060         * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
53061         * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
53062         * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
53063         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
53064         * sysdeps/ieee754/ldbl-96/s_roundl.c: Likewise.
53066         * sysdeps/x86_64/fpu/math_private.h: Use VEX encoding when possible.
53068 2011-10-25  Andreas Schwab  <schwab@redhat.com>
53070         * elf/dl-deps.c (_dl_map_object_deps): Remove always true
53071         condition.
53072         * elf/dl-fini.c (_dl_sort_fini): Likewise.
53074 2011-10-25  Ulrich Drepper  <drepper@gmail.com>
53076         * sysdeps/ieee754/dbl-64/branred.c: Move FMA4 code into separate
53077         .text section.  Avoid duplicate constants.
53078         * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
53079         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
53080         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
53081         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
53082         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
53083         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
53084         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
53085         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
53086         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
53087         * sysdeps/ieee754/dbl-64/mpa.h: Likewise.
53088         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
53089         * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
53090         * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
53091         * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
53092         * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
53093         * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
53094         * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
53095         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
53096         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
53097         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
53098         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
53099         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
53100         * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
53101         * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: Likewise.
53102         * sysdeps/x86_64/fpu/multiarch/doasin-fma4.c: Likewise.
53103         * sysdeps/x86_64/fpu/multiarch/dosincos-fma4.c: Likewise.
53104         * sysdeps/x86_64/fpu/multiarch/e_asin-fma4.c: Likewise.
53105         * sysdeps/x86_64/fpu/multiarch/e_atan2-fma4.c: Likewise.
53106         * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c: Likewise.
53107         * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c: Likewise.
53108         * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c: Likewise.
53109         * sysdeps/x86_64/fpu/multiarch/halfulp-fma4.c: Likewise.
53110         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
53111         * sysdeps/x86_64/fpu/multiarch/mpatan-fma4.c: Likewise.
53112         * sysdeps/x86_64/fpu/multiarch/mpatan2-fma4.c: Likewise.
53113         * sysdeps/x86_64/fpu/multiarch/mpexp-fma4.c: Likewise.
53114         * sysdeps/x86_64/fpu/multiarch/mplog-fma4.c: Likewise.
53115         * sysdeps/x86_64/fpu/multiarch/mpsqrt-fma4.c: Likewise.
53116         * sysdeps/x86_64/fpu/multiarch/mptan-fma4.c: Likewise.
53117         * sysdeps/x86_64/fpu/multiarch/s_atan-fma4.c: Likewise.
53118         * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c: Likewise.
53119         * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c: Likewise.
53120         * sysdeps/x86_64/fpu/multiarch/sincos32-fma4.c: Likewise.
53121         * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: Likewise.
53122         * sysdeps/x86_64/fpu/multiarch/slowpow-fma4.c: Likewise.
53124 2011-10-24  Ulrich Drepper  <drepper@gmail.com>
53126         * sysdeps/x86_64/dla.h: Move to ...
53127         * sysdeps/x86_64/fpu/dla.h: ...here.
53128         (DLA_FMS): Some compilers fail to inline __builtin_fma in some
53129         situations.  Use __builtin_fma only for gcc 4.6 and up.
53131         * config.make.in: Add have-mfma4 entry.
53132         * configure.in: Substitute libc_cv_cc_fma4.
53133         * math/Makefile (dbl-only-routines): Add sincostab.
53134         * sysdeps/ieee754/dbl-64/dosincos.c: Don't include sincos.tbl.
53135         Use __sincostab not sincos.
53136         * sysdeps/ieee754/dbl-64/e_asin.c: Don't define aliases when function
53137         name is a macro.
53138         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
53139         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
53140         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
53141         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.  Define singArctan2
53142         using __copysign.
53143         * sysdeps/ieee754/dbl-64/mpa.c: Don't export __acr.  Don't define
53144         __cr and __cpymn.  Define __cpy unless NO___CPY is defined.  Define
53145         norm, denorm, and __mp_dbl unless NO___MP_DBL is defined.
53146         * sysdeps/ieee754/dbl-64/mpa.h: Don't declare __acr, __cr, __cpymn,
53147         and __inv.
53148         * sysdeps/ieee754/dbl-64/mpsqrt.c: Make fastiroot static.
53149         * sysdeps/ieee754/dbl-64/s_atan.c: Define __signArctan using
53150         __copysign.
53151         * sysdeps/ieee754/dbl-64/s_sin.c: Use __sincostab not sincos.  Don't
53152         define aliases when function name is a macro.
53153         * sysdeps/ieee754/dbl-64/sincostab.c: Renamed from
53154         sysdeps/ieee754/dbl-64/sincos.tbl.
53155         * sysdeps/x86_64/fpu/multiarch/Makefile: Add entries to build
53156         fma4-enabled routines.
53157         * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: New file.
53158         * sysdeps/x86_64/fpu/multiarch/doasin-fma4.c: New file.
53159         * sysdeps/x86_64/fpu/multiarch/dosincos-fma4.c: New file.
53160         * sysdeps/x86_64/fpu/multiarch/e_asin-fma4.c: New file.
53161         * sysdeps/x86_64/fpu/multiarch/e_asin.c: New file.
53162         * sysdeps/x86_64/fpu/multiarch/e_atan2-fma4.c: New file.
53163         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: New file.
53164         * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c: New file.
53165         * sysdeps/x86_64/fpu/multiarch/e_exp.c: New file.
53166         * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c: New file.
53167         * sysdeps/x86_64/fpu/multiarch/e_log.c: New file.
53168         * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c: New file.
53169         * sysdeps/x86_64/fpu/multiarch/e_pow.c: New file.
53170         * sysdeps/x86_64/fpu/multiarch/halfulp-fma4.c: New file.
53171         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: New file.
53172         * sysdeps/x86_64/fpu/multiarch/mpatan-fma4.c: New file.
53173         * sysdeps/x86_64/fpu/multiarch/mpatan2-fma4.c: New file.
53174         * sysdeps/x86_64/fpu/multiarch/mpexp-fma4.c: New file.
53175         * sysdeps/x86_64/fpu/multiarch/mplog-fma4.c: New file.
53176         * sysdeps/x86_64/fpu/multiarch/mpsqrt-fma4.c: New file.
53177         * sysdeps/x86_64/fpu/multiarch/mptan-fma4.c: New file.
53178         * sysdeps/x86_64/fpu/multiarch/s_atan-fma4.c: New file.
53179         * sysdeps/x86_64/fpu/multiarch/s_atan.c: New file.
53180         * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c: New file.
53181         * sysdeps/x86_64/fpu/multiarch/s_sin.c: New file.
53182         * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c: New file.
53183         * sysdeps/x86_64/fpu/multiarch/s_tan.c: New file.
53184         * sysdeps/x86_64/fpu/multiarch/sincos32-fma4.c: New file.
53185         * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: New file.
53186         * sysdeps/x86_64/fpu/multiarch/slowpow-fma4.c: New file.
53188         * sysdeps/ieee754/dbl-64/doasin.c: Adjust for DLA_FMA -> DLA_FMS
53189         rename.
53190         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
53191         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
53192         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
53193         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
53194         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
53195         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
53196         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
53197         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
53199 2011-10-24  Andreas Schwab  <schwab@redhat.com>
53201         * wcsmbs/wcslen.c: Don't define WCSLEN, reverse logic.
53203 2011-10-23  Ulrich Drepper  <drepper@gmail.com>
53205         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: New file.
53207         * sysdeps/ieee754/dbl-64/e_fmod.c (__ieee754_fmod): Add some branch
53208         prediction.
53209         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: New file.
53211         * string/strnlen.c: Don't define STRNLEN, reverse logic.
53212         Remove unused variable magic_bits.
53213         * sysdeps/i386/i686/multiarch/rtld-strnlen.c: New file.
53215         * string/strnlen.c: Define and use STRNLEN macro.
53216         * sysdeps/i386/i686/multiarch/Makefile [string] (sysdep_routines):
53217         Add strnlen-sse2, strnlen-c, wcslen-sse2, and wcslen-c.
53218         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Add support for strnlen.
53219         * wcsmbs/wcslen.c: Define and use WCSLEN.
53220         * sysdeps/i386/i686/multiarch/strnlen-c.c: New file.
53221         * sysdeps/i386/i686/multiarch/strnlen-sse2.S: New file.
53222         * sysdeps/i386/i686/multiarch/strnlen.S: New file.
53223         * sysdeps/i386/i686/multiarch/wcslen-c.c: New file.
53224         * sysdeps/i386/i686/multiarch/wcslen-sse2.S: New file.
53225         * sysdeps/i386/i686/multiarch/wcslen.S: New file.
53226         Patch by Liubov Dmitrieva <liubov.dmitrieva@gmail.com>.
53228 2011-10-20  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
53230         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
53231         strnlen-sse2-no-bsf.
53232         Rename strlen-no-bsf to strlen-sse2-no-bsf.
53233         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Rename to
53234         * sysdeps/x86_64/multiarch/strlen-sse2-no-bsf.S:
53235         Add strnlen support.
53236         (USE_AS_STRNLEN): New macro.
53237         * sysdeps/x86_64/multiarch/strnlen-sse2-no-bsf.S: New file.
53238         * sysdeps/x86_64/multiarch/strcat-ssse3.S: Update.
53239         Rename strlen-no-bsf.S to strlen-sse2-no-bsf.S
53240         * sysdeps/x86_64/wcslen.S: New file.
53242 2011-10-20  Michael Zolotukhin  <michael.v.zolotukhin@gmail.com>
53244         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Update.
53245         XMM-moves are used for copying on small sizes.
53247 2011-10-19  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
53249         * wcsmbs/Makefile (strop-tests): Add wcschr.
53250         * wcsmbs/test-wcschr.c: New file.
53251         * string/test-strchr.c: Update.
53252         Add wcschr support.
53253         (WIDE): New macro.
53255 2011-10-18  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
53257         * wcsmbs/Makefile (strop-tests): Add wcslen.
53258         * wcsmbs/test-wcslen.c: New file.
53259         * string/test-strlen.c: Update.
53260         Add wcslen support.
53261         (WIDE): New macro.
53263 2011-10-23  Ulrich Drepper  <drepper@gmail.com>
53265         * po/it.po: Update from translation team.
53267 2011-09-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
53269         * sysdeps/x86_64/wcscmp.S: Update.
53270         Fix wrong comparison semantics.
53271         wcscmp shall use signed comparison not unsigned.
53272         Don't use substraction to avoid overflow bug.
53273         * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: Likewise.
53274         * wcsmbc/wcscmp.c: Likewise.
53275         * string/test-strcmp.c: Likewise.
53276         Add new tests to check cases with negative values.
53278 2011-10-23  Ulrich Drepper  <drepper@gmail.com>
53280         * sysdeps/ieee754/dbl-64/dla.h: Move DLA_FMA definition to...
53281         * sysdeps/x86_64/dla.h: ...here.  New file.
53282         * sysdeps/ieee754/dbl-64/doasin.c: Use <dla.h> not "dla.h".
53283         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
53284         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
53285         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
53286         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
53287         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
53288         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
53289         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
53290         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
53292 2011-10-23  Andreas Schwab  <schwab@linux-m68k.org>
53294         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Add __jnl_finite and
53295         __ynl_finite aliases.
53297 2011-10-22  Ulrich Drepper  <drepper@gmail.com>
53299         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
53301         * sysdeps/ieee754/dbl-64/dla.h: When compiling with FMA4 support
53302         define DLA_FMA.
53303         [DLA_FMA] (EMULV): Use DLA_FMA.
53304         [DLA_FMA] (MUL12): Use EMULV.
53305         * sysdeps/ieee754/dbl-64/doasin.c [DLA_FMA]: Don't define variables
53306         that are not needed.
53307         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
53308         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
53309         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
53310         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
53311         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
53312         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
53313         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
53315 2011-10-22  Andreas Schwab  <schwab@linux-m68k.org>
53317         * math/s_nan.c: Undef __nan.
53318         * math/s_nanf.c: Undef __nanf.
53319         * math/s_nanl.c: Undef __nanl.
53320         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Include <math.h> before
53321         "math_private.h".
53323 2011-10-22  Ulrich Drepper  <drepper@gmail.com>
53325         * math/s_catan.c: Add branch predictions.
53326         * math/s_catanf.c: Likewise.
53327         * math/s_catanh.c: Likewise.
53328         * math/s_catanhf.c: Likewise.
53329         * math/s_catanhl.c: Likewise.
53330         * math/s_catanl.c: Likewise.
53331         * math/s_cexp.c: Likewise.
53332         * math/s_cexpf.c: Likewise.
53333         * math/s_cexpl.c: Likewise.
53334         * math/s_clog.c: Likewise.
53335         * math/s_clog10.c: Likewise.
53336         * math/s_clog10f.c: Likewise.
53337         * math/s_clog10l.c: Likewise.
53338         * math/s_clogf.c: Likewise.
53339         * math/s_clogl.c: Likewise.
53340         * math/s_csqrt.c: Likewise.
53341         * math/s_csqrtf.c: Likewise.
53342         * math/s_csqrtl.c: Likewise.
53343         * math/s_ctanf.c: Likewise.
53344         * math/s_ctanh.c: Likewise.
53345         * math/s_ctanhf.c: Likewise.
53346         * math/s_ctanhl.c: Likewise.
53347         * math/s_ctanl.c: Likewise.
53349         * math/math_private.h: Define __nan, __nanf, __nanl.
53350         * math/s_cacosh.c: Include <math_private.h>.
53351         * math/s_cacoshl.c: Likewise.
53352         * math/s_casinh.c: Likewise.
53353         * math/s_casinhf.c: Likewise.
53354         * math/s_casinhl.c: Likewise.
53355         * math/s_ccos.c: Rely entire on ccosh.
53356         * math/s_ccosf.c: Rely entire on ccoshf.
53357         * math/s_ccosl.c: Rely entirely on ccoshl.
53358         * math/s_ccosh.c: Add branch predicion helpers.  Add branch prediction.
53359         Remove tests for FE_INVALID.
53360         * math/s_ccoshf.c: Likewise.
53361         * math/s_ccoshl.c: Likewise.
53362         * math/s_csin.c: Likewise.
53363         * math/s_csinf.c: Likewise.
53364         * math/s_csinh.c Likewise.
53365         * math/s_csinhf.c: Likewise.
53366         * math/s_csinhl.c: Likewise.
53367         * math/s_csinl.c: Likewise.
53368         * math/s_ctan.c: Likewise.
53369         * sysdeps/ieee754/dbl-64/e_acosh.c: Use __ieee754_sqrt.
53370         * sysdeps/ieee754/flt-32/e_acoshf.c: Use __ieee754_sqrtf.
53371         * sysdeps/ieee754/ldbl-96/e_acoshl.c: Use __ieee754_sqrtl.
53373 2011-10-21  Ulrich Drepper  <drepper@gmail.com>
53375         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Fix
53376         compilation problems.
53378         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Add a few more
53379         __builtin_expect.
53381 2011-10-20  Ulrich Drepper  <drepper@gmail.com>
53383         * sysdeps/i386/configure.in: Test for -mfma4 option.
53384         * config.h.in: Add HAVE_FMA4_SUPPORT entry.
53385         * sysdeps/x86_64/multiarch/init-arch.h: Define HAS_FMA4 and
53386         COMMON_CPUID_INDEX_80000001.
53387         * sysdeps/x86_64/multiarch/init-arch.c: Read 80000001 leaf for AMD.
53388         * sysdeps/x86_64/fpu/multiarch/s_fma.c: Test for FMA4 support and
53389         use it if FMA3 is not supported.
53390         * sysdeps/x86_64/fpu/multiarch/s_fmaf.c: Likewise.
53392         * sysdeps/x86_64/multiarch/s_fma.c: Moved to ../fpu/multiarch.
53393         * sysdeps/x86_64/multiarch/s_fmaf.c: Likewise.
53395 2011-10-20  Andreas Schwab  <schwab@redhat.com>
53397         [BZ #12892]
53398         * elf/dl-fini.c (_dl_sort_fini): Ignore relocation dependency if
53399         it would create a cycle with a link time dependency.
53401 2011-10-19  Ulrich Drepper  <drepper@gmail.com>
53403         * sysdeps/x86_64/multiarch/rawmemchr.S: Small optimization to safe an
53404         instruction.
53405         * string/Makefile (strop-tests): Add rawmemchr.
53406         * string/test-rawmemchr.c: New file.
53408         * sysdeps/x86_64/multiarch/init-arch.h: Define bit_AVX and index_AVX.
53409         * sysdeps/x86_64/multiarch/strcmp-sse42.S: New file.  Split out from...
53410         * sysdeps/x86_64/multiarch/strcmp.S: ...here.  Include strcmp-sse42.S
53411         when compiling str{,n}casecmp and when AVX is available.  Hook up
53412         new optimized code in initializers.
53414 2011-10-19  Andreas Schwab  <schwab@redhat.com>
53416         * sysdeps/x86_64/fpu/math_private.h (libc_feupdateenv): Use
53417         __feraiseexcept instead of feraiseexcept.
53419 2011-10-18  Ulrich Drepper  <drepper@gmail.com>
53421         * math/math_private.h: Define defaults for libc_fetestexcept and
53422         libc_feupdateenv.
53423         * sysdeps/ieee754/dbl-64/s_fma.c: Use libc_fe* interfaces.
53424         * sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise.
53425         * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
53426         * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
53427         * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
53428         * sysdeps/x86_64/fpu/math_private.h: Define special versions of
53429         libc_fetestexcept and libc_feupdateenv.
53431         * math/math_private.h: Define defaults for libc_feholdexcept_setround,
53432         libc_feholdexcept_setroundf, libc_feholdexcept_setroundl.
53433         * sysdeps/ieee754/dbl-64/e_exp2.c: Use libc_feholdexcept_setround.
53434         * sysdeps/x86_64/fpu/math_private.h: Define special version of
53435         libc_feholdexcept_setround.
53437         * sysdeps/x86_64/fpu/multiarch/Makefile [math] (libm-sysdep-routines):
53438         Add s_nearbyint-c and s_nearbyintf-c.
53439         * sysdeps/x86_64/fpu/bits/mathinline.h: Define nearbyint and
53440         nearbyintf inlines.
53441         * sysdeps/x86_64/fpu/multiarch/s_nearbyint-c.c: New file.
53442         * sysdeps/x86_64/fpu/multiarch/s_nearbyint.S: New file.
53443         * sysdeps/x86_64/fpu/multiarch/s_nearbyintf-c.c: New file.
53444         * sysdeps/x86_64/fpu/multiarch/s_nearbyintf.S: New file.
53446         * math/math_private.h: Define defaults for libc_fegetround,
53447         libc_fegetroundf, libc_fegetroundl, libc_fesetround, libc_fesetroundf,
53448         libc_fesetroundl, libc_feholdexcept, libc_feholdexceptf,
53449         libc_feholdexceptl, libc_fesetenv, libc_fesetenvf, libc_fesetenvl.
53450         * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Use
53451         libc_feholdexcept, libc_fesetround, libc_fesetenv instead of the
53452         standard functions.
53453         * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
53454         Remove comments and hacks for old compiler versions.
53455         * sysdeps/x86_64/fpu/math_private.h: Define special versions of
53456         libc_fegetround, libc_fesetround, libc_feholdexcept, and
53457         libc_feholdexceptl.
53459 2011-10-18  Andreas Schwab  <schwab@redhat.com>
53461         * sysdeps/x86_64/fpu/bits/fenv.h: Add C linkage markers.
53462         (__feraiseexcept_renamed): Add __NTH.
53463         (feraiseexcept): Add __NTH.  Rename local variables to fix
53464         namespace violations.
53466 2011-10-17  Ulrich Drepper  <drepper@gmail.com>
53468         * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Small optimization.
53470         * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: New file.
53472         * sysdeps/x86_64/fpu/math_private.h: Relax asm requirements for
53473         recently added interfaces.
53474         * sysdeps/x86_64/fpu/bits/mathinline.h: Likewise.
53476         * sysdeps/x86_64/fpu/math_private.h: Add some parenthesis to be safe
53477         about macro parameter expansion.
53479         * sysdeps/x86_64/fpu/bits/mathinline.h: Don't define inlines if
53480         __NO_MATH_INLINES is defined.  Cleanups.
53482         * sysdeps/x86_64/fpu/math_private.h: Define __rint, __rintf, __floor,
53483         and __floorf is target has SSE4.1.
53484         * sysdeps/x86_64/fpu/multiarch/s_floor-c.c: Undef first.
53485         * sysdeps/x86_64/fpu/multiarch/s_floorf-c.: Likewise.
53486         * sysdeps/x86_64/fpu/multiarch/s_rint-c.c: Likewise.
53487         * sysdeps/x86_64/fpu/multiarch/s_rintf-c.c: Likewise.
53489         * sysdeps/x86_64/fpu/bits/mathinline.h (floor): Use correct function
53490         name.
53491         (floorf): Likewise.
53493         * nscd/netgroupcache.c (addgetnetgrentX): Fix #ifdef nesting.
53495 2011-10-17  Andreas Schwab  <schwab@redhat.com>
53497         * misc/sys/cdefs.h: Fix last change.
53499         * grp/initgroups.c (internal_getgrouplist): Fix initgroups
53500         database lookup.
53502 2011-10-16  Ulrich Drepper  <drepper@gmail.com>
53504         * misc/sys/cdefs.h: Use leaf function attribute in __THROW.
53506         * sysdeps/ieee754/dbl-64/s_ceil.c: Avoid alias renamed.
53507         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
53508         * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
53509         * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
53510         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
53511         * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Likewise.
53512         * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
53513         * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
53514         * sysdeps/ieee754/flt-32/s_rintf.c: Likewise.
53515         * sysdeps/x86_64/fpu/multiarch/Makefile: New file.
53516         * sysdeps/x86_64/fpu/multiarch/s_ceil-c.c: New file.
53517         * sysdeps/x86_64/fpu/multiarch/s_ceil.S: New file.
53518         * sysdeps/x86_64/fpu/multiarch/s_ceilf-c.c: New file.
53519         * sysdeps/x86_64/fpu/multiarch/s_ceilf.S: New file.
53520         * sysdeps/x86_64/fpu/multiarch/s_floor-c.c: New file.
53521         * sysdeps/x86_64/fpu/multiarch/s_floor.S: New file.
53522         * sysdeps/x86_64/fpu/multiarch/s_floorf-c.c: New file.
53523         * sysdeps/x86_64/fpu/multiarch/s_floorf.S: New file.
53524         * sysdeps/x86_64/fpu/multiarch/s_rint-c.c: New file.
53525         * sysdeps/x86_64/fpu/multiarch/s_rint.S: New file.
53526         * sysdeps/x86_64/fpu/multiarch/s_rintf-c.c: New file.
53527         * sysdeps/x86_64/fpu/multiarch/s_rintf.S: New file.
53529         * sysdeps/x86_64/fpu/bits/mathinline.h: Add inlines for rint, rintf,
53530         ceil, ceilf, floor, floorf.
53532         * elf/do-rel.h (elf_dynamic_do_Rel): Work around linker problem.
53533         Perform IRELATIVE relocations last.
53535         * elf/do-rel.h: Add another parameter nrelative, replacing the
53536         local variable with the same name.  Change name of the function
53537         to end in Rel or Rela (uppercase).
53538         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Add new element
53539         nrelative to ranges.  Only nonzero for DT_REL/DT_RELA.  Pass to the
53540         elf_dynamic_do_##reloc function.
53542 2011-10-15  Ulrich Drepper  <drepper@gmail.com>
53544         * sysdeps/i386/i686/fpu/e_log.S: No need for the fyl2xp1 use, fyl2x
53545         is sufficient, at least on modern CPUs.
53547         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: New file.
53549         * sysdeps/ieee754/dbl-64/e_cosh.c: Cleanup.
53550         * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c: New file.
53552         * math/Versions [libm] (GLIBC_2.15): Add __exp_finite, __expf_finite,
53553         __expl_finite.
53554         * math/bits/math-finite.h: Add entries for exp.
53555         * math/e_expl.c: Add __*_finite alias.
53556         * sysdeps/i386/fpu/e_exp.S: Likewise.
53557         * sysdeps/i386/fpu/e_expf.S: Likewise.
53558         * sysdeps/i386/fpu/e_expl.c: Likewise.
53559         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
53560         * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
53561         * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
53562         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
53563         * sysdeps/ieee754/dbl-64/w_exp.c: Complete rewrite.
53564         * sysdeps/ieee754/flt-32/w_expf.c: Likewise.
53565         * sysdeps/ieee754/ldbl-96/w_expl.c: Likewise.
53567         * sysdeps/i386/i686/fpu/e_logf.S: No need for the fyl2xp1 use, fyl2x
53568         is sufficient, at least on modern CPUs.
53570         * ctype/ctype-info.c (__ctype_init): Define.
53571         * include/ctype.h (__ctype_init): Declare.
53572         (__ctype_b_loc): The variable is always initialized.
53573         (__ctype_toupper_loc): Likewise.
53574         (__ctype_tolower_loc): Likewise.
53575         * ctype/Versions: Export __ctype_init for GLIBC_PRIVATE.
53576         * sysdeps/unix/sysv/linux/init-first.c (_init): Call __ctype_init.
53578 2011-10-15  Andreas Schwab  <schwab@linux-m68k.org>
53580         * wcsmbs/wmemcmp.c (WMEMCMP): Define.
53582         * configure.in: Also look in $cxxmachine/include for C++ system
53583         headers.
53585 2011-09-27  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
53587         * sysdeps/x86_64/multiarch/Makefile: (sysdep_routines): Add
53588         memcmp-ssse3 wmemcmp-sse4 wmemcmp-ssse3 wmemcmp-c
53589         * sysdeps/x86_64/multiarch/memcmp-ssse3: New file.
53590         * sysdeps/x86_64/multiarch/memcmp.S: Update.  Add __memcmp_ssse3.
53591         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Update.
53592         (USE_AS_WMEMCMP): New macro.
53593         Fixing indents.
53594         * sysdeps/x86_64/multiarch/wmemcmp.S: New file.
53595         * sysdeps/x86_64/multiarch/wmemcmp-ssse3.S: New file.
53596         * sysdeps/x86_64/multiarch/wmemcmp-sse4.S: New file.
53597         * sysdeps/x86_64/multiarch/wmemcmp-c.S: New file.
53598         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
53599         wmemcmp-ssse3 wmemcmp-sse4 wmemcmp-c
53600         * sysdeps/i386/i686/multiarch/wmemcmp.S: New file.
53601         * sysdeps/i386/i686/multiarch/wmemcmp-c.c: New file.
53602         * sysdeps/i386/i686/multiarch/wmemcmp-ssse3.S: New file.
53603         * sysdeps/i386/i686/multiarch/wmemcmp-sse4.S: New file.
53604         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Update.
53605         (USE_AS_WMEMCMP): New macro.
53606         * sysdeps/i386/i686/multiarch/memcmp-ssse3: Likewise.
53607         * sysdeps/string/test-memcmp.c: Update.
53608         Fix simple_wmemcmp.
53609         Add new tests.
53610         * wcsmbs/wmemcmp.c: Update.
53611         (WMEMCMP): New macro.
53612         Fix overflow bug.
53614 2011-10-12  Andreas Jaeger  <aj@suse.de>
53616         [BZ #13268]
53617         * math/bits/mathcalls.h: Mark argument 2 of modf as non-null.
53619 2011-10-15  Ulrich Drepper  <drepper@gmail.com>
53621         * libio/iofwide.c (do_length): Avoid warning.
53623         * ctype/ctype.h (__isctype_f): Add missing __THROW.
53625 2011-10-14  Ulrich Drepper  <drepper@gmail.com>
53627         * elf/pldd-xx.c (find_maps): Remove leftover debug message.
53629         * sysdeps/i386/fpu/e_log.S: Add real definition of __log_finite.
53630         * sysdeps/i386/fpu/e_logf.S: Add real definition of __logf_finite.
53631         * sysdeps/i386/fpu/e_logl.S: Add real definition of __logl_finite.
53632         * sysdeps/i386/i686/fpu/e_log.S: New file.
53633         * sysdeps/i386/i686/fpu/e_logf.S: New file.
53634         * sysdeps/i386/i686/fpu/e_logl.S: New file.
53636         * ctype/ctype.h: Add support for inlined isXXX functions when
53637         compiling C++ code.
53639 2011-10-14  Andreas Schwab  <schwab@redhat.com>
53641         * sysdeps/s390/fpu/libm-test-ulps: Adjust ULPs for jn tests.
53643         * sysdeps/x86_64/fpu/fraiseexcpt.c: Fix last change.
53645 2011-10-13  Roland McGrath  <roland@hack.frob.com>
53647         [BZ #13291]
53648         * manual/string.texi (String/Array Comparison): Typo fix in strverscmp.
53650 2011-10-13  Andreas Schwab  <schwab@redhat.com>
53652         * sysdeps/x86_64/fpu/fraiseexcpt.c: Add __feraiseexcept alias.
53653         * sysdeps/x86_64/fpu/feupdateenv.c: Use __feraiseexcept instead of
53654         feraiseexcept.
53656         * sysdeps/x86_64/memrchr.S: Check for zero size.
53658         * string/stratcliff.c: Add memrchr tests.
53660 2011-10-12  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
53662         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
53663         memchr-sse2 memchr-sse2-bsf memrchr-sse2 memrchr-sse2-bsf memrchr-c
53664         rawmemchr-sse2 rawmemchr-sse2-bsf.
53665         * sysdeps/i386/i686/multiarch/memchr.S: New file.
53666         * sysdeps/i386/i686/multiarch/memchr-sse2.S: New file.
53667         * sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S: New file.
53668         * sysdeps/i386/i686/multiarch/memrchr.S: New file.
53669         * sysdeps/i386/i686/multiarch/memrchr-c.c: New file.
53670         * sysdeps/i386/i686/multiarch/memrchr-sse2.S: New file.
53671         * sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S: New file.
53672         * sysdeps/i386/i686/multiarch/rawmemchr.S: New file.
53673         * sysdeps/i386/i686/multiarch/rawmemchr-sse2.S: New file.
53674         * sysdeps/i386/i686/multiarch/rawmemchr-sse2-bsf.S: New file.
53675         * string/memrchr.c (MEMRCHR): New macro.
53677 2011-10-12  Ulrich Drepper  <drepper@gmail.com>
53679         Add integration with gcc's -ffinite-math-only and optimize wrapper
53680         functions in libm.
53681         * Versions.def: Define GLIBC_2.15 version for libm.
53682         * math/Makefile (headers): Add bits/math-finite.h.
53683         * math/bits/math-finite.h: New file.
53684         * sysdeps/ia64/fpu/bits/math-finite.h: New file.
53685         * math/Versions [libm] (GLIBC_2.15): Export __*_finite symbols.
53686         * math/e_acoshl.c: Add __*_finite alias.
53687         * math/e_acosl.c: Likewise.
53688         * math/e_asinl.c: Likewise.
53689         * math/e_atan2l.c: Likewise.
53690         * math/e_atanhl.c: Likewise.
53691         * math/e_coshl.c: Likewise.
53692         * math/e_exp10.c: Likewise.
53693         * math/e_exp10f.c: Likewise.
53694         * math/e_exp10l.c: Likewise.
53695         * math/e_exp2l.c: Likewise.
53696         * math/e_fmodl.c: Likewise.
53697         * math/e_gammal_r.c: Likewise.
53698         * math/e_hypotl.c: Likewise.
53699         * math/e_j0l.c: Likewise.
53700         * math/e_j1l.c: Likewise.
53701         * math/e_jnl.c: Likewise.
53702         * math/e_lgammal_r.c: Likewise.
53703         * math/e_log10l.c: Likewise.
53704         * math/e_log2l.c: Likewise.
53705         * math/e_logl.c: Likewise.
53706         * math/e_powl.c: Likewise.
53707         * math/e_sinhl.c: Likewise.
53708         * math/e_sqrtl.c: Likewise.
53709         * math/e_scalb.c: Completely rewritten and optimized.
53710         * math/e_scalbf.c: Likewise.
53711         * math/e_scalbl.c: Likewise.
53712         * math/w_acos.c: Likewise.
53713         * math/w_acosf.c: Likewise.
53714         * math/w_acosl.c: Likewise.
53715         * math/w_acosh.c: Likewise.
53716         * math/w_acoshf.c: Likewise.
53717         * math/w_acoshl.c: Likewise.
53718         * math/w_asin.c: Likewise.
53719         * math/w_asinf.c: Likewise.
53720         * math/w_asinl.c: Likewise.
53721         * math/w_atan2.c: Likewise.
53722         * math/w_atan2f.c: Likewise.
53723         * math/w_atan2l.c: Likewise.
53724         * math/w_atanh.c: Likewise.
53725         * math/w_atanhf.c: Likewise.
53726         * math/w_atanhl.c: Likewise.
53727         * math/w_exp10.c: Likewise.
53728         * math/w_exp10f.c: Likewise.
53729         * math/w_exp10l.c: Likewise.
53730         * math/w_fmod.c: Likewise.
53731         * math/w_fmodf.c: Likewise.
53732         * math/w_fmodl.c: Likewise.
53733         * math/w_j0.c: Likewise.
53734         * math/w_j0f.c: Likewise.
53735         * math/w_j0l.c: Likewise.
53736         * math/w_j1.c: Likewise.
53737         * math/w_j1f.c: Likewise.
53738         * math/w_j1l.c: Likewise.
53739         * math/w_jn.c: Likewise.
53740         * math/w_jnf.c: Likewise.
53741         * math/w_log.c: Likewise.
53742         * math/w_logf.c: Likewise.
53743         * math/w_logl.c: Likewise.
53744         * math/w_log10.c: Likewise.
53745         * math/w_log10f.c: Likewise.
53746         * math/w_log10l.c: Likewise.
53747         * math/w_log2.c: Likewise.
53748         * math/w_log2f.c: Likewise.
53749         * math/w_log2l.c: Likewise.
53750         * math/w_pow.c: Likewise.
53751         * math/w_powf.c: Likewise.
53752         * math/w_powl.c: Likewise.
53753         * math/w_remainder.c: Likewise.
53754         * math/w_remainderf.c: Likewise.
53755         * math/w_remainderl.c: Likewise.
53756         * math/w_scalb.c: Likewise.
53757         * math/w_scalbf.c: Likewise.
53758         * math/w_scalbl.c: Likewise.
53759         * math/w_sqrt.c: Likewise.
53760         * math/w_sqrtf.c: Likewise.
53761         * math/w_sqrtl.c: Likewise.
53762         * math/math.h: Define __MATH_DECLARE_LDOUBLE if long double functions
53763         are declared.  Include <bits/math-finite.h> if -ffinite-math-only is
53764         used.
53765         * math/math_private.h: Declare __kernel_standard_f.
53766         * math/w_cosh.c: Remove cruft and optimize a bit.
53767         * math/w_coshf.c: Likewise.
53768         * math/w_coshl.c: Likewise.
53769         * math/w_exp2.c: Likewise.
53770         * math/w_exp2f.c: Likewise.
53771         * math/w_exp2l.c: Likewise.
53772         * math/w_hypot.c: Likewise.
53773         * math/w_hypotf.c: Likewise.
53774         * math/w_hypotl.c: Likewise.
53775         * math/w_lgamma.c: Likewise.
53776         * math/w_lgamma_r.c: Likewise.
53777         * math/w_lgammaf.c: Likewise.
53778         * math/w_lgammaf_r.c: Likewise.
53779         * math/w_lgammal.c: Likewise.
53780         * math/w_lgammal_r.c: Likewise.
53781         * math/w_sinh.c: Likewise.
53782         * math/w_sinhf.c: Likewise.
53783         * math/w_sinhl.c: Likewise.
53784         * math/w_tgamma.c: Likewise.
53785         * math/w_tgammaf.c: Likewise.
53786         * math/w_tgammal.c: Likewise.
53787         * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
53788         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
53789         * sysdeps/i386/fpu/e_acos.S: Add __*_finite alias.
53790         Minor optimizations.  Pretty printing.  Remove cruft.
53791         * sysdeps/i386/fpu/e_acosf.S: Likewise.
53792         * sysdeps/i386/fpu/e_acosh.S: Likewise.
53793         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
53794         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
53795         * sysdeps/i386/fpu/e_acosl.c: Likewise.
53796         * sysdeps/i386/fpu/e_asin.S: Likewise.
53797         * sysdeps/i386/fpu/e_asinf.S: Likewise.
53798         * sysdeps/i386/fpu/e_atan2.S: Likewise.
53799         * sysdeps/i386/fpu/e_atan2f.S: Likewise.
53800         * sysdeps/i386/fpu/e_atan2l.c: Likewise.
53801         * sysdeps/i386/fpu/e_atanh.S: Likewise.
53802         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
53803         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
53804         * sysdeps/i386/fpu/e_exp10.S: Likewise.
53805         * sysdeps/i386/fpu/e_exp10f.S: Likewise.
53806         * sysdeps/i386/fpu/e_exp10l.S: Likewise.
53807         * sysdeps/i386/fpu/e_exp2.S: Likewise.
53808         * sysdeps/i386/fpu/e_exp2f.S: Likewise.
53809         * sysdeps/i386/fpu/e_exp2l.S: Likewise.
53810         * sysdeps/i386/fpu/e_fmod.S: Likewise.
53811         * sysdeps/i386/fpu/e_fmodf.S: Likewise.
53812         * sysdeps/i386/fpu/e_fmodl.c: Likewise.
53813         * sysdeps/i386/fpu/e_hypot.S: Likewise.
53814         * sysdeps/i386/fpu/e_hypotf.S: Likewise.
53815         * sysdeps/i386/fpu/e_log.S: Likewise.
53816         * sysdeps/i386/fpu/e_log10.S: Likewise.
53817         * sysdeps/i386/fpu/e_log10f.S: Likewise.
53818         * sysdeps/i386/fpu/e_log10l.S: Likewise.
53819         * sysdeps/i386/fpu/e_log2.S: Likewise.
53820         * sysdeps/i386/fpu/e_log2f.S: Likewise.
53821         * sysdeps/i386/fpu/e_log2l.S: Likewise.
53822         * sysdeps/i386/fpu/e_logf.S: Likewise.
53823         * sysdeps/i386/fpu/e_logl.S: Likewise.
53824         * sysdeps/i386/fpu/e_pow.S: Likewise.
53825         * sysdeps/i386/fpu/e_powf.S: Likewise.
53826         * sysdeps/i386/fpu/e_powl.S: Likewise.
53827         * sysdeps/i386/fpu/e_remainder.S: Likewise.
53828         * sysdeps/i386/fpu/e_remainderf.S: Likewise.
53829         * sysdeps/i386/fpu/e_remainderl.S: Likewise.
53830         * sysdeps/i386/fpu/e_scalb.S: Likewise.
53831         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
53832         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
53833         * sysdeps/i386/fpu/e_sqrt.S: Likewise.
53834         * sysdeps/i386/fpu/e_sqrtf.S: Likewise.
53835         * sysdeps/i386/fpu/e_sqrtl.c: Likewise.
53836         * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
53837         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
53838         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
53839         * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
53840         * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
53841         * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
53842         * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
53843         * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
53844         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
53845         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
53846         * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
53847         * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Likewise.
53848         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
53849         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
53850         * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
53851         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
53852         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
53853         * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
53854         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
53855         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
53856         * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
53857         * sysdeps/ieee754/flt-32/e_acosf.c: Likewise.
53858         * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
53859         * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
53860         * sysdeps/ieee754/flt-32/e_atan2f.c: Likewise.
53861         * sysdeps/ieee754/flt-32/e_coshf.c: Likewise.
53862         * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
53863         * sysdeps/ieee754/flt-32/e_fmodf.c: Likewise.
53864         * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
53865         * sysdeps/ieee754/flt-32/e_hypotf.c: Likewise.
53866         * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
53867         * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
53868         * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
53869         * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
53870         * sysdeps/ieee754/flt-32/e_log10f.c: Likewise.
53871         * sysdeps/ieee754/flt-32/e_log2f.c: Likewise.
53872         * sysdeps/ieee754/flt-32/e_logf.c: Likewise.
53873         * sysdeps/ieee754/flt-32/e_powf.c: Likewise.
53874         * sysdeps/ieee754/flt-32/e_remainderf.c: Likewise.
53875         * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
53876         * sysdeps/ieee754/flt-32/e_sqrtf.c: Likewise.
53877         * sysdeps/ieee754/flt-32/s_asinhf.c: Likewise.
53878         * sysdeps/ieee754/ldbl-128/e_acoshl.c: Likewise.
53879         * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
53880         * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
53881         * sysdeps/ieee754/ldbl-128/e_atan2l.c: Likewise.
53882         * sysdeps/ieee754/ldbl-128/e_atanhl.c: Likewise.
53883         * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
53884         * sysdeps/ieee754/ldbl-128/e_fmodl.c: Likewise.
53885         * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Likewise.
53886         * sysdeps/ieee754/ldbl-128/e_hypotl.c: Likewise.
53887         * sysdeps/ieee754/ldbl-128/e_j0l.c: Likewise.
53888         * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
53889         * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
53890         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise.
53891         * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
53892         * sysdeps/ieee754/ldbl-128/e_log2l.c: Likewise.
53893         * sysdeps/ieee754/ldbl-128/e_logl.c: Likewise.
53894         * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
53895         * sysdeps/ieee754/ldbl-128/e_remainderl.c: Likewise.
53896         * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
53897         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c: Likewise.
53898         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
53899         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
53900         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c: Likewise.
53901         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Likewise.
53902         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Likewise.
53903         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Likewise.
53904         * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Likewise.
53905         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: Likewise.
53906         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c: Likewise.
53907         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c: Likewise.
53908         * sysdeps/ieee754/ldbl-128ibm/e_logl.c: Likewise.
53909         * sysdeps/ieee754/ldbl-128ibm/e_powl.c: Likewise.
53910         * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c: Likewise.
53911         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
53912         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c: Likewise.
53913         * sysdeps/ieee754/ldbl-96/e_acoshl.c: Likewise.
53914         * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
53915         * sysdeps/ieee754/ldbl-96/e_atan2l.c: Likewise.
53916         * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
53917         * sysdeps/ieee754/ldbl-96/e_coshl.c: Likewise.
53918         * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Likewise.
53919         * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
53920         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
53921         * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
53922         * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
53923         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
53924         * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
53925         * sysdeps/ieee754/ldbl-96/e_sinhl.c: Likewise.
53926         * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
53927         * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
53928         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
53929         * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
53930         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
53931         * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: Likewise.
53932         * sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c: Likewise.
53933         * sysdeps/s390/fpu/e_sqrt.c: Likewise.
53934         * sysdeps/s390/fpu/e_sqrtf.c: Likewise.
53935         * sysdeps/s390/fpu/e_sqrtl.c: Likewise.
53936         * sysdeps/sparc/sparc32/e_sqrt.c: Likewise.
53937         * sysdeps/sparc/sparc64/fpu/e_sqrtl.c: Likewise.
53938         * sysdeps/x86_64/fpu/e_exp2l.S: Likewise.
53939         * sysdeps/x86_64/fpu/e_fmodl.S: Likewise.
53940         * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
53941         * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
53942         * sysdeps/x86_64/fpu/e_logl.S: Likewise.
53943         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
53944         * sysdeps/x86_64/fpu/e_remainderl.S: Likewise.
53945         * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
53946         * sysdeps/x86_64/fpu/e_sqrt.c: Likewise.  Fix parameter order
53947         * sysdeps/x86_64/fpu/e_sqrtf.c: Likewise.
53948         * sysdeps/x86_64/fpu/math_private.h (__isnan): Cast d parameter.
53949         (__isnanf): Likewise.
53950         (__isinf_ns): Likewise.
53951         (__isinf_nsf): Likewise.
53952         (__finite): Likewise.
53953         (__finitef): Likewise.
53954         (__ieee754_sqrt): Define as macro.
53955         (__ieee754_sqrtf): Define as macro.
53956         (__ieee754_sqrtl): Define as macro.
53957         * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Add partially
53958         inlined copy.
53959         * sysdeps/x86_64/fpu/bits/mathinline.h: Make use of
53960         __FINITE_MATH_ONLY__ consistent.
53961         * sysdeps/ieee754/k_standard.c (__kernel_standard_f): New function.
53963 2011-10-10  Andreas Schwab  <schwab@linux-m68k.org>
53965         * inet/getnetgrent_r.c (nscd_getnetgrent): Use __rawmemchr instead
53966         of rawmemchr.
53968         * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c: New file.
53970 2011-10-09  Ulrich Drepper  <drepper@gmail.com>
53972         * po/ja.po: Update from translation team.
53974 2011-10-08  Roland McGrath  <roland@hack.frob.com>
53976         * locale/programs/locarchive.c (prepare_address_space): New function.
53977         (create_archive, enlarge_archive, open_archive): Use it.
53979         * sysdeps/unix/sysv/linux/x86_64/time.c: Move #include <dl-vdso.h>
53980         inside [SHARED], where it is used.
53982         * nscd/nscd_proto.h: Declare __nscd_setnetgrent.
53984         * nss/getent.c (netgroup_keys): Remove unused variable.
53985         * sysdeps/ieee754/flt-32/s_isinf_nsf.c: Likewise.
53987 2011-10-08  Ulrich Drepper  <drepper@gmail.com>
53989         * include/math.h: Declare __isinf_ns, __isinf_nsf, __isinf_nsl.
53990         * sysdeps/ieee754/dbl-64/s_isinf_ns.c: New file.
53991         * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf_ns.c: New file.
53992         * sysdeps/ieee754/flt-32/s_isinf_nsf.c: New file.
53993         * sysdeps/ieee754/ldbl-128/s_isinf_nsl.c: New file.
53994         * sysdeps/ieee754/ldbl-96/s_isinf_nsl.c: New file.
53995         * math/Makefile (libm-calls): Add s_isinf_ns.
53996         * math/divtc3.c: Use __isinf_nsl instead of isinf.
53997         * math/multc3.c: Likewise.
53998         * math/s_casin.c: Likewise.
53999         * math/s_casinf.c: Likewise.
54000         * math/s_casinl.c: Likewise.
54001         * math/s_ccos.c: Likewise.
54002         * math/s_ccosf.c: Likewise.
54003         * math/s_ccosl.c: Likewise.
54004         * math/s_ctan.c: Likewise.
54005         * math/s_ctanf.c: Likewise.
54006         * math/s_ctanh.c: Likewise.
54007         * math/s_ctanhf.c: Likewise.
54008         * math/s_ctanhl.c: Likewise.
54009         * math/s_ctanl.c: Likewise.
54010         * math/w_fmod.c: Likewise.
54011         * math/w_fmodf.c: Likewise.
54012         * math/w_fmodl.c: Likewise.
54013         * math/w_remainder.c: Likewise.
54014         * math/w_remainderf.c: Likewise.
54015         * math/w_remainderl.c: Likewise.
54016         * sysdeps/ieee754/dbl-64/s_finite.c: Undefine __finite.
54017         * sysdeps/ieee754/dbl-64/s_isnan.c: Undefine __isnan.
54018         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Undefine __finite.
54019         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Undefine __nan.
54020         * sysdeps/ieee754/flt-32/s_finitef.c: Undefine __finitef.
54021         * sysdeps/ieee754/flt-32/s_isnanf.c: Undefine __nan.
54022         * sysdeps/x86_64/fpu/math_private.h: Add optimized versions of __isnsn,
54023         __isnanf, __isinf_ns, __isinf_nsf, __finite, and __finitef.
54025         * stdio-common/printf_fp.c: Use the fact that isinf returns the sign
54026         of the number.
54027         * stdio-common/printf_fphex.c: Likewise.
54028         * stdio-common/printf_size.c: Likewise.
54030         * math/e_exp10.c: Include math_private.h using <...> not "...".
54031         * math/e_exp10f.c: Likewise.
54032         * math/e_exp10l.c: Likewise.
54033         * math/e_exp2l.c: Likewise.
54034         * math/e_j0l.c: Likewise.
54035         * math/e_j1l.c: Likewise.
54036         * math/e_jnl.c: Likewise.
54037         * math/e_lgammal_r.c: Likewise.
54038         * math/e_rem_pio2l.c: Likewise.
54039         * math/e_scalb.c: Likewise.
54040         * math/e_scalbf.c: Likewise.
54041         * math/e_scalbl.c: Likewise.
54042         * math/k_cosl.c: Likewise.
54043         * math/k_sinl.c: Likewise.
54044         * math/k_tanl.c: Likewise.
54045         * math/s_cacoshf.c: Likewise.
54046         * math/s_catan.c: Likewise.
54047         * math/s_catanf.c: Likewise.
54048         * math/s_catanh.c: Likewise.
54049         * math/s_catanhf.c: Likewise.
54050         * math/s_catanhl.c: Likewise.
54051         * math/s_catanl.c: Likewise.
54052         * math/s_ccosh.c: Likewise.
54053         * math/s_ccoshf.c: Likewise.
54054         * math/s_ccoshl.c: Likewise.
54055         * math/s_cexp.c: Likewise.
54056         * math/s_cexpf.c: Likewise.
54057         * math/s_cexpl.c: Likewise.
54058         * math/s_clog.c: Likewise.
54059         * math/s_clog10.c: Likewise.
54060         * math/s_clog10f.c: Likewise.
54061         * math/s_clog10l.c: Likewise.
54062         * math/s_clogf.c: Likewise.
54063         * math/s_clogl.c: Likewise.
54064         * math/s_csin.c: Likewise.
54065         * math/s_csinf.c: Likewise.
54066         * math/s_csinh.c: Likewise.
54067         * math/s_csinhf.c: Likewise.
54068         * math/s_csinhl.c: Likewise.
54069         * math/s_csinl.c: Likewise.
54070         * math/s_csqrt.c: Likewise.
54071         * math/s_csqrtf.c: Likewise.
54072         * math/s_csqrtl.c: Likewise.
54073         * math/s_ctan.c: Likewise.
54074         * math/s_ctanf.c: Likewise.
54075         * math/s_ctanh.c: Likewise.
54076         * math/s_ctanhf.c: Likewise.
54077         * math/s_ctanhl.c: Likewise.
54078         * math/s_ctanl.c: Likewise.
54079         * math/s_ldexp.c: Likewise.
54080         * math/s_ldexpf.c: Likewise.
54081         * math/s_ldexpl.c: Likewise.
54082         * math/s_significand.c: Likewise.
54083         * math/s_significandf.c: Likewise.
54084         * math/s_significandl.c: Likewise.
54085         * math/w_acos.c: Likewise.
54086         * math/w_acosf.c: Likewise.
54087         * math/w_acosh.c: Likewise.
54088         * math/w_acoshf.c: Likewise.
54089         * math/w_acoshl.c: Likewise.
54090         * math/w_acosl.c: Likewise.
54091         * math/w_asin.c: Likewise.
54092         * math/w_asinf.c: Likewise.
54093         * math/w_asinl.c: Likewise.
54094         * math/w_atan2.c: Likewise.
54095         * math/w_atan2f.c: Likewise.
54096         * math/w_atan2l.c: Likewise.
54097         * math/w_atanh.c: Likewise.
54098         * math/w_atanhf.c: Likewise.
54099         * math/w_atanhl.c: Likewise.
54100         * math/w_cosh.c: Likewise.
54101         * math/w_coshf.c: Likewise.
54102         * math/w_coshl.c: Likewise.
54103         * math/w_dremf.c: Likewise.
54104         * math/w_exp10.c: Likewise.
54105         * math/w_exp10f.c: Likewise.
54106         * math/w_exp10l.c: Likewise.
54107         * math/w_exp2.c: Likewise.
54108         * math/w_exp2f.c: Likewise.
54109         * math/w_fmod.c: Likewise.
54110         * math/w_fmodf.c: Likewise.
54111         * math/w_fmodl.c: Likewise.
54112         * math/w_hypot.c: Likewise.
54113         * math/w_hypotf.c: Likewise.
54114         * math/w_hypotl.c: Likewise.
54115         * math/w_j0.c: Likewise.
54116         * math/w_j0f.c: Likewise.
54117         * math/w_j0l.c: Likewise.
54118         * math/w_j1.c: Likewise.
54119         * math/w_j1f.c: Likewise.
54120         * math/w_j1l.c: Likewise.
54121         * math/w_jn.c: Likewise.
54122         * math/w_jnf.c: Likewise.
54123         * math/w_jnl.c: Likewise.
54124         * math/w_lgamma.c: Likewise.
54125         * math/w_lgamma_r.c: Likewise.
54126         * math/w_lgammaf.c: Likewise.
54127         * math/w_lgammaf_r.c: Likewise.
54128         * math/w_lgammal.c: Likewise.
54129         * math/w_lgammal_r.c: Likewise.
54130         * math/w_log.c: Likewise.
54131         * math/w_log10.c: Likewise.
54132         * math/w_log10f.c: Likewise.
54133         * math/w_log10l.c: Likewise.
54134         * math/w_log2.c: Likewise.
54135         * math/w_log2f.c: Likewise.
54136         * math/w_log2l.c: Likewise.
54137         * math/w_logf.c: Likewise.
54138         * math/w_logl.c: Likewise.
54139         * math/w_pow.c: Likewise.
54140         * math/w_powf.c: Likewise.
54141         * math/w_powl.c: Likewise.
54142         * math/w_remainder.c: Likewise.
54143         * math/w_remainderf.c: Likewise.
54144         * math/w_remainderl.c: Likewise.
54145         * math/w_scalb.c: Likewise.
54146         * math/w_scalbf.c: Likewise.
54147         * math/w_scalbl.c: Likewise.
54148         * math/w_sinh.c: Likewise.
54149         * math/w_sinhf.c: Likewise.
54150         * math/w_sinhl.c: Likewise.
54151         * math/w_sqrt.c: Likewise.
54152         * math/w_sqrtf.c: Likewise.
54153         * math/w_sqrtl.c: Likewise.
54154         * math/w_tgamma.c: Likewise.
54155         * math/w_tgammaf.c: Likewise.
54156         * math/w_tgammal.c: Likewise.
54158         * po/ja.po: Update from translation team.
54160 2011-09-29  Andreas Jaeger  <aj@suse.de>
54162         [BZ #13179]
54163         * sunrpc/netname.c (netname2host): Fix logic.
54165         [BZ #6779]
54166         [BZ #6783]
54167         * math/w_remainderl.c (__remainderl): Handle (NaN, 0) and (Inf,y)
54168         correctly.
54169         * math/w_remainder.c (__remainder): Likewise.
54170         * math/w_remainderf.c (__remainderf): Likewise.
54171         * math/libm-test.inc (remainder_test): Add test cases.
54173 2011-10-04  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
54175         * stdlib/longlong.h: Update from GCC.  Fix zarch smul_ppmm and
54176         sdiv_qrnnd.
54178 2011-10-07  Ulrich Drepper  <drepper@gmail.com>
54180         * string/test-memcmp.c: Avoid unncessary #defines.
54181         Patch by Liubov Dmitrieva <liubov.dmitrieva@gmail.com>.
54183 2011-08-31  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
54185         * sysdeps/x86_64/multiarch/rawmemchr.S: Update.
54186         Use new sse2 version for core i3 - i7 as it's faster
54187         than sse42 version.
54188         (bit_Prefer_PMINUB_for_stringop): New.
54189         * sysdeps/x86_64/rawmemchr.S: Update.
54190         Replace with faster SSE2 version.
54191         * sysdeps/x86_64/memrchr.S: New file.
54192         * sysdeps/x86_64/memchr.S: Update.
54193         Replace with faster SSE2 version.
54195 2011-09-12  Marek Polacek  <mpolacek@redhat.com>
54197         * elf/dl-load.c (lose): Add cast to avoid warning.
54199 2011-10-07  Ulrich Drepper  <drepper@gmail.com>
54201         * po/ca.po: Update from translation team.
54203         * inet/getnetgrent_r.c: Hook up nscd.
54204         * nscd/Makefile (routines): Add nscd_netgroup.
54205         (nscd-modules): Add netgroupcache.
54206         (CFLAGS-netgroupcache.c): Define.
54207         * nscd/cache.c (readdfcts): Add entries for GETNETGRENT and INNETGR.
54208         (cache_search): Add const to second parameter.
54209         * nscd/connections.c (serv2str): Add entries for GETNETGRENT and
54210         INNETGR.
54211         (dbs): Add netgrdb entry.
54212         (reqinfo): Add entries for GETNETGRENT, INNETGR, and GETFDNETGR.
54213         (verify_persistent_db): Handle netgrdb.
54214         (handle_request): Handle GETNETGRENT, INNETGR, and GETFDNETGR.
54215         * nscd/nscd-client.h (request_type): Add GETNETGRENT, INNETGR, and
54216         GETFDNETGR.
54217         (netgroup_response_header): Define.
54218         (innetgroup_response_header): Define.
54219         (datahead): Add netgroup_response_header and innetgroup_response_header
54220         elements.
54221         * nscd/nscd.conf: Add entries for netgroup cache.
54222         * nscd/nscd.h (dbtype): Add netgrdb.
54223         (_PATH_NSCD_NETGROUP_DB): Define.
54224         (netgroup_iov_disabled): Declare.
54225         (xmalloc, xcalloc, xrealloc): Move declarations here.
54226         (cache_search): Adjust prototype.
54227         Add netgroup-related prototypes.
54228         * nscd/nscd_conf.c (dbnames): Add netgrdb entry.
54229         * nscd/nscd_proto.h (__nss_not_use_nscd_netgroup): Declare.
54230         (__nscd_innetgr): Declare.
54231         * nscd/selinux.c (perms): Use access_vector_t as element type and
54232         add netgroup-related initializers.
54233         * nscd/netgroupcache.c: New file.
54234         * nscd/nscd_netgroup.c: New file.
54235         * nss/Versions [libc] (GLIBC_PRIVATE): Export __nss_lookup.
54236         * nss/getent.c (netgroup_keys): Use setnetgrent only for one parameter.
54237         For four parameters use innetgr.
54238         * nss/nss_files/files-init.c: Add definition and callback for netgr.
54239         * nss/nsswitch.c (__nss_lookup): Add libc_hidden_def.
54240         (__nss_disable_nscd): Set __nss_not_use_nscd_netgroup.
54241         * nss/nsswitch.h (__nss_lookup): Add libc_hidden_proto.
54243         * nscd/connections.c (register_traced_file): Don't register file
54244         for disabled databases.
54246 2011-10-06  Ulrich Drepper  <drepper@gmail.com>
54248         * nscd/grpcache.c (cache_addgr): Initialize written in all cases.
54250         * nss/nsswitch.c (__nss_lookup_function): Fix order of deleting
54251         from tree and freeing node.
54253 2011-09-25  Jiri Olsa  <jolsa@redhat.com>
54255         * nss/nsswitch.c (__nss_database_lookup): Handle
54256         nss_parse_service_list out of memory case.
54258 2011-09-15  Jiri Olsa  <jolsa@redhat.com>
54260         * nss/nsswitch.c (__nss_lookup_function): Handle __tsearch
54261         out of memory case.
54263 2011-10-04  Andreas Schwab  <schwab@redhat.com>
54265         * include/dlfcn.h (__RTLD_NOIFUNC): Define.
54266         * elf/do-rel.h (elf_dynamic_do_rel): Add parameter skip_ifunc and
54267         pass it down.
54268         * elf/dynamic-link.h: Adjust prototypes of elf_machine_rel,
54269         elf_machine_rela, elf_machine_lazy_rel.
54270         (_ELF_DYNAMIC_DO_RELOC): Add parameter skip_ifunc and pass it down.
54271         (ELF_DYNAMIC_DO_REL): Likewise.
54272         (ELF_DYNAMIC_DO_RELA): Likewise.
54273         (ELF_DYNAMIC_RELOCATE): Likewise.
54274         * elf/dl-reloc.c (_dl_relocate_object): Pass __RTLD_NOIFUNC down
54275         to ELF_DYNAMIC_DO_REL.
54276         * elf/rtld.c (_dl_start): Adjust use of ELF_DYNAMIC_RELOCATE.
54277         (dl_main): In trace mode always set __RTLD_NOIFUNC.
54278         * elf/dl-conflict.c (_dl_resolve_conflicts): Adjust call to
54279         elf_machine_rela.
54280         * sysdeps/i386/dl-machine.h (elf_machine_rel): Add parameter
54281         skip_ifunc, don't call ifunc function if non-zero.
54282         (elf_machine_rela): Likewise.
54283         (elf_machine_lazy_rel): Likewise.
54284         (elf_machine_lazy_rela): Likewise.
54285         * sysdeps/ia64/dl-machine.h (elf_machine_rela): Likewise.
54286         (elf_machine_lazy_rel): Likewise.
54287         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela):
54288         Likewise.
54289         (elf_machine_lazy_rel): Likewise.
54290         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
54291         Likewise.
54292         (elf_machine_lazy_rel): Likewise.
54293         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela): Likewise.
54294         (elf_machine_lazy_rel): Likewise.
54295         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela): Likewise.
54296         (elf_machine_lazy_rel): Likewise.
54297         * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
54298         (elf_machine_lazy_rel): Likewise.
54299         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Likewise.
54300         (elf_machine_lazy_rel): Likewise.
54301         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise.
54302         (elf_machine_lazy_rel): Likewise.
54303         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
54304         (elf_machine_lazy_rel): Likewise.
54306 2011-09-28  Ulrich Drepper  <drepper@gmail.com>
54308         * nss/nss_files/files-init.c (_nss_files_init): Use static
54309         initialization for all the *_traced_file variables.
54311 2011-09-28  Andreas Schwab  <schwab@redhat.com>
54313         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust ULPs for jn tests.
54315 2011-09-27  Roland McGrath  <roland@hack.frob.com>
54317         [BZ #13226]
54318         * manual/signal.texi (Longjmp in Handler): Grammar fixes.
54320 2011-09-27  Andreas Schwab  <schwab@redhat.com>
54322         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
54323         Reread the line before reparsing it.
54325 2011-09-26  Andreas Schwab  <schwab@redhat.com>
54327         * sysdeps/x86_64/fpu/bits/mathinline.h: Use __asm instead of asm.
54329 2011-09-21  Chung-Lin Tang  <cltang@codesourcery.com>
54330             Maxim Kuvyrkov  <maxim@codesourcery.com>
54331             Joseph Myers  <joseph@codesourcery.com>
54333         * resolv/Makefile (LDLIBS-resolv.so): Link in $(elfobjdir)/ld.so
54334         if needed for __stack_chk_guard.
54336 2011-09-19  Roland McGrath  <roland@hack.frob.com>
54338         * sysdeps/posix/spawni.c (script_execute): Always define it.
54339         It will be optimized away if unused.
54340         (maybe_script_execute): New function.
54341         (__spawni): Call it.
54343         * Makerules: Don't include tls.make.
54344         (config-tls): Always set to thread.
54345         * tls.make.c: File removed.
54347 2011-09-19  Mike Frysinger  <vapier@gentoo.org>
54349         * Makeconfig (CPPFLAGS): Prepend $(CPPFLAGS-config).
54350         * config.make.in (CPPFLAGS-config): New substituted variable.
54352 2011-09-15  Ulrich Drepper  <drepper@gmail.com>
54354         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: New file.
54356         [BZ #13192]
54357         * sysdeps/unix/sysv/linux/bits/in.h (IP_MULTICAST_ALL): Define.
54358         Patch mostly by Neil Horman <nhorman@tuxdriver.com>.
54360 2011-09-15  Roland McGrath  <roland@hack.frob.com>
54362         * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S
54363         (CALL_FAIL): Use HIDDEN_JUMPTARGET for __fortify_fail.
54364         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
54365         (CALL_FAIL): Likewise.
54366         * sysdeps/unix/sysv/linux/ia64/____longjmp_chk.S (CHECK_RSP): Likewise.
54367         (CALL_FAIL): Macro removed.
54368         Patch mostly by Mike Frysinger <vapier@gentoo.org>.
54370 2011-09-15  Ulrich Drepper  <drepper@gmail.com>
54372         * sysdeps/x86_64/fpu/bits/mathinline.h: Add fmax and fmin optimizations
54373         for __FINITE_MATH_ONLY__ == 1.
54375 2011-09-15  Andreas Schwab  <schwab@redhat.com>
54377         * sysdeps/powerpc/fpu/e_hypot.c (__ieee754_hypot): Use
54378         __ieee754_sqrt instead of sqrt.
54379         * sysdeps/powerpc/fpu/e_hypotf.c (__ieee754_hypotf): Use
54380         __ieee754_sqrtf instead of sqrtf.
54381         * sysdeps/powerpc/fpu/e_rem_pio2f.c (__ieee754_rem_pio2f): Use
54382         __floorf instead of floorf.
54383         * sysdeps/powerpc/fpu/k_rem_pio2f.c (__fp_kernel_rem_pio2f): Use
54384         __floorf, __truncf instead of floorf, truncf.
54386 2011-09-14  Ulrich Drepper  <drepper@gmail.com>
54388         * sysdeps/x86_64/fpu/s_copysign.S [ELF]: Use correct section.
54390         * sysdeps/x86_64/fpu/bits/mathinline.h (__MATH_INLINE): Use
54391         __extern_always_inline.
54392         Define lrint{f,} and llrint{f,} for 64-bit and in some situations for
54393         32-bit.
54395 2011-09-14  Andreas Schwab  <schwab@redhat.com>
54397         * elf/rtld.c (dl_main): Also relocate in dependency order when
54398         doing symbol dependency testing.
54400 2011-09-13  Andreas Schwab  <schwab@linux-m68k.org>
54402         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
54403         Always define `refsym'.
54405 2011-09-13  Andreas Schwab  <schwab@redhat.com>
54407         * misc/sys/select.h (__FD_MASK): Renamed from __FDMASK.
54408         (__FD_ELT): Renamed from __FDELT.
54409         * misc/bits/select2.h (__FD_ELT): Likewise.
54410         * bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET): Use __FD_ELT,
54411         __FD_MASK instead of __FDELT, __FDMASK.
54412         * sysdeps/i386/bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET):
54413         Likewise.
54414         * sysdeps/x86_64/bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET):
54415         Likewise.
54417         * elf/Makefile (gen-ldd): Fix pattern.
54419         * elf/rtld.c (dl_main): Only use USE___THREAD when defined.
54420         (init_tls): Likewise.
54422 2011-09-12  Ulrich Drepper  <drepper@gmail.com>
54424         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c: New file.
54426 2011-09-12  Andreas Schwab  <schwab@redhat.com>
54428         * sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Cast to
54429         `struct cmsghdr *' instead of `void *'.
54430         * sysdeps/unix/sysv/linux/sparc/bits/socket.h (__cmsg_nxthdr):
54431         Likewise.
54433 2011-09-11  Andreas Schwab  <schwab@linux-m68k.org>
54435         * elf/Makefile (gen-ldd): Prepend $(..) to $(ldd-rewrite-script)
54436         if non-absolute.
54437         * sysdeps/unix/sysv/linux/configure.in: Remove leading ../ from
54438         ldd_rewrite_script.
54440 2011-09-11  Ulrich Drepper  <drepper@gmail.com>
54442         * configure.in: Remove --with-tls option.
54443         * config.h.in: Remove HAVE_TLS_SUPPORT entry.
54444         * sysdeps/i386/elf/configure.in: Always test for TLS support and err
54445         out in case it is missing.
54446         * sysdeps/ia64/elf/configure.in: Likewise.
54447         * sysdeps/powerpc/powerpc32/elf/configure.in: Likewise.
54448         * sysdeps/powerpc/powerpc64/elf/configure.in: Likewise.
54449         * sysdeps/s390/s390-32/elf/configure.in: Likewise.
54450         * sysdeps/s390/s390-64/elf/configure.in: Likewise.
54451         * sysdeps/sh/elf/configure.in: Likewise.
54452         * sysdeps/sparc/sparc32/elf/configure.in: Likewise.
54453         * sysdeps/sparc/sparc64/elf/configure.in: Likewise.
54454         * sysdeps/x86_64/elf/configure.in: Likewise.
54455         * sysdeps/mach/hurd/i386/tls.h: Remove test for HAVE_TLS_SUPPORT.
54456         * sysdeps/mach/hurd/tls.h: Likewise.
54458         [BZ #13067]
54459         * malloc/obstack.h [!GNUC] (obstack_free): Avoid cast to int.
54461         [BZ #13090]
54462         * configure.in: Fix use of AC_INIT.
54464         * elf/dl-support.c (_dl_pagesize): Initialize to EXEC_PAGESIZE.
54466 2011-09-10  Ulrich Drepper  <drepper@gmail.com>
54468         * malloc/malloc.c: Replace MALLOC_FAILURE_ACTION with use of
54469         __set_errno.
54470         * malloc/hooks.c: Likewise.
54472         [BZ #11929]
54473         * malloc/arena.c (ptmalloc_init_minimal): Removed.  Initialize all
54474         variables statically.
54475         (narenas): Initialize.
54476         (list_lock): Initialize.
54477         (ptmalloc_init): Don't call ptmalloc_init_minimal.  Remove
54478         initializtion of main_arena and list_lock.  Small cleanups.
54479         Replace all uses of malloc_getpagesize with GLRO(dl_pagesize).
54480         * malloc/malloc.c: Remove malloc_getpagesize.  Include <ldsodefs.h>.
54481         Add initializers to main_arena and mp_.
54482         (malloc_state): Remove pagesize member.  Change all users to use
54483         GLRO(dl_pagesize).
54485         * elf/rtld.c (rtld_global_ro): Initialize _dl_pagesize.
54486         * sysdeps/unix/sysv/linux/getpagesize.c: Simplify.  GLRO(dl_pagesize)
54487         is always initialized.
54489         * malloc/malloc.c: Removed unused configurations and dead code.
54490         * malloc/arena.c: Likewise.
54491         * malloc/hooks.c: Likewise.
54492         * malloc/Makefile (CPPFLAGS-malloc.c): Don't add -DATOMIC_FASTBINS.
54494         * include/tls.h: Removed.  USE___THREAD must always be defined.
54495         * bits/libc-tsd.h: Don't handle !USE___THREAD.
54496         * elf/dl-libc.c: Likewise.
54497         * elf/dl-tsd.c: Likewise.
54498         * include/errno.h: Likewise.
54499         * include/netdb.h: Likewise.
54500         * include/resolv.h: Likewise.
54501         * inet/herrno-loc.c: Likewise.
54502         * inet/herrno.c: Likewise.
54503         * malloc/arena.c: Likewise.
54504         * malloc/hooks.c: Likewise.
54505         * malloc/malloc.c: Likewise.
54506         * resolv/res-state.c: Likewise.
54507         * resolv/res_libc.c: Likewise.
54508         * sysdeps/i386/dl-machine.h: Likewise.
54509         * sysdeps/ia64/dl-machine.h: Likewise.
54510         * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
54511         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
54512         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
54513         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
54514         * sysdeps/sh/dl-machine.h: Likewise.
54515         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
54516         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
54517         * sysdeps/unix/i386/sysdep.S: Likewise.
54518         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
54519         * sysdeps/unix/sysv/linux/ia64/sysdep.S: Likewise.
54520         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise.
54521         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
54522         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
54523         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
54524         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
54525         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
54526         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
54527         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
54528         * sysdeps/unix/x86_64/sysdep.S: Likewise.
54529         * sysdeps/x86_64/dl-machine.h: Likewise.
54530         * tls.make.c: Likewise.
54532         * configure.in: Remove --with-__thread option.  Make tests for
54533         --no-whole-archive, __builtin_expect, symbol redirection, __thread,
54534         tls_model attribute fail if no support is available.  Remove
54535         USE_IN_LIBIO.
54536         * Makeconfig: Adjust for dropped configure option.  All features are
54537         now mandatory.
54538         * Makerules: Likewise.
54539         * Versions.def: Likewise.
54540         * argp/argp-fmtstream.c: Likewise.
54541         * argp/argp-fmtstream.h: Likewise.
54542         * argp/argp-help.c: Likewise.
54543         * assert/assert.c: Likewise.
54544         * config.h.in: Likewise.
54545         * config.make.in: Likewise.
54546         * configure: Likewise.
54547         * configure.in: Likewise.
54548         * csu/Versions: Likewise.
54549         * csu/init.c: Likewise.
54550         * elf/tst-audit2.c: Likewise.
54551         * elf/tst-tls10.c: Likewise.
54552         * elf/tst-tls10.h: Likewise.
54553         * elf/tst-tls11.c: Likewise.
54554         * elf/tst-tls12.c: Likewise.
54555         * elf/tst-tls14.c: Likewise.
54556         * elf/tst-tlsmod11.c: Likewise.
54557         * elf/tst-tlsmod12.c: Likewise.
54558         * elf/tst-tlsmod13.c: Likewise.
54559         * elf/tst-tlsmod13a.c: Likewise.
54560         * elf/tst-tlsmod14a.c: Likewise.
54561         * elf/tst-tlsmod15b.c: Likewise.
54562         * elf/tst-tlsmod16a.c: Likewise.
54563         * elf/tst-tlsmod16b.c: Likewise.
54564         * elf/tst-tlsmod7.c: Likewise.
54565         * elf/tst-tlsmod8.c: Likewise.
54566         * elf/tst-tlsmod9.c: Likewise.
54567         * gmon/gmon.c: Likewise.
54568         * grp/fgetgrent_r.c: Likewise.
54569         * grp/putgrent.c: Likewise.
54570         * hurd/fopenport.c: Likewise.
54571         * include/libc-symbols.h: Likewise.
54572         * include/tls.h: Likewise.
54573         * intl/gettextP.h: Likewise.
54574         * intl/loadinfo.h: Likewise.
54575         * locale/global-locale.c: Likewise.
54576         * locale/localeinfo.h: Likewise.
54577         * mach/devstream.c: Likewise.
54578         * malloc/arena.c: Likewise.
54579         * malloc/set-freeres.c: Likewise.
54580         * misc/err.c: Likewise.
54581         * misc/getttyent.c: Likewise.
54582         * misc/mntent_r.c: Likewise.
54583         * posix/getopt.c: Likewise.
54584         * posix/wordexp.c: Likewise.
54585         * pwd/fgetpwent_r.c: Likewise.
54586         * resolv/Versions: Likewise.
54587         * resolv/res_hconf.c: Likewise.
54588         * shadow/fgetspent_r.c: Likewise.
54589         * shadow/putspent.c: Likewise.
54590         * stdio-common/printf_fphex.c: Likewise.
54591         * stdio-common/tmpfile.c: Likewise.
54592         * stdlib/abort.c: Likewise.
54593         * stdlib/fmtmsg.c: Likewise.
54594         * sunrpc/auth_unix.c: Likewise.
54595         * sunrpc/clnt_perr.c: Likewise.
54596         * sunrpc/clnt_tcp.c: Likewise.
54597         * sunrpc/clnt_udp.c: Likewise.
54598         * sunrpc/clnt_unix.c: Likewise.
54599         * sunrpc/openchild.c: Likewise.
54600         * sunrpc/svc_simple.c: Likewise.
54601         * sunrpc/svc_tcp.c: Likewise.
54602         * sunrpc/svc_udp.c: Likewise.
54603         * sunrpc/svc_unix.c: Likewise.
54604         * sunrpc/xdr.c: Likewise.
54605         * sunrpc/xdr_array.c: Likewise.
54606         * sunrpc/xdr_rec.c: Likewise.
54607         * sunrpc/xdr_ref.c: Likewise.
54608         * sunrpc/xdr_stdio.c: Likewise.
54610 2011-09-09  Ulrich Drepper  <drepper@gmail.com>
54612         * sysdeps/i386/fpu/libm-test-ulps: Adjust ULPs for jn tests.
54614 2011-07-03  Andreas Jaeger  <aj@suse.de>
54616         * math/libm-test.inc (jn_test): Add tests for BZ#11589.
54617         * sysdeps/x86_64/fpu/libm-test-ulps: Add new ULPs for jn_test,
54618         regenerate with gen-libm-tests.pl.
54620 2010-05-12  Petr Baudis  <pasky@suse.cz>
54622         [BZ #11589]
54623         * sysdeps/ieee754/dbl-64/e_jn.c: Compensate major precision loss
54624         around j0() zero points by switching to j1().
54625         * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
54626         * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
54627         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
54628         * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
54630 2011-09-09  Ulrich Drepper  <drepper@gmail.com>
54632         * sysdeps/unix/bsd/bsd4.4/bits/socket.h (__cmsg_nxthdr): Use NULL
54633         instead of 0.
54634         * sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Use (void*)0
54635         instead of 0.
54636         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
54637         Patch in part by Pavel Roskin <proski@gnu.org>.
54639         [BZ #13138]
54640         * stdio-common/vfscanf.c (ADDW): Allocate large memory block with
54641         realloc.
54642         (_IO_vfscanf_internal): Remove reteof.  Use errout after setting done.
54643         Free memory block if necessary.
54645         [BZ #12847]
54646         * libio/genops.c (INTDEF): For string streams the _lock pointer can
54647         be NULL.  Don't lock in this case.
54649 2011-09-09  Roland McGrath  <roland@hack.frob.com>
54651         * elf/elf.h (ELFOSABI_GNU): New macro.
54652         (ELFOSABI_LINUX): Define to that.
54654 2011-07-29  Denis Zaitceff  <zaitceff@gmail.com>
54656         * string/strncat.c (strncat): Undef the symbol in case it has been
54657         defined in bits/string.h.
54659 2011-09-09  Ulrich Drepper  <drepper@gmail.com>
54661         * elf/sotruss.ksh: Clean up, fix, and complete help messages.
54663         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Fill in data from the real
54664         link map.
54666 2011-08-17  Andreas Jaeger  <aj@suse.de>
54668         * elf/sprof.c (load_shobj): Remove unused variable log_hashfraction.
54670 2011-08-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
54671             Ian Lance Taylor  <iant@google.com>
54673         * math/libm-test.inc (lround_test): New testcase.
54674         * sysdeps/ieee754/dbl-64/s_lround.c (__lround): Don't lose precision.
54676 2011-09-08  Ulrich Drepper  <drepper@gmail.com>
54678         * Makefile: Remove support for automatic cvs check-ins.
54679         * Makerules: Likewise.
54680         * config.make.in: Likewise.
54681         * configure.in: Likewise.
54682         * intl/Makefile: Likewise.
54683         * locale/Makefile: Likewise.
54684         * po/Makefile: Likewise.
54685         * posix/Makefile: Likewise.
54686         * sysdeps/gnu/Makefile: Likewise.
54687         * sysdeps/mach/hurd/Makefile: Likewise.
54688         * sysdeps/sparc/sparc32/Makefile: Likewise.
54690         [BZ #13118]
54691         * posix/Makefile (bug-regex32-ENV): Define.
54692         Patch by John Stanley <jpsinthemix@verizon.net>.
54694         * misc/Makefile (headers): Add bits/select2.h.
54695         * misc/sys/select.h: Include bits/select2.h for _FORTIFY_SOURCE.
54696         * misc/bits/select2.h: New file.
54697         * include/bits/select2.h: New file.
54698         * debug/Makefile (routines): Add fdelt_chk.
54699         * debug/Versions: Export __fdelt_chk and __fdelt_warn for GLIBC_2.15.
54700         * debug/tst-chk1.c (do_test): Add tests for FD_SET, FD_CLR, and
54701         FD_ISSET.
54702         * debug/fdelt_chk.c: New file.
54704         * wcsmbs/test-wcscmp.c: Moved from string/*.  Adjust.
54705         * wcsmbs/test-wmemcmp.c: Likewise.
54706         * string/Makefile (strop-tests): Remove wcscmp and wmemcmp.
54707         * wcsmbs/Makefile (strop-tests): Add wcscmp and wmemcmp.
54709 2011-09-08  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
54711         * string/Makefile (strop-tests): Add memcmp.
54712         * string/test-wmemcmp.c: New file.
54713         * string/test-memcmp.c: Add wmemcmp support.
54715 2011-09-08  Roland McGrath  <roland@hack.frob.com>
54717         [BZ #13153]
54718         * manual/libc.texinfo (EDITION, VERSION, UPDATED): Update for
54719         2011-07-19 change.
54721         * sysdeps/mach/hurd/fork.c (__fork): Initialize REFS so we don't use a
54722         garbage value in a __mach_port_mod_refs call in the cases of the
54723         task-self and thread-self ports.
54725 2011-09-06  Samuel Thibault  <samuel.thibault@ens-lyon.org>
54727         * sysdeps/mach/hurd/sys/param.h (DEV_BSIZE): New macro.
54729 2011-09-08  Andreas Schwab  <schwab@redhat.com>
54731         * elf/dl-load.c (lose): Check for non-null L.
54733 2011-09-07  Ulrich Drepper  <drepper@gmail.com>
54735         * elf/dl-load.c (open_verify): Use O_CLOEXEC.
54737         * elf/dl-libc.c (dlerror_run): Pass back error code from
54738         dl_catch_error.
54740         [BZ #13123]
54741         * elf/dl-load.c (lose): Free l_origin if it is valid.
54743         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Fix mixup in section
54744         names.
54745         * sysdeps/i386/i686/multiarch/strchr-sse2.S: Likewise.
54746         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
54747         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
54748         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
54749         * sysdeps/i386/i686/multiarch/strrchr-sse2.S: Likewise.
54750         Patch by Liubov Dmitrieva <liubov.dmitrieva@intel.com>.
54752 2011-08-01  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
54754         * sysdeps/powerpc/fpu/e_hypot.c: New file.
54755         * sysdeps/powerpc/fpu/e_hypotf.c: New file.
54756         * sysdeps/powerpc/fpu/e_rem_pio2f.c: New file.
54757         * sysdeps/powerpc/fpu/k_rem_pio2f.c: New file.
54758         * sysdeps/powerpc/fpu/k_cosf.c: New file.
54759         * sysdeps/powerpc/fpu/k_sinf.c: New file.
54760         * sysdeps/powerpc/fpu/s_cosf.c: New file.
54761         * sysdeps/powerpc/fpu/s_sinf.c: New file.
54762         * sysdeps/powerpc/fpu/s_scalbnf.c: New file.
54763         * sysdeps/powerpc/fpu/s_float_bitwise.h: New file.
54765 2011-08-15  Alan Modra  <amodra@gmail.com>
54767         [BZ #13092]
54768         * sysdeps/powerpc/Makefile (gmon): Move sysdep_routines to..
54769         * sysdeps/powerpc/powerpc64/Makefile (gmon): ..here..
54770         * sysdeps/powerpc/powerpc32/Makefile (gmon): ..and here.  Add
54771         ppc_mcount to static-only-routines.
54772         * sysdeps/powerpc/powerpc32/Versions: Export GLIBC_PRIVATE
54773         __mcount_internal.
54774         * sysdeps/powerpc/powerpc32/ppc-mcount.S (_mcount): Call
54775         __mcount_internal with usual JUMPTARGET.  Remove useless nop.
54777 2011-08-18  David Flaherty  <flaherty@linux.vnet.ibm.com>
54779         * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: New file which checks
54780         for finite and infinity parameters.
54782 2011-08-04  Will Schmidt  <will_schmidt@vnet.ibm.com>
54784         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Adjust the alignment
54785         and add nop instructions for throughput optimization.
54786         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
54788 2011-07-28  Will Schmidt  <will_schmidt@vnet.ibm.com>
54790         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Optimize the
54791         aligned copy for power7 with vector-scalar instructions.
54792         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Likewise.
54794 2011-07-24  H.J. Lu  <hongjiu.lu@intel.com>
54796         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Simplify
54797         AVX check.
54799 2011-09-07  Andreas Schwab  <schwab@redhat.com>
54801         [BZ #13144]
54802         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semdid_ds): Revert
54803         last change.
54805 2011-09-07  Ulrich Drepper  <drepper@gmail.com>
54807         * sysdeps/unix/sysv/linux/x86_64/init-first.c
54808         (_libc_vdso_platform_setup): If vDSO is not present store pointer to
54809         syscall wrapper around clock_gettime in __vdso_clock_gettime.
54810         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Add entry for
54811         clock_gettime.
54813 2011-09-06  Ulrich Drepper  <drepper@gmail.com>
54815         * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c (INTERNAL_GETTIME):
54816         Forgot to demangle the pointer.
54818         * sysdeps/i386/sysdep.h: Define atom_text_section.
54819         * sysdeps/x86_64/sysdep.h: Likewise.
54820         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Place function in
54821         section with atom_text_section.
54822         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
54823         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
54824         * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: Likewise.
54825         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Likewise.
54826         * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S: Likewise.
54828         * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c: New file.
54829         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSCALL_GETTIME): Allow
54830         already be defined.  Change to take two parameters and don't assign
54831         result to variable.  Adjust all users.
54832         Define INTERNAL_GETTIME if not already defined.
54833         Use INTERNAL_GETTIME instead of INTERNAL_VSYSCALL got clock_gettime
54834         call.
54835         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Don't define
54836         HAVE_CLOCK_GETTIME_VSYSCALL.
54837         * sysdeps/unix/clock_gettime.c: Adjust use of SYSDEP_GETTIME_CPU.
54839         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Don't use
54840         gettimeofday vsyscall, just use time.
54842 2011-09-06  Andreas Schwab  <schwab@redhat.com>
54844         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c [!SHARED]: Include
54845         <errno.h>.
54847 2011-09-06  Ulrich Drepper  <drepper@gmail.com>
54849         * sysdeps/unix/sysv/linux/kernel-features.h: Add entry for getcpu
54850         syscall on x86-64.
54851         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c [!SHARED]: Use real
54852         syscall.
54853         * sysdeps/unix/sysv/linux/x86_64/time.c: Likewise.
54854         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S [!SHARED]: Use real
54855         syscall if possible.
54857 2011-09-05  Ulrich Drepper  <drepper@gmail.com>
54859         * elf/pldd.c (get_process_info): Don't read whole ELF header, just
54860         e_ident.  Don't pass to find_mapsXX.
54861         * elf/pldd-xx.c (find_mapsXX): Remove second parameter.
54863 2011-07-20  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
54865         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
54866         strchr-sse2-no-bsf strrchr-sse2-no-bsf
54867         * sysdeps/x86_64/multiarch/strchr.S: Update.
54868         Check bit_slow_BSF bit.
54869         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
54870         * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: New file.
54871         * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S: New file.
54873 2011-09-05  Ulrich Drepper  <drepper@gmail.com>
54875         [BZ #13134]
54876         * sysdeps/posix/spawni.c (script_execute): Define only for compatibility
54877         before glibc 2.15.
54878         (tryshell): Define.
54879         (__spawni): Change last parameter to be flag.  Test
54880         SPAWN_XFLAGS_USE_PATH flag to use path or not.
54881         Don't try to use shell unless SPAWN_XFLAGS_TRY_SHELL is set.
54882         * sysdeps/mach/hurd/spawni.c: Change last parameter and adjust user.
54883         * posix/spawni.c: Likewise.
54884         * posix/spawn.c: Add compat version which passed SPAWN_XFLAGS_TRY_SHELL.
54885         * posix/spawnp.c: Likewise.  Change normal version to use
54886         SPAWN_XFLAGS_USE_PATH.
54887         * posix/spawn_int.c: Define SPAWN_XFLAGS_USE_PATH and
54888         SPAWN_XFLAGS_TRY_SHELL.
54890         [BZ #13150]
54891         * posix/glob.h: Remove gcc 1.x support.
54893         [BZ #13068]
54894         * elf/dl-misc.c (_dl_sysdep_read_whole_file): Use O_CLOEXEC.
54896 2011-07-20  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
54898         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
54899         strchr-sse2 strrchr-sse2 strchr-sse2-bsf
54900         strrchr-sse2-bsf
54901         * sysdeps/i386/i686/multiarch/strchr.S: New file.
54902         * sysdeps/i386/i686/multiarch/strrchr.S: New file.
54903         * sysdeps/i386/i686/multiarch/strchr-sse2.S: New file.
54904         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: New file.
54905         * sysdeps/i386/i686/multiarch/strrchr-sse2.S: New file.
54906         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: New file.
54908 2011-08-29  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
54910         * sysdeps/x86_64/wcscmp.S: New file.
54912         * sysdeps/i386/i686/multiarch/Makefile: (sysdep_routines): Add
54913         wcscmp-c wcscmp-sse2
54914         * sysdeps/i386/i686/multiarch/wcscmp-c.c: New file.
54915         * sysdeps/i386/i686/multiarch/wcscmp.S: New file.
54916         * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: New file.
54917         * wcsmbs/wcscmp.c: Allow renaming.
54919 2011-09-05  David S. Miller  <davem@davemloft.net>
54921         * sysdeps/sparc/sparc32/fpu/s_fabsf.S: Use first argument
54922         stack slot, rather than the struct return pointer slot.
54923         * sysdeps/sparc/sparc32/fpu/s_fabs.c: Delete.
54924         * sysdeps/sparc/sparc32/fpu/s_fabs.S: New file.
54925         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S: Likewise.
54926         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/fpu/Implies: Likewise.
54928 2011-09-05  Ulrich Drepper  <drepper@gmail.com>
54930         * po/ja.po: Update from translation team.
54932         [BZ #13144]
54933         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semdid_ds): Fix to match
54934         kernel in 64-bit binaries.
54936 2011-09-01  David S. Miller  <davem@davemloft.net>
54938         * elf/elf.h (HWCAP_SPARC_*): Move to..
54939         * sysdeps/sparc/sysdep.h: this new file and add new values.
54940         * sysdeps/unix/sparc/sysdep.h: Include sysdeps/sparc/sysdep.h
54941         * sysdeps/sparc/dl-procinfo.h: Include sysdep.h and increase
54942         _DL_HWCAP_COUNT to 24.
54943         * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add new
54944         entries.
54945         * sysdeps/sparc/sparc32/bits/atomic.h: Don't use magic local
54946         __ATOMIC_HWCAP_SPARC_V9 define, use sysdep.h one instead.
54947         * sysdeps/sparc/sparc32/dl-machine.h: Include sysdep.h
54948         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Use HWCAP_SPARC_*
54949         instead of magic constants.
54950         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
54952 2011-08-31  David S. Miller  <davem@davemloft.net>
54954         * sysdeps/unix/sparc/sysdep.h (SETUP_PIC_REG): Define.
54955         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h (PSEUDO):
54956         Reimplement to do errno handling inline.
54957         (SYSCALL_ERROR_HANDLER): New macro.
54958         (__SYSCALL_STRING): Do not do errno handling in asm.
54959         (__CLONE_SYSCALL_STRING): Delete.
54960         (__INTERNAL_SYSCALL_STRING): Delete.
54961         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Include
54962         sysdeps/unix/sparc/sysdep.h instead of sysdeps/unix/sysdep.h
54963         (PSEUDO): Reimplement to do errno handling inline.
54964         (ret, ret_NOERRNO, ret_ERRVAL, r0, r1, MOVE): Don't redefine.
54965         (SYSCALL_ERROR_HANDLER): New macro.
54966         (__SYSCALL_STRING): Do not do errno handling in asm.
54967         (__CLONE_SYSCALL_STRING): Delete.
54968         (__INTERNAL_SYSCALL_STRING): Delete.
54969         * sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL):
54970         Implement in terms of INTERNAL_SYSCALL and __set_errno, just like
54971         i386.
54972         (INTERNAL_SYSCALL_DECL): Declare %g1 var for err state.
54973         (inline_syscall*): Add 'err' argument.
54974         (INTERNAL_SYSCALL, INTERNAL_SYSCALL_NCS,
54975         INTERNAL_SYSCALL_ERROR_P): Likewise and pass it down.
54976         (INLINE_CLONE_SYSCALL): Reimplement in terms of __SYSCALL_STRING,
54977         INTERNAL_SYSCALL_ERRNO, and INTERNAL_SYSCALL_ERROR_P.
54979         * scripts/data/localplt-sparc-linux-gnu.data: Remove 'ffs'.
54980         * scripts/data/localplt-sparc64-linux-gnu.data: Likewise.
54982 2011-08-30  Andreas Schwab  <schwab@redhat.com>
54984         * elf/rtld.c (dl_main): Relocate objects in dependency order.
54986 2011-08-29  Jiri Olsa <jolsa@redhat.com>
54988         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Fix cfi
54989         directive.
54991 2011-08-24  David S. Miller  <davem@davemloft.net>
54993         * sysdeps/sparc/sparc64/strcmp.S: Rewrite.
54995 2011-08-24  Andreas Schwab  <schwab@redhat.com>
54997         * elf/Makefile: Add rules to build and run unload8 test.
54998         * elf/unload8.c: New file.
54999         * elf/unload8mod1.c: New file.
55000         * elf/unload8mod1x.c: New file.
55001         * elf/unload8mod2.c: New file.
55002         * elf/unload8mod3.c: New file.
55004         * elf/dl-close.c (_dl_close_worker): Reset private search list if
55005         it wasn't used.
55007 2011-08-23  David S. Miller  <davem@davemloft.net>
55009         * sysdeps/sparc/sparc64/dl-machine.h (DL_STACK_END): Do not
55010         subtract stack bias.
55011         * sysdeps/sparc/sparc64/jmpbuf-unwind.h (_JMPBUF_UNWINDS): Use
55012         %sp not %fp in calculations.
55013         (_JMPBUF_UNWINDS_ADJ): Likewise.
55015         * sysdeps/pthread/aio_suspend.c (do_aio_misc_wait): New function.
55016         (aio_suspend): Call it to force an exception region around the
55017         AIO_MISC_WAIT() invocation.
55019 2011-08-23  Andreas Schwab  <schwab@redhat.com>
55021         * sysdeps/i386/i686/multiarch/strspn.S (ENTRY): Add missing
55022         backslash.
55024 2011-07-04  Aurelien Jarno  <aurelien@aurel32.net>
55026         * sysdeps/powerpc/dl-tls.h: Add _PPC_DL_TLS_H inclusion
55027         protection macro.
55028         * sysdeps/powerpc/powerpc64/dl-irel.h: Include <ldsodefs.h>
55029         and <dl-machine.h>.
55030         (Elf64_FuncDesc): Remove.
55032 2011-08-22  David S. Miller  <davem@davemloft.net>
55034         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Fix
55035         sigaltstack check, add missing cfi directives.
55036         * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Add
55037         missing cfi directives, and sigaltstack handling.
55039 2011-08-16  Andreas Schwab  <schwab@redhat.com>
55041         [BZ #11724]
55042         * elf/dl-deps.c (_dl_map_object_deps): Only assume cycle when
55043         object is seen twice.
55044         * elf/dl-fini.c (_dl_sort_fini): Likewise.
55046         * elf/Makefile (distribute): Add tst-initorder2.c.
55047         (tests): Add tst-initorder2.
55048         (modules-names): Add tst-initorder2a tst-initorder2b
55049         tst-initorder2c tst-initorder2d.  Add rules to build them.
55050         ($(objpfx)tst-initorder2.out): New rule.
55051         * elf/tst-initorder2.c: New file.
55052         * elf/tst-initorder2.exp: New file.
55054 2011-08-22  Andreas Schwab  <schwab@redhat.com>
55056         * sysdeps/unix/sysv/linux/i386/scandir64.c: Include <string.h>.
55058         * elf/dl-deps.c (_dl_map_object_deps): Move check for missing
55059         dependencies back to end of function.
55061         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Readd
55062         $(elfobjdir)/ld.so.
55064 2011-08-21  Ulrich Drepper  <drepper@gmail.com>
55066         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S: Removed.
55067         * sysdeps/unix/sysv/linux/x86_64/time.S: Removed.
55068         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c: New file.
55069         * sysdeps/unix/sysv/linux/x86_64/time.c: New file.
55070         * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Remove declaration
55071         of __vdso_gettimeofday.
55072         * sysdeps/unix/sysv/linux/x86_64/init-first.c: Remove definition of
55073         __vdso_gettimeofday and __vdso_time.  Define __vdso_getcpu with
55074         attribute_hidden.
55075         (_libc_vdso_platform_setup): Remove initialization of
55076         __vdso_gettimeofday and __vdso_time.
55078 2011-08-20  Ulrich Drepper  <drepper@gmail.com>
55080         * nss/nss_files/files-alias.c (get_next_alias): Use feof_unlocked
55081         and fgetc_unlocked.
55082         * nss/nss_files/files-key.c (search): Use fgets_unlocked and
55083         getc_unlocked.
55085         * elf/dl-open.c (add_to_global): Report additions to the global scope
55086         for LD_DEBUG=scopes.
55087         (dl_open_worker): Also print scope of newly loaded dependencies.
55088         (_dl_show_scope): Indicate if there is no scope.
55090         [BZ #13114]
55091         * stdio-common/Makefile (tests): Add bug24.
55092         * stdio-common/bug24.c: New file.
55094 2011-08-19  Andreas Jaeger  <aj@suse.de>
55096         [BZ #13114]
55097         * libio/fileops.c (_IO_new_file_fopen): Fix handling of
55098         non-existant file when using close-on-exec mode.
55100 2011-08-20  Ulrich Drepper  <drepper@gmail.com>
55102         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_resolve): Fix CFI for
55103         the very first instruction.
55105         * sysdeps/x86_64/dl-trampoline.h: If MORE_CODE is defined, restore
55106         the CFI state in the end.
55107         * sysdeps/x86_64/dl-trampoline.S: Define MORE_CODE before first
55108         inclusion of dl-trampoline.h.
55109         Based on a patch by Jiri Olsa <jolsa@redhat.com>.
55111 2011-08-19  Andreas Schwab  <schwab@redhat.com>
55113         * sysdeps/powerpc/fpu/libm-test-ulps: Relax ctan (0.75 + 1.25 i)
55114         expectations for long double.
55116         * sysdeps/unix/sysv/linux/powerpc/powerpc32/scandir64.c: Renamed
55117         from sysdeps/unix/sysv/linux/powerpc/scandir64.c.
55119 2011-08-14  David S. Miller  <davem@davemloft.net>
55121         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-tst-writev.c): The
55122         artificual limit depends upon the system page size.
55124 2011-08-17  Ulrich Drepper  <drepper@gmail.com>
55126         * Makeconfig (override CFLAGS): Add library-specific CFLAGS.
55127         * resolv/Makefile: Define CFLAGS-libresolv.
55129 2011-08-17  Andreas Schwab  <schwab@redhat.com>
55131         * nss/makedb.c (compute_tables): Make variables used in nested
55132         function static.
55134 2011-08-17  Ulrich Drepper  <drepper@gmail.com>
55136         * elf/pldd-xx.c (r_debug): Explicitly add padding when needed.
55137         * elf/pldd.c (get_process_info): Use pread to re-read auxiliary vector
55138         if buffer was too small.
55140         * elf/pldd.c (main): Attach to all threads in the process.
55141         Rewrite /proc handling to use *at functions.
55143 2011-08-16  Ulrich Drepper  <drepper@gmail.com>
55145         * elf/dl-open.c (_dl_show_scope): Take additional parameter which
55146         specifies first scope to show.
55147         (dl_open_worker): Update callers.  Move printing scope of new
55148         object to before the relocation.
55149         * elf/rtld.c (dl_main): Update _dl_show_scope call.
55150         * sysdeps/generic/ldsodefs.h: Update declaration.
55152         * elf/dl-open.c (_dl_show_scope): Use _dl_debug_printf to generate the
55153         string for the scope number.
55155 2011-08-14  Ulrich Drepper  <drepper@gmail.com>
55157         * nscd/servicescache.c (cache_addserv): Make sure written is always
55158         initialized.
55160 2011-08-14  Roland McGrath  <roland@hack.frob.com>
55162         * sysdeps/i386/i486/bits/atomic.h
55163         (__arch_compare_and_exchange_val_64_acq): Use RET alone at end of
55164         statement expression, so as to suppress "set but not used" warning.
55165         (__arch_c_compare_and_exchange_val_64_acq): Likewise.
55167         * string/strncat.c (STRNCAT): Use prototype definition.
55169         * locale/Makefile (locale-CPPFLAGS): Renamed CPPFLAGS-locale-programs.
55170         (locale-CPPFLAGS): New variable; put LOCALEDIR, LOCALE_ALIAS_PATH and
55171         -Iprograms here.
55172         (cppflags-iterator.mk sequence): Use locale-programs in place of nonlib.
55173         (localedef-modules): Add localedef.
55174         (locale-modules): Add locale.
55176         * sysdeps/generic/ldsodefs.h (struct unique_sym): Add a const.
55177         * elf/rtld.c (dl_main): Invert order of assignment in last change,
55178         to avoid a warning.
55180 2011-08-14  David S. Miller  <davem@davemloft.net>
55182         * sysdeps/unix/sysv/linux/sparc/bits/resource.h (RLIM_INFINITY,
55183         RLIM64_INFINITY): Fix 64-bit values for 32-bit sparc.
55185 2011-08-13  Ulrich Drepper  <drepper@gmail.com>
55187         * elf/dl-open.c: Rename show_scope to _dl_show_scope and export.
55188         (dl_open_worker): Call _dl_show_scope when DL_DEBUG_SCOPES is set.
55189         * elf/rtld.c (dl_main): Set l_name of vDSO.
55190         Call _dl_show_scope when DL_DEBUG_SCOPES.
55191         (process_dl_debug): Recognize scopes flag and also set it for all.
55192         * sysdeps/generic/ldsodefs.h: Define DL_DEBUG_SCOPES.
55193         Declare _dl_show_scope.
55195         * elf/dl-libc.c (do_dlopen_args): Add caller_dlopen.
55196         (do_dlopen): Pass caller_dlopen to dl_open.
55197         (__libc_dlopen_mode): Initialize caller_dlopen.
55199         * intl/l10nflist.c (_nl_normalize_codeset): Make it compile outside
55200         of libc.  Make tolower call locale-independent.  Optimize a bit by
55201         using isdigit instead of isalnum.
55202         * locale/Makefile (locale-CPPFLAGS): Add -DNOT_IN_libc.
55204 2011-08-12  Ulrich Drepper  <drepper@gmail.com>
55206         * elf/dl-load.c (_dl_map_object): Show in debug output whether a DSO
55207         was a dependency or dynamically loaded.
55209 2011-08-11  Ulrich Drepper  <drepper@gmail.com>
55211         * intl/l10nflist.c: Allow architecture-specific pop function.
55212         * sysdeps/x86_64/l10nflist.c: New file.
55214         * intl/l10nflist.c (_nl_make_l10nflist): Use locale-independent
55215         classification.
55217 2011-08-10  Andreas Schwab  <schwab@redhat.com>
55219         * include/dirent.h: Add libc_hidden_proto for scandirat and
55220         scandirat64.  Don't declare __scandirat64.
55221         * dirent/scandirat.c: Add libc_hidden_def.
55222         * dirent/scandirat64.c (SCANDIRAT): Remove underscores.
55223         * sysdeps/unix/sysv/linux/i386/scandir64.c (SCANDIRAT): Likewise.
55225 2011-08-10  David S. Miller  <davem@davemloft.net>
55227         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Add missing comma in
55228         enum.
55229         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
55230         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
55231         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
55233 2011-08-09  Ulrich Drepper  <drepper@gmail.com>
55235         * Versions.def [libc]: Add GLIBC_2.15.
55236         * dirent/Makefile (routines): Add scandirat and scandirat64.
55237         * dirent/Versions [libc]: Export scandirat and scandirat64 for
55238         GLIBC_2.15.
55239         * dirent/dirent.h: Declare scandirat and scandirat64.
55240         * dirent/scandirat.c: New file.
55241         * dirent/scandirat64.c: New file.
55242         * sysdeps/wordsize-64/scandirat.c: New file.
55243         * sysdeps/wordsize-64/scandirat64.c: New file.
55244         * dirent/opendir.c: Define opendirat.
55245         * dirent/scandir.c: Move code to scandirat.c.  Implement scandir
55246         using scandirat.
55247         * dirent/scandir64.c: Adjust for scandir.c change.
55248         * include/dirent.h: Define scandir_cancel_struct.  Declare __opendirat,
55249         __scandirat64, and __scandir_cancel_handler.
55250         * sysdeps/unix/opendir.c: Rename __opendir to __opendirat.  Take
55251         additional parameter and use openat instead of open (outside of ld.so).
55252         Add new __opendir as wrapper around __opendirat.
55253         * sysdeps/unix/sysv/linux/i386/scandir64.c: Reimplement __old_scandir64
55254         here without requiring old scandirat implementation.
55256 2011-08-08  Ulrich Drepper  <drepper@gmail.com>
55258         * dirent/scandir.c (cancel_handler): Renamed to
55259         __scandir_cancel_handler.  Do not define if SKIP_SCANDIR_CANCEL is
55260         defined.  Adjust users.
55261         * dirent/scandir64.c: Define SKIP_SCANDIR_CANCEL.
55262         * sysdeps/unix/sysv/linux/i386/scandir64.c: Likewise.
55264 2011-08-04  Ulrich Drepper  <drepper@gmail.com>
55266         * string/test-string.h (IMPL): Use __STRING to expand name and then
55267         stringify it.
55269         * string/test-strcmp.c: Unify most of the WIDE and !WIDE code.  Lots
55270         of cleanups.
55272 2011-07-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
55274         * string/Makefile: Update.
55275         (strop-tests): Append strncat.
55276         * string/test-wcscmp.c: New file.
55277         New comprehensive test for wcscmp.
55278         * string/test-strcmp.c: Update.
55279         (WIDE): New define.
55281 2011-07-22  Andreas Schwab  <schwab@redhat.com>
55283         * resolv/res_init.c (__res_vinit): Properly tokenize nameserver
55284         line.
55286 2011-07-26  Andreas Schwab  <schwab@redhat.com>
55288         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't discard result of
55289         encoding to ACE if AI_IDN.
55291 2011-08-01  Jakub Jelinek  <jakub@redhat.com>
55293         * sysdeps/ieee754/dbl-64/k_rem_pio2.c (__kernel_rem_pio2): Fix up fq
55294         to y conversion for prec 3 and __FLT_EVAL_METHOD__ != 0.
55296 2011-07-22  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
55298         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Update.
55299         Fix overflow bug in strncat.
55300         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Likewise.
55302         * string/test-strncat.c: Update.
55303         Add new tests for checking overflow bugs.
55305 2011-07-15  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
55307         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
55308         strcat-ssse3 strcat-sse2 strncat-ssse3 strncat-sse2 strncat-c.
55309         * sysdeps/i386/i686/multiarch/strcat.S: New file.
55310         * sysdeps/i386/i686/multiarch/strcat-c.c: New file.
55311         * sysdeps/i386/i686/multiarch/strcat-sse2.S: New file.
55312         * sysdeps/i386/i686/multiarch/strcat-ssse3.S: New file.
55313         * sysdeps/i386/i686/multiarch/strncat.S: New file.
55314         * sysdeps/i386/i686/multiarch/strncat-sse2.S: New file.
55315         * sysdeps/i386/i686/multiarch/strncat-ssse3.S: New file.
55317         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S
55318         (USE_AS_STRCAT): Define.
55319         Add strcat and strncat support.
55320         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
55322 2011-07-25  Andreas Schwab  <schwab@redhat.com>
55324         * sysdeps/i386/i486/bits/string.h (__strncat_g): Correctly handle
55325         __n bigger than INT_MAX+1.
55326         (__strncmp_g): Likewise.
55328 2011-07-23  Ulrich Drepper  <drepper@gmail.com>
55330         * posix/unistd.h: Define SEEK_DATA and SEEK_HOLE.
55331         * libio/stido.h: Likewise.
55333         * sysdeps/unix/sysv/linux/bits/socket.h (PF_NFC): Define.
55334         (AF_NFC): Define.
55335         * sysdeps/unix/sysv/linux/sparc/bits/socket.h (PF_NFC): Define.
55336         (AF_NFC): Define.
55338         * sysdeps/unix/sysv/linux/sys/ptrace.h: Add new constants.
55339         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
55340         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
55341         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
55342         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
55344         [BZ #13021]
55345         * scripts/test-installation.pl: Don't expect libnss_test1 to be
55346         installed.
55348         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix one more
55349         typo.
55350         (_dl_x86_64_save_sse): Likewise.
55352 2011-07-22  Ulrich Drepper  <drepper@gmail.com>
55354         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix test for
55355         OSXSAVE.
55356         (_dl_x86_64_save_sse): Likewise.
55358         * crypt/crypt_util.c (__init_des_r): Optimize memset calls.
55360         * crypt/crypt_util.c (__init_des_r): Add read barrier as well.
55362 2011-07-21  Andreas Schwab  <schwab@redhat.com>
55364         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix last
55365         change.
55366         (_dl_x86_64_save_sse): Use correct AVX check.
55368 2011-07-21  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
55370         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Fix overfow
55371         bug in strncpy/strncat.
55372         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Likewise.
55374 2011-07-21  Ulrich Drepper  <drepper@gmail.com>
55376         * string/tester.c (test_strcat): Add tests for different alignments
55377         of source and destination.
55378         (test_strncat): Likewise.
55380 2011-07-20  Ulrich Drepper  <drepper@gmail.com>
55382         [BZ #12852]
55383         * posix/glob.c (glob): Check passed in values before using them in
55384         expressions to avoid some overflows.
55385         (glob_in_dir): Likewise.
55387         [BZ #13007]
55388         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): More complete
55389         check for AVX enablement so that we don't crash with old kernels and
55390         new hardware.
55391         * elf/tst-audit4.c: Add same checks here.
55392         * elf/tst-audit6.c: Likewise.
55394         * sysdeps/x86_64/bits/link.h (La_x86_64_ymm): Force 16-byte alignment.
55396 2011-07-09  Andreas Schwab  <schwab@linux-m68k.org>
55398         * sysdeps/unix/sysv/linux/pathconf.c: Include <string.h>.
55400 2011-07-20  Ulrich Drepper  <drepper@gmail.com>
55402         * po/cs.po: Update from translation team.
55403         * po/bg.po: Likewise.
55405 2011-07-12  Marek Polacek  <mpolacek@redhat.com>
55407         * misc/sys/cdefs.h: Add support for const attribute.
55408         * sysdeps/unix/sysv/linux/sys/sysmacros.h: Add __attribute_const__
55409         to gnu_dev_{major,minor,makedev} functions.
55411 2011-07-20  Marek Polacek  <mpolacek@redhat.com>
55413         * intl/dcigettext.c (get_output_charset): Add missing bracket.
55415 2011-07-20  Andreas Schwab  <schwab@redhat.com>
55417         * resolv/res_query.c (__libc_res_nquerydomain): Use size_t for
55418         strlen results.
55420 2011-07-13  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
55422         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h
55423         (INTERNAL_VSYSCALL_NCS): Use r10 for backing up the return address
55424         register in order to avoid conflicts with the soft frame pointer
55425         being held in r11 when necessary.
55426         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h
55427         (INTERNAL_VSYSCALL_NCS): Likewise.
55429 2011-07-14  Marek Polacek  <mpolacek@redhat.com>
55431         * elf/dl-fini.c (_dl_sort_fini): Remove unused link_map *l argument,
55432         * elf/dl-fini.c (_dl_fini): Adjust caller.
55433         * elf/dl-close.c (_dl_close_worker): Likewise.
55434         * sysdeps/generic/ldsodefs.h: Adjust declaration.
55436 2011-07-15  Marek Polacek  <mpolacek@redhat.com>
55438         * elf/cache.c (load_aux_cache): Remove unnecessary condition of
55439         "aux_cache->nlibs < 0".
55441         * nscd/nscd_conf.c (nscd_parse_file): Remove unnecessary condition
55442         in the reload-count case.
55444 2011-07-15  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
55446         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
55447         strcat-ssse3 strcat-sse2-unaligned strncat-ssse3
55448         strncat-sse2-unaligned strncat-c strlen-sse2-pminub
55449         * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: New file.
55450         * sysdeps/x86_64/multiarch/strcat.S: New file.
55451         * sysdeps/x86_64/multiarch/strncat.S: New file.
55452         * sysdeps/x86_64/multiarch/strncat-c.c: New file.
55453         * sysdeps/x86_64/multiarch/strcat-ssse3.S: New file.
55454         * sysdeps/x86_64/multiarch/strncat-sse2-unaligned.S: New file.
55455         * sysdeps/x86_64/multiarch/strncat-ssse3.S: New file.
55456         * sysdeps/x86_64/multiarch/strcpy-ssse3.S
55457         (USE_AS_STRCAT): Define.
55458         Add strcat and strncat support.
55459         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Likewise.
55460         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
55461         * sysdeps/x86_64/multiarch/strlen-sse2-pminub.S: New file.
55462         * string/strncat.c: Update.
55463         (USE_AS_STRNCAT): Define.
55464         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
55465         Turn on bit_Prefer_PMINUB_for_stringop for Intel Core i3, i5
55466         and i7.
55467         * sysdeps/x86_64/multiarch/init-arch.h
55468         (bit_Prefer_PMINUB_for_stringop): New.
55469         (index_Prefer_PMINUB_for_stringop): Likewise.
55470         * sysdeps/x86_64/multiarch/strlen.S (strlen): Check
55471         bit_Prefer_PMINUB_for_stringop.
55473 2011-07-19  Ulrich Drepper  <drepper@gmail.com>
55475         * crypt/sha512.h (struct sha512_ctx): Move buffer into union and add
55476         buffer64.
55477         * crypt/sha512.c (__sha512_finish_ctx): Use buffer64 for writes instead
55478         of casting of buffer.
55479         * crypt/sha256.h (struct sha256_ctx): Move buffer into union and add
55480         buffer32 and buffer64.
55481         * crypt/sha256.c (__sha256_finish_ctx): Use buffer32 or buffer64 for
55482         writes instead of casting of buffer.
55483         * crypt/md5.h (struct md5_ctx): Move buffer into union and add
55484         buffer32.
55485         * crypt/md5.c (md5_finish_ctx): Use buffer32 for writes instead of
55486         casting of buffer.
55488 2011-07-19  Andreas Schwab  <schwab@redhat.com>
55490         * string/strxfrm_l.c (STRXFRM): Fix alloca accounting.
55492 2011-07-19  Ulrich Drepper  <drepper@gmail.com>
55494         * nscd/nscd.c (termination_handler): Don't do anything for a database
55495         if it has not yet been initialized.
55497 2011-07-18  Ulrich Drepper  <drepper@gmail.com>
55499         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_EQUAL_S): Fix a typo.
55501 2011-07-15  Marek Polacek  <mpolacek@redhat.com>
55503         * bits/sched.h (__CPU_EQUAL_S): Fix a typo.
55505 2011-07-18  Ulrich Drepper  <drepper@gmail.com>
55507         * po/nl.po: Update from translation team.
55508         * po/sv.po: Likewise.
55510 2011-07-16  Roland McGrath  <roland@hack.frob.com>
55512         * sysdeps/i386/Makefile: Never use -mpreferred-stack-boundary=2,
55513         now disallowed by GCC.
55515         * configure.in (use-default-link): Default to yes if a test -shared
55516         link meets our qualifications.
55517         * configure: Regenerated.
55519         * config.make.in (output-format): New variable.
55520         * configure.in: Check for ld --print-output-format support.
55521         * configure: Regenerated.
55522         * Makerules ($(common-objpfx)format.lds)
55523         [$(output-format) != unknown]: Just use $(output-format),
55524         instead of the linker-script munging.
55526 2011-07-14  Roland McGrath  <roland@hack.frob.com>
55528         * Makefile ($(common-objpfx)linkobj/libc.so): Use $(shlib-lds) instead
55529         of $(common-objpfx)shlib.lds.
55530         * elf/Makefile ($(objpfx)sotruss-lib.so): Likewise.
55532         * sysdeps/i386/i686/multiarch/strstr-c.c (libc_hidden_builtin_def):
55533         Conditionalize redefinition on [SHARED && DO_VERSIONING && !NO_HIDDEN].
55535         * configure.in (-z relro check): Adjust test code to add a large
55536         writable data section after it.
55537         * configure: Regenerated.
55539 2011-07-11  Roland McGrath  <roland@hack.frob.com>
55541         * configure.in (-z relro check): Fix test code to make the variable
55542         truly const.
55543         * configure: Regenerated.
55545 2011-07-11  Ulrich Drepper  <drepper@gmail.com>
55547         * nscd/nscd.h (struct traced_file): Define.
55548         (struct database_dyn): Remove inotify_descr, reset_res, and filename
55549         elements.  Add traced_files.
55550         (inotify_fd): Declare.
55551         (register_traced_file): Declare.
55552         * nscd/connections.c (dbs): Remove reset_res and filename initializers.
55553         (inotify_fd): Export.
55554         (resolv_conf_descr): Remove.
55555         (nscd_init): Move inotify descriptor creation to main.
55556         Don't register files for notification here.
55557         (register_traced_file): New function.
55558         (invalidate_cache): Don't use reset_res to determine whether to call
55559         res_init, go through the list of registered files.
55560         (main_loop_poll): The inotify descriptors are now stored in the
55561         structures for the traced files.
55562         (main_loop_epoll): Likewise
55563         * nscd/nscd.c (main): Create inotify socket here.  Pass extra argument
55564         to __nss_disable_nscd.
55565         * nscd/cache.c (prune_cache): There is no single inotify descriptor
55566         for a database anymore.  Check the records for all the registered
55567         files instead.
55568         * nss/Makefile (libnss_files-routines): Add files-init.
55569         (libnss_db-routines): Add db-init.
55570         * nss/Versions [libnss_files] (GLIBC_PRIVATE): Add _nss_files_init.
55571         [libnss_db] (GLIBC_PRIVATE): Add _nss_db_init.
55572         * nss/nss_db/db-init.c: New file.
55573         * nss/nss_files/files-init.c: New file.
55574         * nss/nsswitch.c (nss_load_library): New function.  Broken out of
55575         __nss_lookup_function.
55576         (__nss_lookup_function): Call nss_load_library.
55577         (nss_load_all_libraries): New function.
55578         (__nss_disable_nscd): Take parameter with callback function for files
55579         to register.  Set is_nscd.  Load all the DSOs for the NSS modules
55580         used for the cached services.
55581         * nss/nsswitch.h (__nss_disable_nscd): Adjust prototype.
55582         * sysdeps/unix/sysv/linux/Makefile [subdir=nscd]: Pass the various -D
55583         options for features to all the files in nscd.
55585         * nss/nsswitch.c (nss_parse_file): Add missing fclose.
55587 2011-07-10  Roland McGrath  <roland@hack.frob.com>
55589         * csu/elf-init.c (__libc_csu_init): Comment typo.
55591 2011-07-09  Ulrich Drepper  <drepper@gmail.com>
55593         * po/pl.po: Update from translation team.
55594         * po/ja.po: Likewise.
55595         * po/ru.po: Likewise.
55596         * po/ko.po: Likewise.
55597         * po/fr.po: Likewise.
55599 2011-07-09  Roland McGrath  <roland@hack.frob.com>
55601         * configure.in (.ctors/.dtors header and trailer check):
55602         Use an empirical test on a built program.
55603         * configure: Regenerated.
55605         * configure.in (-z relro check): Use an empirical test on a built DSO.
55606         Detect, but do not require, on ia64.
55607         * configure: Regenerated.
55609         * configure.in (READELF): Find it with AC_CHECK_TOOL.
55610         Update tests that use readelf to use $READELF instead.
55611         * configure: Regenerated.
55613 2011-07-08  Ulrich Drepper  <drepper@gmail.com>
55615         * malloc/hooks.c (memalign_check): Avoid using checked_request2size
55616         if the result is not used.
55618 2011-07-05  Andreas Jaeger  <aj@suse.de>
55620         [BZ#9696]
55621         * stdlib/tst-strtod.c: Add testcase.
55623 2011-07-07  Ulrich Drepper  <drepper@gmail.com>
55625         * sysdeps/unix/sysv/linux/pathconf.c (distinguish_extX): New function.
55626         (__statfs_link_max): Use it to distinguish between ext2/3 and ext4.
55627         The latter has a higher limit.  Take additional parameter to pass to
55628         the new function.
55629         (__pathconf): Pass file to __statfs_link_max.
55630         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Pass fd to
55631         __statfs_link_max.
55632         * sysdeps/unix/sysv/linux/pathconf.h: Adjust prototype of
55633         __statfs_link_max.
55635         [BZ #12868]
55636         * sysdeps/unix/sysv/linux/linux_fsinfo.h: Define Lustre constants.
55637         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
55638         Handle Lustre.
55639         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_link_max): Likewise.
55640         (__statfs_filesize_max): Likewise.
55641         Patch mostly by Andreas Dilger <adilger@whamcloud.com>.
55643 2011-07-05  Andreas Jaeger  <aj@suse.de>
55645         * resolv/res_comp.c (dn_skipname): Remove unused variable.
55647 2011-07-06  Marek Polacek  <mpolacek@redhat.com>
55649         * nis/nss_nisplus/nisplus-spwd.c (_nss_nisplus_setspent): Honour the
55650         `status' variable.
55651         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_setetherent):
55652         Likewise.
55654 2011-07-04  H.J. Lu  <hongjiu.lu@intel.com>
55656         * Makefile (strop-tests): Add strncat.
55657         * string/test-strncat.c: New file.
55659 2011-06-30  Marek Polacek  <mpolacek@redhat.com>
55661         * iconvdata/johab.c: Don't inline `johab_sym_hanja_to_ucs' function.
55663 2011-06-21  Andreas Jaeger  <aj@suse.de>
55665         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules):
55666         Copy rule from iconvdata/Makefile.
55668 2011-07-06  Ulrich Drepper  <drepper@gmail.com>
55670         [BZ #12922]
55671         * posix/getopt.c (_getopt_internal_r): When "W;" is in short options
55672         but no long options are defined, just return 'W'.
55674 2011-06-22  Marek Polacek  <mpolacek@redhat.com>
55676         [BZ #9696]
55677         * stdlib/strtod_l.c (round_and_return): Set ERANGE instead of EDOM.
55679 2011-07-06  Ulrich Drepper  <drepper@gmail.com>
55681         * inet/getnetgrent_r.c (internal_getnetgrent_r): Fix check for known
55682         netgroups to read.
55683         (innetgr): Likewise.
55685 2011-07-05  Roland McGrath  <roland@hack.frob.com>
55687         * config.make.in (install_root): Default to $(DESTDIR).
55689 2011-07-05  Ulrich Drepper  <drepper@gmail.com>
55691         * nscd/nscd_getserv_r.c (nscd_getserv_r): Add cast to avoid warning.
55693 2011-07-02  Roland McGrath  <roland@hack.frob.com>
55695         * Makerules ($(common-objpfx)format.lds): Fail if result is empty.
55697         * Makefile ($(common-objpfx)testrun.sh): Generate to work relative to
55698         containing directory rather than embedding absolute directory names.
55700         * scripts/check-local-headers.sh: Rewritten using awk.
55701         Match by word, not by line.  Print error messages for matches.
55702         * Makefile ($(objpfx)check-local-headers.out): Pass AWK in to it.
55704         * Makerules [shlib-lds-flags empty]:
55705         ($(common-objpfx)libc_pic.opts): New target.
55706         ($(common-objpfx)libc_pic.os.clean): New target.
55707         ($(common-objpfx)libc.so): Link it instead of libc_pic.os.
55709         * config.make.in (OBJCOPY): New variable.
55710         * aclocal.m4 (LIBC_PROG_BINUTILS): Substitute OBJCOPY too.
55711         * configure: Regenerated.
55713         * config.make.in (use-default-link): New variable.
55714         * configure.in (use_default_link): Grok --with-default-link to set it.
55715         * configure: Regenerated.
55716         * Makerules [$(elf) = yes] [$(use-default-link) = yes]:
55717         (shlib-lds, shlib-lds-flags): Define to empty.
55719         * Makerules (shlib-lds): New variable.
55720         (shlib-lds-flags): New variable.
55721         (build-shlib, build-moduile, build-module-asneeded): Use it.
55722         ($(common-objpfx)libc.so): Use $(shlib-lds).
55723         ($(extra-modules-build:%=$(objpfx)%.so)): Likewise.
55724         * iconvdata/extra-module.mk ($(objpfx)$(mod).so): Likewise.
55726         * elf/dynamic-link.h (elf_get_dynamic_info): Make asserts accept
55727         DT_FLAGS/DT_FLAGS_1 with zero flags.
55729         * elf/Makefile ($(objpfx)ld.so): Use -defsym=_begin=0 instead of
55730         linker script munging.
55732 2011-07-02  Ulrich Drepper  <drepper@gmail.com>
55734         * crypt/sha512.h (struct sha512_ctx): Add union to access total also
55735         as 128-bit value.
55736         * crypt/sha512.c (sha512_process_block): Perform total addition using
55737         128-bit if possible.
55738         (__sha512_finish_ctx): Likewise.
55739         * crypt/sha256.h (struct sha256_ctx): Add union to access total also
55740         as 64-bit value.
55741         * crypt/sha256.c (SWAP64): Define.
55742         (sha256_process_block): Perform total addition using 64-bit if
55743         possible.
55744         (__sha256_finish_ctx): Likewise.
55746 2011-07-01  Ulrich Drepper  <drepper@gmail.com>
55748         * nscd/pwdcache.c (cache_addpw): Cleanup.  Add branch prediction.
55749         * nscd/initgrcache.c (addinitgroupsX): Likewise.
55750         * nscd/hstcache.c (cache_addhst): Likewise.
55751         * nscd/grpcache.c (cache_addgr): Likewise.
55752         * nscd/aicache.c (addhstaiX): Likewise
55753         * nscd/servicescache.c (cache_addserv): Handle zero negtimeout.
55755 2011-07-01  Thorsten Kukuk  <kukuk@suse.de>
55757         * nscd/pwdcache.c (cache_addpw): Handle zero negtimeout.
55758         * nscd/initgrcache.c (addinitgroupsX): Likewise.
55759         * nscd/hstcache.c (cache_addhst): Likewise.
55760         * nscd/grpcache.c (cache_addgr): Likewise.
55761         * nscd/aicache.c (addhstaiX): Likewise
55763 2011-07-01  Andreas Schwab  <schwab@redhat.com>
55765         * nis/nss_compat/compat-pwd.c (getpwent_next_nss_netgr): Query NIS
55766         domain only when needed.
55768 2011-06-30  Andreas Schwab  <schwab@redhat.com>
55770         * sysdeps/posix/getaddrinfo.c (gaih_inet): Make sure RES_USE_INET6
55771         is always restored.
55773 2011-06-29  Ulrich Drepper  <drepper@gmail.com>
55775         * nscd/grpcache.c (cache_addgr): Don't write notfound reply if we
55776         are re-adding the entry.
55777         * nscd/servicescache.c (cache_addserv): Likewise.
55779 2011-06-30  Aurelien Jarno  <aurelien@aurel32.net>
55781         * sysdeps/generic/dl-irel.h: fix protection against multiple
55782         inclusions.
55783         * sysdeps/generic/dl-irel.h (elf_ifunc_invoke): New.
55785 2011-06-28  Ulrich Drepper  <drepper@gmail.com>
55787         [BZ #12935]
55788         * malloc/memusage.sh: Fix quoting in message.
55789         * debug/xtrace.sh: Likewise.
55791         * configure.in: Remove support for --experimental-malloc option, make
55792         it the default.
55793         * config.make.in: Likewise.
55794         * malloc/Makefile: Likewise.
55796 2011-06-27  Andreas Schwab  <schwab@redhat.com>
55798         * iconvdata/gb18030.c (BODY for TO_LOOP): Fix encoding of non-BMP
55799         two-byte characters.
55801 2011-06-27  Roland McGrath  <roland@hack.frob.com>
55803         * configure.in (NO_CTORS_DTORS_SECTIONS): Give this check its own
55804         AC_CACHE_CHECK invocation.
55805         * configure: Regenerated.
55807         * elf/soinit.c (__CTOR_LIST__, __DTOR_LIST__): Add used attribute.
55809 2011-06-27  Ulrich Drepper  <drepper@gmail.com>
55811         [BZ #12350]
55812         * nscd/aicache.c (addhstaiX):  Restore only RES_USE_INET6
55813         bit from old_res_options.
55815         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-servicescache.c): Define.
55817         * inet/getnetgrent_r.c (innetgr): Minimal cleanup, use correct return
55818         value type for setfct.
55820 2011-06-23  H.J. Lu  <hongjiu.lu@intel.com>
55822         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Use
55823         __gettimeofday instead of gettimeofday.
55825 2011-06-26  Ulrich Drepper  <drepper@gmail.com>
55827         * elf/Makefile (all-built-dso): No need to check linkobj/libc.so.
55829 2011-06-24  H.J. Lu  <hongjiu.lu@intel.com>
55831         * sysdeps/i386/i686/multiarch/strcpy-sse2.S (RETURN): Fix a typo.
55833         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Correct unwind
55834         info.
55836 2011-06-22  H.J. Lu  <hongjiu.lu@intel.com>
55838         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
55839         strcpy-ssse3 strncpy-ssse3 stpcpy-ssse3 stpncpy-ssse3
55840         strcpy-sse2-unaligned strncpy-sse2-unaligned
55841         stpcpy-sse2-unaligned stpncpy-sse2-unaligned.
55842         * sysdeps/x86_64/multiarch/stpcpy-sse2-unaligned.S: New file.
55843         * sysdeps/x86_64/multiarch/stpcpy-ssse3.S: New file.
55844         * sysdeps/x86_64/multiarch/stpncpy-sse2-unaligned.S: New file.
55845         * sysdeps/x86_64/multiarch/stpncpy-ssse3.S: New file.
55846         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: New file.
55847         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: New file.
55848         * sysdeps/x86_64/multiarch/strncpy-sse2-unaligned.S: New file.
55849         * sysdeps/x86_64/multiarch/strncpy-ssse3.S: New file.
55850         * sysdeps/x86_64/multiarch/strcpy.S: Remove strcpy with SSSE3.
55851         (STRCPY): Support SSE2 and SSSE3 versions.
55853 2011-06-24  Ulrich Drepper  <drepper@gmail.com>
55855         [BZ #12874]
55856         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-tst-writev.c): Define.
55857         * sysdeps/wordsize-64/tst-writev.c: Work around problem with 2.6.38+
55858         kernels which artificially limit size of requests.
55860 2011-06-22  H.J. Lu  <hongjiu.lu@intel.com>
55862         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
55863         strncpy-c strcpy-ssse3 strncpy-ssse3 stpcpy-ssse3 stpncpy-ssse3
55864         strcpy-sse2 strncpy-sse2 stpcpy-sse2 stpncpy-sse2.
55865         * sysdeps/i386/i686/multiarch/stpcpy-sse2.S: New file.
55866         * sysdeps/i386/i686/multiarch/stpcpy-ssse3.S: New file.
55867         * sysdeps/i386/i686/multiarch/stpncpy-sse2.S: New file.
55868         * sysdeps/i386/i686/multiarch/stpncpy-ssse3.S: New file.
55869         * sysdeps/i386/i686/multiarch/stpncpy.S : New file.
55870         * sysdeps/i386/i686/multiarch/strcpy-sse2.S : New file.
55871         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: New file.
55872         * sysdeps/i386/i686/multiarch/strcpy.S: New file.
55873         * sysdeps/i386/i686/multiarch/strncpy-c.c: New file.
55874         * sysdeps/i386/i686/multiarch/strncpy-sse2.S: New file.
55875         * sysdeps/i386/i686/multiarch/strncpy-ssse3.S: New file.
55876         * sysdeps/i386/i686/multiarch/strncpy.S: New file.
55877         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
55878         Enable unaligned load optimization for Intel Core i3, i5 and i7
55879         processors.
55880         * sysdeps/x86_64/multiarch/init-arch.h (bit_Fast_Unaligned_Load):
55881         Define.
55882         (index_Fast_Unaligned_Load): Define.
55883         (HAS_FAST_UNALIGNED_LOAD): Define.
55885 2011-06-23  Marek Polacek  <mpolacek@redhat.com>
55887         * nss/nss_db/db-open.c: Include <unistd.h> for read declaration.
55889 2011-06-22  Ulrich Drepper  <drepper@gmail.com>
55891         [BZ #12907]
55892         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Avoid calling __check_pf
55893         until it is clear that the information is realy needed.
55894         Patch mostly by David Hanisch <david.hanisch@nsn.com>.
55896 2011-06-22  Andreas Schwab  <schwab@redhat.com>
55898         * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix last change.
55900 2011-06-22  Ulrich Drepper  <drepper@gmail.com>
55902         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Use
55903         /sys/devices/system/cpu/online if it is usable.
55905         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Rate limit
55906         reading the information from the /proc filesystem to once a second.
55908 2011-06-21  Andreas Jaeger  <aj@suse.de>
55910         * sysdeps/unix/sysv/linux/bits/sigcontext.h: Fix definition of
55911         NULL after inclusion of kernel headers.
55913 2011-06-21  Ulrich Drepper  <drepper@gmail.com>
55915         * nss/nss_db/db-XXX.c (nss_db_setENT): Only set entidx for successful
55916         calls to internal_setent.
55918         [BZ #12885]
55919         * sysdeps/posix/getaddrinfo.c (gaih_inet): When looking up only IPv6
55920         addresses using gethostbyname4_r ignore IPv4 addresses.
55922         * sysdeps/posix/getaddrinfo.c (gaih_inet): After the last change the
55923         branch using gethostbyname2 is only for AF_INET.  Optimize accordingly.
55925         * inet/getnetgrent_r.c: Use DL_CALL_FCT in several places.
55927 2011-06-20  David S. Miller  <davem@davemloft.net>
55929         * sysdeps/sparc/sparc32/dl-plt.h: Protect against multiple
55930         inclusions.
55931         * sysdeps/sparc/sparc64/dl-plt.h: Likewise.
55933         * sysdeps/i386/dl-irel.h (elf_ifunc_invoke): New.
55934         (elf_irel): Use it.
55935         * sysdeps/powerpc/powerpc32/dl-irel.h: Likewise.
55936         * sysdeps/powerpc/powerpc64/dl-irel.h: Likewise.
55937         * sysdeps/sparc/sparc32/dl-irel.h: Likewise.
55938         * sysdeps/sparc/sparc64/dl-irel.h: Likewise.
55939         * sysdeps/x86_64/dl-irel.h: Likewise.
55941         * elf/dl-runtime.c: Use elf_ifunc_invoke.
55942         * elf/dl-sym.c: Likewise.
55944 2011-06-15  Ulrich Drepper  <drepper@gmail.com>
55946         * resolv/res_send.c (__libc_res_nsend): Fix typos in last patch.  We
55947         need to dereference resplen2.
55949 2011-06-14  Andreas Schwab  <schwab@redhat.com>
55951         * sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c: New file.
55953 2011-06-15  Ulrich Drepper  <drepper@gmail.com>
55955         * Makeconfig: Define vardbdir and inst_vardbdir.
55956         * nss/Makefile: Add rules to install db-Makefile.
55958         * nss/nss_db/db-XXX.c: Cleanup.
55960         * nss/Makefile (libnss_db-dbs): Add db-initgroups.
55961         * nss/Versions [libnss_db]: Add _nss_db_initgroups_dyn for
55962         GLIBC_PRIVATE.
55963         * nss/db-Makefile (groups.db): Emit entries for initgroups lookups.
55964         * nss/makedb.c: Implement -g option to specify that value strings
55965         are generated and should not be added to table iterated over for
55966         get*ent calls.
55967         * nss/nss_db/db-initgroups.c: New file.
55969         * nss/getent.c: Add support for initgroups lookups through getgrouplist
55970         interface.
55972         * grp/initgroups.c (__nss_initgroups_database): Renamed and exported.
55973         (internal_getgrouplist): Adjust to name change.
55974         Update use_initgroups_entry if this is not the first call.
55975         * nss/databases.def: Add initgroups entry.
55977         * nss/makedb.c (compute_tables): Check result of multiple hash table
55978         sizes to minimize maximum chain length.
55980 2011-06-14  Ulrich Drepper  <drepper@gmail.com>
55982         * Versions.def: Add entry for libnss_db.
55983         * shlib-versions: Likewise.
55984         * nss/Makefile: Add rules to build libnss_db.
55985         * nss/Versions: Add libnss_db information.  Organize libnss_files
55986         entries better.
55987         * nss/db-Makefile: Add gshadow support.  Change rules for the new
55988         makedb progra.  Some minor improvements to generate smaller files.
55989         * nss/nss_db/nss_db.h: Move NSS database header data structures to
55990         here from...
55991         * nss/makedb.c: ...here.
55992         Improve database format to be smaller and require less memory at
55993         runtime.
55994         * nss/nss_db/db-XXX.x: Adjust for new database format.  Don't use
55995         db anymore.
55996         * nss/nss_db/db-netgrp.c: Likewise.
55997         * nss/nss_db/db-open.c: Likewise.
55998         * nss/nss_files/flies-XXX.x: Adjust comments.
55999         * nss/nss_files/files-ethers.c: Adjust for new DB_LOOKUP definition.
56000         * nss/nss_files/files-grp.c: Likewise.
56001         * nss/nss_files/files-hosts.c: Likewise.
56002         * nss/nss_files/files-network.c: Likewise.
56003         * nss/nss_files/files-proto.c: Likewise.
56004         * nss/nss_files/files-pwd.c: Likewise.
56005         * nss/nss_files/files-rpc.c: Likewise.
56006         * nss/nss_files/files-service.c: Likewise.
56007         * nss/nss_files/files-sgrp.c: Likewise.
56008         * nss/nss_files/files-spwd.c: Likewise.
56009         * nss/nss_db/db-alias.c: Removed.
56010         * nss/nss_db/dummy-db.h: Removed.
56012 2011-06-02  Ulrich Drepper  <drepper@gmail.com>
56014         * nss/makedb.c: Rewritten to not use database library.
56015         * nss/Makefile: Update to build new makedb program.
56017 2011-06-14  Andreas Jaeger  <aj@suse.de>
56019         * sysdeps/unix/sysv/linux/check_native.c: Include <string.h> for
56020         memset declaration.
56022 2011-06-10  Andreas Schwab  <schwab@redhat.com>
56024         * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix logic allocating
56025         tmpbuf.
56027 2011-06-10  Roland McGrath  <roland@hack.frob.com>
56029         * Makerules (shlib.lds): Fail if the linker script comes out empty.
56030         * elf/Makefile ($(objpfx)ld.so): Likewise.
56032         * Makefile ($(common-objpfx)linkobj/libc.so): Break long lines with \.
56033         Don't list ld.so twice in dependencies.
56035         * posix/bug-regex31.c: Include <stdlib.h>.
56037         * nscd/hstcache.c (cache_addhst): Remove unused variable.
56039         * nis/nss_compat/compat-spwd.c
56040         (getspent_next_nss_netgr): Remove unused variable.
56041         * nis/nss_compat/compat-pwd.c (getpwent_next_nss_netgr): Likewise.
56043         * nis/nis_print_group_entry.c (nis_print_group_entry): Fix "Implicit
56044         nonmembers" output to use the right array.
56046         * resolv/nss_dns/dns-network.c (getanswer_r): Remove unused variable.
56048         * elf/dl-open.c (_dl_open): Quash warnings when DL_NNS==1.
56050         * locale/programs/ld-ctype.c (ctype_read): Remove unused variable.
56051         * locale/programs/ld-collate.c (add_to_tablewc): Likewise.
56052         * catgets/gencat.c (read_input_file): Likewise.
56053         * locale/programs/locarchive.c (enlarge_archive): Likewise.
56055         * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Move DONTBLOCK
56056         variable definition inside #if's controlling its use.
56058         * inet/getnetgrent_r.c (innetgr): Remove unused variable.
56060         * resolv/res_hconf.c (_res_hconf_reorder_addrs): Fix errno restoration.
56062         * misc/syslog.c (__vsyslog_chk): Remove unused variable.
56064         * io/fts.c (fts_build): Use if (0 && ...) rather than #if 0 for
56065         unreachable code.
56067         * stdio-common/printf_fp.c (___printf_fp): Remove unused variable.
56069         * configure.in (nss-crypt check): Use AC_LANG_PROGRAM.
56070         * configure: Regenerated.
56072         * Makerules: Revert last change.
56073         * elf/Makefile: Likewise.
56075 2011-06-09  Roland McGrath  <roland@hack.frob.com>
56077         * Makerules ($(common-objpfx)libc_pic.os): Use -Wl, before -r.
56078         * elf/Makefile ($(objpfx)librtld.os): Likewise.
56079         (reloc-link): Likewise.
56081 2011-06-09  Ulrich Drepper  <drepper@gmail.com>
56083         * elf/Makefile: Add rules to build pldd.
56084         * elf/pldd.c: New file.
56085         * elf/pldd-xx.c: New file.
56087 2011-06-07  Ulrich Drepper  <drepper@gmail.com>
56089         * version.h: Update for 2.15 development version.
56091 2011-06-07  David S. Miller  <davem@davemloft.net>
56093         * sysdeps/sparc/sparc32/dl-irel.h (elf_irela): Pass dl_hwcap to
56094         ifuncs.
56095         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela,
56096         elf_machine_lazy_rel): Likewise.
56097         * sysdeps/sparc/sparc64/dl-irel.h (elf_irela): Likewise.
56098         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela,
56099         elf_machine_lazy_rel): Likewise.
56100         * sysdeps/sparc/sparc64/multiarch/memcpy.S (memcpy): Fetch
56101         dl_hwcap via passed in argument.
56102         * sysdeps/sparc/sparc64/multiarch/memset.S (memset, bzero):
56103         Likewise.
56105 2011-06-06  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
56107         * stdlib/longlong.h: Update from GCC.  Fix smul_ppmm for S/390.
56109 2011-06-06  Roland McGrath  <roland@hack.frob.com>
56111         [BZ #12849]
56112         * manual/fdl-1.1.texi: New file, verbatim from:
56113         http://www.gnu.org/licenses/old-licenses/fdl-1.1.texi
56114         * manual/lgpl-2.1.texi: New file, verbatim from:
56115         http://www.gnu.org/licenses/old-licenses/lgpl-2.1.texi
56116         * manual/Makefile (licenses): New variable, list those new file names.
56117         (texis): Use it.
56118         (chapters.% top-menu.%): Include $(licenses) with $(appendices).
56120         * manual/fdl.texi: File removed.
56121         * manual/lesser.texi: File removed.
56122         * manual/libc.texinfo (Copying, Documentation License):
56123         Use new @include file names, put @appendix directive before @include.
56125 2011-06-04  Jakub Jelinek  <jakub@redhat.com>
56127         [BZ #12841]
56128         * rt/bits/mqueue2.h (__mq_open_2): Add __THROW.
56129         (__mq_open_alias): Use __REDIRECT_NTH instead of __REDIRECT.
56130         (mq_open): Add __NTH.
56132 2011-06-02  H.J. Lu  <hongjiu.lu@intel.com>
56134         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
56135         Assume Intel Core i3/i5/i7 processor if AVX is available.
56137 2011-05-31  Ulrich Drepper  <drepper@gmail.com>
56139         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix
56140         typo.
56142 2011-05-31  Andreas Schwab  <schwab@redhat.com>
56144         * nscd/nscd_getserv_r.c (nscd_getserv_r): Don't free non-malloced
56145         memory.  Use alloca_account.  Fix memory leak when retrying.
56147 2011-05-31  Ulrich Drepper  <drepper@gmail.com>
56149         * version.h (RELEASE): Bump for 2.14 release.
56150         * include/features.h (__GLIBC_MINOR__): Bump to 14.
56152         * config.make.in (RANLIB): Remove entry.
56154 2011-05-30  Ulrich Drepper  <drepper@gmail.com>
56156         * po/Makefile (po-sed-cmd): Add ksh to extensions.
56157         (libc.pot): Work around missing support for .ksh extension in xgettext.
56159         [BZ #12684]
56160         * resolv/res_send.c (__libc_res_nsend): Only go to the next name server
56161         if both request failed.
56162         (send_dg): In case of server errors clear resplen or *resplen2.
56164         [BZ #12454]
56165         * elf/dl-deps.c (_dl_map_object_deps): Run initializer sorting only
56166         when there are multiple maps.
56167         * elf/dl-fini.c (_dl_sort_fini): Check for list of one.
56168         (_dl_fini): Remove test here.
56170         * elf/rtld.c (dl_main): Don't allow the loader to load itself.
56172 2011-05-29  Ulrich Drepper  <drepper@gmail.com>
56174         [BZ #12350]
56175         * sysdeps/posix/getaddrinfo.c (gethosts): Restore only RES_USE_IENT6
56176         bit from old_res_options.
56177         (gaih_inet): Likewise.
56179         [BZ #11099]
56180         * shadow/sgetspent_r.c (LINE_PARSER): Interpret numeric field values
56181         as signed.
56183         * resolv/res_init.c (res_setoptions): Make the code more compact.
56185         [BZ #11558]
56186         * resolv/res_init.c (res_setoptions): Recognize use-vc option and
56187         set RES_USEVC.
56189         [BZ #11634]
56190         * elf/Makefile (tests): Don't add tst-audit[67] without working -mavx.
56192         * malloc/malloc.h: Mark malloc hook variables as deprecated.
56194         [BZ #11781]
56195         * malloc/malloc.h: Declare malloc hook variables as volatile.
56197         * locale/programs/locarchive.c (add_locale_to_archive): Fix typo
56198         in last patch.
56200         [BZ #11799]
56201         * sysdeps/unix/sysv/linux/bits/siginfo.h (SI_USER): Don't mention
56202         raise in the comment.
56203         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h: Likewise.
56204         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
56205         * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h: Likewise.
56207 2011-05-28  Ulrich Drepper  <drepper@gmail.com>
56209         [BZ #12811]
56210         * posix/regex_internal.c (build_wcs_buffer): Don't signal we have to
56211         grow the buffers more if it already has to be sufficient.
56212         (build_wcs_upper_buffer): Likewise.
56213         * posix/regexec.c (check_matching): Likewise.
56214         (clean_state_log_if_needed): Likewise.
56215         (extend_buffers): Don't enlarge buffers beyond size of the input
56216         buffer.
56217         Patches mostly by Emil Wojak <emil@wojak.eu>.
56218         * posix/bug-regex32.c: New file.
56219         * posix/Makefile (tests): Add bug-regex32.
56221         * locale/findlocale.c (_nl_find_locale): Return right away if
56222         _nl_explode_name failed.
56223         * locale/programs/locarchive.c (add_locale_to_archive): Likewise.
56225         * sysdeps/unix/sysv/linux/socketcall.h (SOCKOP_sendmmsg): Define.
56227         * debug/xtrace.sh: Unify messages.
56228         * malloc/memusage.sh: Likewise.
56230         [BZ #12813]
56231         * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_time): Retrieve
56232         time symbol from vDSO.  Substitute with vsyscall if not available.
56233         * sysdeps/unix/sysv/linux/x86_64/time.S [SHARED]: Use
56234         __vdso_time.
56236         * sysdeps/unix/sysv/linux/internal_sendmmsg.S: New file.
56237         * sysdeps/unix/sysv/linux/sendmmsg.c: New file.
56238         * sysdeps/unix/sysv/linux/Makefile [subdir=socket] (sysdep_routines):
56239         Add sendmmsg and internal_sendmmsg.
56240         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14]: Add sendmmsg.
56241         * sysdeps/unix/sysv/linux/bits/socket.h: Declare sendmmsg.
56242         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_SENDMMSG.
56244         * sysdeps/unix/sysv/linux/syscalls.list: Add setns entry.
56245         * sysdeps/unix/sysv/linux/bits/sched.h: Declare setns.
56246         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14]: Add setns.
56248 2011-05-27  Ulrich Drepper  <drepper@gmail.com>
56250         [BZ #12813]
56251         * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_getcpu):
56252         Retrieve getcpu symbol from vDSO.  Substitute with vsyscall if not
56253         available.
56254         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S [SHARED]: Use
56255         __vdso_getcpu.
56257         [BZ #12814]
56258         * iconvdata/Makefile (tests): Add bug-iconv9.
56259         * iconvdata/bug-iconv9.c: New file.
56261 2011-05-27  Andreas Schwab  <schwab@redhat.com>
56263         [BZ #12814]
56264         * iconvdata/iso-2022-jp.c (BODY): Fix invalid variable shadowing.
56266 2011-05-25  Jakub Jelinek  <jakub@redhat.com>
56268         * sysdeps/unix/sysv/linux/x86_64/sys/user.h
56269         (struct user_regs_struct): Change intcs field back to cs.
56271 2011-05-25  Ulrich Drepper  <drepper@gmail.com>
56273         * po/ja.po: Update from translation team.
56275 2011-05-23  Ulrich Drepper  <drepper@gmail.com>
56277         [BZ #12795]
56278         * sysdeps/unix/sysv/linux/bits/resource.h (RLIMIT_RTTIME): Define.
56279         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
56281 2011-05-20  Andreas Schwab  <schwab@redhat.com>
56283         * stdlib/longlong.h: Update from GCC.
56285 2011-05-23  Andreas Schwab  <schwab@redhat.com>
56287         * sysdeps/unix/sysv/linux/ia64/sysconf.c (HAS_CPUCLOCK): Add
56288         parameter name.
56289         * sysdeps/unix/sysv/linux/sysconf.c (has_cpuclock, HAS_CPUCLOCK):
56290         Add parameter name.
56291         (__sysconf): Pass it down.
56293 2011-05-22  Ulrich Drepper  <drepper@gmail.com>
56295         [BZ #12671]
56296         * nis/nss_nis/nis-alias.c (_nss_nis_getaliasbyname_r): Use malloc in
56297         some situations.
56298         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
56299         * posix/glob.c (glob_in_dir): Take additional parameter alloca_used.
56300         add in in __libc_use_alloca calls.  Adjust callers.
56301         (glob): Use malloc in some situations.
56303         * elf/dl-runtime.c (_dl_profile_fixup): Also store LA_SYMB_NOPLTENTER
56304         and LA_SYMB_NOPLTEXIT in flags which are passed to pltenter and
56305         pltexit.
56307 2011-05-21  Ulrich Drepper  <drepper@gmail.com>
56309         * sysdeps/unix/sysv/linux/bits/time.h: Define CLOCK_REALTIME_ALARM
56310         and CLOCK_BOOTTIME_ALARM.
56312         [BZ #12782]
56313         * string/xpg-strerror.c (__xpg_strerror_r): Fill buffer even if error
56314         is returned.
56316         * string/_strerror.c (__strerror_r): Print negative errors as signed
56317         numbers.
56319         [BZ #12777]
56320         * iconvdata/cp1258.c (comp_table_data): Remove entry 0x00A5 0xEC.
56321         (decomp_table): Change U0385 entry to emit 0xA5 0xEC.
56322         * iconvdata/CP1258.irreversible: Adjust entry 0xA8EC.
56324         * configure.in: Fix typo in redirection and correct removal of test
56325         files in two cases.
56327         [BZ #12788]
56328         * locale/setlocale.c (new_composite_name): Fix test to check for
56329         identical name of all categories.
56331         [BZ #12792]
56332         * libio/filedoalloc.c (local_isatty): New function.
56333         (_IO_file_doallocate): Use local_isatty.
56334         * stdio-common/perror.c (perror): In case a new stream is used
56335         forward the stream error.
56336         * stdio-common/vfprintf.c (ARGCHECK): For read-only streams also set
56337         error flag.
56339 2011-05-20  Ulrich Drepper  <drepper@gmail.com>
56341         [BZ #11869]
56342         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't unconditionally use
56343         alloca.
56344         * include/alloca.h (extend_alloca_account): Define.
56346         [BZ #11857]
56347         * posix/regex.h: Fix comments with documentation of user-accessible
56348         fields after compilation and describe correct free'ing of pattern
56349         after re_compile_pattern.
56350         Patch by Reuben Thomas <rrt@sc3d.org>.
56352 2011-05-18  Ryan S. Arnold  <rsa@us.ibm.com>
56354         * sysdeps/powerpc/powerpc64/Makefile (no-special-regs): Add -mno-vsx
56355         and -mno-altivec to prevent the compiler from using Altivec and/or
56356         VSX instructions when the corresponding registers are not available.
56358 2011-05-19  Andreas Schwab  <schwab@redhat.com>
56360         * grp/compat-initgroups.c (__libc_use_alloca): Don't define.
56362 2011-05-19  Ulrich Drepper  <drepper@gmail.com>
56364         * libio/freopen.c (freopen): Use __dup2, not dup2.
56365         * libio/freopen64.c (freopen64): Likewise.
56367 2011-05-17  H.J. Lu  <hongjiu.lu@intel.com>
56369         [BZ #12775]
56370         * sysdeps/x86_64/fpu/e_powl.S: Fix a typo.
56371         * math/Makefile (tests): Add test-powl.
56372         (CFLAGS-test-powl.c): Define.
56373         * math/test-powl.c: New file.
56375 2011-05-16  H.J. Lu  <hongjiu.lu@intel.com>
56377         * fileops.c (_IO_new_file_fopen): Get fd from _IO_fileno.
56379 2011-05-17  Ulrich Drepper  <drepper@gmail.com>
56381         [BZ #11837]
56382         * iconvdata/gb18030.c: Update to GB18020-2005.
56384 2011-05-16  Ulrich Drepper  <drepper@gmail.com>
56386         * posix/regex.h (RE_SYNTAX_AWK, RE_SYNTAX_GNU_AWK,
56387         RE_SYNTAX_POSIX_AWK): Update to match recent development.
56388         Patch by Aharon Robbins <arnold@skeeve.com>.
56390         [BZ #11892]
56391         * stdlib/putenv.c (putenv): Don't always create copy of the variable
56392         on the stack.
56394         [BZ #11895]
56395         * misc/pselect.c (__pselect): Handle timeout value errors hidden
56396         through underflows.
56398         [BZ #12766]
56399         * misc/error.c (error_at_line): Ensure file_name and old_file_name
56400         point to strings before performing equality test for error_one_per_line
56401         mode.
56403         [BZ #11697]
56404         * login/programs/pt_chown.c (do_pt_chown): Always call chown.
56406         [BZ #11820]
56407         * sysdeps/unix/sysv/linux/x86_64/sys/user.h
56408         (struct user_fpregs_struct): Avoid __uint*_t types.
56410         [BZ #6420]
56411         * malloc/mtrace.c (tr_where): Add additional parameter to point to
56412         symbol info.  Use it instead of calling _dl_addr locally.
56413         (lock_and_info): New function.
56414         (tr_freehook): Call lock_and_info and pass symbol info as additional
56415         parameter to tr_where.
56416         (tr_mallochook): Likewise.
56417         (tr_reallochook): Likewise.
56418         (tr_memalignhook): Likewise.
56420         * malloc/mtrace.c: Remove support for USE_MTRACE_FILE.  It is not
56421         used and couldn't be at all thread-safe.
56423 2011-05-15  Ulrich Drepper  <drepper@gmail.com>
56425         * libio/freopen.c (freopen): Don't close old file descriptor
56426         before the new one is opened.  Instead dup the new file descriptor
56427         to the old one after the new stream is created.
56428         * libio/freopen64.c (freopen64): Likewise.
56429         * libio/libio.h: Define _IO_FLAGS2_NOCLOSE and _IO_FLAGS2_CLOEXEC.
56430         * libio/fileops.c (_IO_new_file_close_it): Handle new
56431         _IO_FLAGS2_NOCLOSE flag.
56432         (_IO_new_file_fopen): Set _IO_FLAGS2_CLOEXEC for "e" mode.
56433         If _IO_file_open didn't set FD_CLOEXEC do it after the call.
56434         * libio/oldfileops.c (_IO_old_file_close_it): Handle new
56435         _IO_FLAGS2_NOCLOSE flag.
56436         * include/unistd.h: Add hidden_proto for dup3.
56437         Define __have_dup3.
56438         * io/dup3.c: Define hidden symbol.
56439         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_DUP3.
56441         [BZ #7101]
56442         * posix/getopt.c (_getopt_internal_r): List all ambigious possibilities
56443         when an incomplete long option is used.
56444         * posix/tst-getopt_long1.c: New file.
56445         * posix/Makefile (tests): Add tst-getopt_long1.
56447         [BZ #10138]
56448         * scripts/config.guess: Update from autoconf-2.68.
56449         * scripts/config.sub: Likewise.
56451         [BZ #10157]
56452         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Split out CPUTIME
56453         tests into ...
56454         (has_cpuclock): ...this.  New function.
56455         * sysdeps/unix/sysv/linux/ia64/sysconf.c: Just define HAS_CPUCLOCK
56456         macro here based on has_cpuclock code.
56458         [BZ #10149]
56459         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
56460         First byte (not low byte) is now always NUL.
56461         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Likewise.
56463         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
56464         Use non-cancelable interfaces.
56466         [BZ #9809]
56467         * locale/iso-639.def: Add entry for Sorani.
56469         [BZ #11901]
56470         * include/stdlib.h: Move include protection to the right place.
56471         Define abort_msg_s.  Declare __abort_msg with it.
56472         * stdlib/abort.c (__abort_msg): Adjust type.
56473         * assert/assert.c (__assert_fail_base): New function.  Majority
56474         of code from __assert_fail.  Allocate memory for __abort_msg with
56475         mmap.
56476         (__assert_fail): Now call __assert_fail_base.
56477         * assert/assert-perr.c: Remove bulk of implementation.  Use
56478         __assert_fail_base.
56479         * include/assert.hL Declare __assert_fail_base.
56480         * sysdeps/posix/libc_fatal.c: Allocate memory for __abort_msg with
56481         mmap.
56482         * sysdeps/unix/sysv/linux/libc_fatal.c: Likewise.
56484 2011-05-14  Ulrich Drepper  <drepper@gmail.com>
56486         [BZ #11952]
56487         [BZ #12453]
56488         * elf/dl-open.c (dl_open_worker): Delay calls to _dl_update_slotinfo
56489         until all modules are registered in the DTV.
56490         * elf/Makefile: Add rules to build and run tst-tls19.
56491         * elf/tst-tls19.c: New file.
56492         * elf/tst-tls19mod1.c: New file.
56493         * elf/tst-tls19mod2.c: New file.
56494         * elf/tst-tls19mod3.c: New file.
56495         Patch mostly by Martin von Gagern <Martin.vGagern@gmx.net>.
56497         [BZ #12083]
56498         * sysdeps/pthread/aio_misc.c (__aio_init): Compute optim.aio_num
56499         correctly.
56501         [BZ #12601]
56502         * iconvdata/cp932.c (BODY to UCS4): Fix incrementing inptr in case of
56503         two-byte sequence errors.
56504         * iconvdata/Makefile (tests): Add bug-iconv8.
56505         * iconvdata/bug-iconv8.c: New file.
56507         [BZ #12626]
56508         * sysdeps/generic/elf/backtracesymsfd.c (__backtrace_symbols_fd): Move
56509         buf2 definition.
56511         * libio/fileops.c (_IO_new_file_close_it): Initialize write_status.
56513         [BZ #12432]
56514         * sysdeps/ia64/backtrace.c (struct trace_reg): Add cfa element.
56515         (dummy_getcfa): New function.
56516         (init): Get _Unwind_GetCFA address, use dummy if not found.
56517         (backtrace_helper): In recursion check, also check whether CFA changes.
56518         (__backtrace): Completely initialize arg.
56520         * iconv/loop.c (SINGLE) [STORE_REST]: Add input bytes to bytebuf before
56521         storing incomplete byte sequence in state object.  Avoid testing for
56522         guaranteed too small input if we know there is enough data available.
56524 2011-05-11  Andreas Schwab  <schwab@redhat.com>
56526         * Makeconfig (+link-pie): Indent.
56527         * Rules (binaries-pie): Define if $(have-fpie) and
56528         $(build-shared).
56529         (binaries-shared): Also filter out $(binaries-pie).
56530         ($(addprefix $(objpfx),$(binaries-pie))): New rule.
56531         * nscd/Makefile (others-pie): Add nscd.
56532         (LDFLAGS-nscd): Set this instead of relro-LDFLAGS.
56533         ($(objpfx)nscd): Remove command override.
56534         * login/Makefile (others-pie): Add pt_chown.
56535         ($(objpfx)pt_chown): Remove command override.
56536         * elf/Makefile: Add PIE tests to tests and tests-pie variables and
56537         remove command overrides.
56539 2011-05-13  Ulrich Drepper  <drepper@gmail.com>
56541         * libio/tst_putwc.c: Fix error messages.
56543         [BZ #12724]
56544         * libio/fileops.c (_IO_new_file_close_it): Always flush when
56545         currently writing and seek to current position when not.
56546         * libio/Makefile (tests): Add bug-fclose1.
56547         * libio/bug-fclose1.c: New file.
56549 2011-05-12  Ulrich Drepper  <drepper@gmail.com>
56551         [BZ #12511]
56552         * elf/dl-lookup.c (enter): Don't test for copy relocation here and
56553         don't set DF_1_NODELETE here.
56554         (do_lookup_x): When entering new entry test for copy relocation
56555         and if necessary set DF_1_NODELETE flag.
56556         * elf/tst-unique4.cc: New file.
56557         * elf/tst-unique4.h: New file.
56558         * elf/tst-unique4lib.cc: New file.
56559         * elf/Makefile: Add rules to build and run tst-unique4.
56560         Patch by Piotr Bury <pbury@goahead.com>.
56562 2011-05-11  Ulrich Drepper  <drepper@gmail.com>
56564         [BZ #12052]
56565         * sysdeps/posix/spawni.c (__spawni): Fix sched_setscheduler call.
56567         [BZ #12625]
56568         * misc/mntent_r.c (addmntent): Flush the stream after the output
56570         [BZ #12393]
56571         * elf/dl-load.c (is_trusted_path): Remove unnecessary test.
56572         (is_trusted_path_normalize): Skip initial colon.  Append slash
56573         to empty buffer.  Duplicate is_trusted_path code but allow
56574         constructed patch to be prefix.
56575         (is_dst): Allow $ORIGIN followed by /.
56576         (_dl_dst_substitute): Correct clearing of check_for_trusted.
56577         Correct testing of result of is_trusted_path_normalize
56578         (decompose_rpath): Fix warning.
56580 2011-05-10  Ulrich Drepper  <drepper@gmail.com>
56582         [BZ #11257]
56583         * grp/initgroups.c (internal_getgrouplist): When we found the service
56584         list through the initgroups entry in nsswitch.conf do not always
56585         continue on a successful lookup.  Don't always use the
56586         __nss_group_database value if it is set.
56587         * nss/nsswitch.conf (initgroups): Change action for successful db
56588         lookup to continue for compatibility.
56590 2011-05-09  Ulrich Drepper  <drepper@gmail.com>
56592         [BZ #11532]
56593         * iconvdata/Makefile: Add rules to build CP770, CP771, CP772, CP773,
56594         and CP774 modules.
56595         * iconvdata/gconv-modules: Add entries for CP770, CP771, CP772, CP773,
56596         and CP774 modules.
56597         * iconvdata/tst-tables.sh: Likewise.
56598         * iconvdata/cp770.c: New file.
56599         * iconvdata/cp771.c: New file.
56600         * iconvdata/cp772.c: New file.
56601         * iconvdata/cp773.c: New file.
56602         * iconvdata/cp774.c: New file.
56603         * iconvdata/testdata/CP770: New file.
56604         * iconvdata/testdata/CP770..UTF8: New file.
56605         * iconvdata/testdata/CP771: New file.
56606         * iconvdata/testdata/CP771..UTF8: New file.
56607         * iconvdata/testdata/CP772: New file.
56608         * iconvdata/testdata/CP772..UTF8: New file.
56609         * iconvdata/testdata/CP773: New file.
56610         * iconvdata/testdata/CP773..UTF8: New file.
56611         * iconvdata/testdata/CP774: New file.
56612         * iconvdata/testdata/CP774..UTF8: New file.
56614         * iconvdata/gen-8bit-gap-1.sh: End reading of charmap file at
56615         END CHARMAP line.
56616         * iconvdata/gen-8bit-gap.sh: Likewise.
56617         * iconvdata/gen-8bit.sh: Likewise.
56619         * locale/iso-639.def: Add ary entry.
56621         [BZ #11258]
56622         * locale/C-translit.h.in: Add U20A1 transliteration.
56624         [BZ #12178]
56625         * locale/iso-639.def: Add wae entry.
56626         Patch by Kevin Bortis <bortis@translate-wae.ch>.
56628         [BZ #12545]
56629         * locale/programs/localedef.c (construct_output_path): Use ssize_t
56630         for n.
56632         [BZ #12711]
56633         * locale/C-translit.h.in: Add entry for U20B9.
56634         Patch by pravin.d.s@gmail.com.
56636 2011-05-08  Ulrich Drepper  <drepper@gmail.com>
56638         [BZ #12713]
56639         * sysdeps/unix/sysv/linux/getcwd.c: If getcwd syscall report
56640         ENAMETOOLONG use generic getcwd.
56641         * sysdeps/posix/getcwd.c: Add support to use openat.  Make usable
56642         in rtld.  Use *stat64.
56643         * sysdeps/unix/sysv/linux/Makefile [subdir=elf] (sysdep-rtld-routines):
56644         Add dl-getcwd, dl-openat64, dl-opendir, dl-fxstatat64.
56645         * sysdeps/unix/sysv/linux/dl-getcwd.c: New file.
56646         * sysdeps/unix/sysv/linux/dl-openat64.c: New file.
56647         * sysdeps/unix/sysv/linux/dl-opendir.c: New file.
56648         * sysdeps/unix/sysv/linux/dl-fxstat64.c: New file.
56649         * include/sys/stat.h: Define __fstatat, __lstat64, __fstat64, and
56650         __fstatat64 macros.
56651         * include/dirent.h: Add libc_hidden_proto for rewinddir.
56652         * dirent/rewinddir.c: Add libc_hidden_def.
56653         * sysdeps/mach/hurd/rewinddir.c: Likewise.
56654         * sysdeps/unix/rewinddir.c: Likewise.  Don't do locking outside libc.
56656         * include/dirent.h (__alloc_dir): Add flags parameter.
56657         * sysdeps/unix/fdopendir.c (__fdopendir): Pass flags to __alloc_dir.
56658         * sysdeps/unix/opendir.c (__opendir): Pass 0 in new parameter to
56659         __alloc_dir.
56660         (__alloc_dir): Take new parameter.  Don't call fcntl for invocations
56661         from fdopendir if O_CLOEXEC is already set.
56663 2011-03-15  Alan Modra  <amodra@gmail.com>
56665         * elf/dl-reloc.c (_dl_try_allocate_static_tls <TLS_DTV_AT_TP>): Handle
56666         l_tls_firstbyte_offset non-zero.  Save padding offset in
56667         l_tls_firstbyte_offset for later use.
56668         * elf/dl-close.c (_dl_close_worker <TLS_DTV_AT_TP>): Correct code
56669         freeing static tls block.
56671 2011-03-05  Jonathan Nieder  <jrnieder@gmail.com>
56673         * sysdeps/unix/sysv/linux/sys/param.h: Fix an #ifndef __undef_ARG_MAX
56674         where #ifdef was intended.  The intent is to prevent ARG_MAX from
56675         being defined by the kernel headers.
56677 2011-05-07  Ulrich Drepper  <drepper@gmail.com>
56679         [BZ #12734]
56680         * resolv/resolv.h: Define RES_NOTLDQUERY.
56681         * resolv/res_init.c (res_setoptions): Recognize no_tld_query and
56682         no-tld-query and set RES_NOTLDQUERY.
56683         * resolv/res_debug.c (p_option): Handle RES_NOTLDQUERY.
56684         * resolv/res_query.c (__libc_res_nsearch): Backport changes from
56685         modern BIND to search name as TLD unless forbidden.
56687 2011-05-07  Petr Baudis  <pasky@suse.cz>
56688             Ulrich Drepper  <drepper@gmail.com>
56690         [BZ #12393]
56691         * elf/dl-load.c (fillin_rpath): Move trusted path check...
56692         (is_trusted_path): ...to here.
56693         (is_trusted_path_normalize): Wrapper for /../ and /./ normalization.
56694         (_dl_dst_substitute): Verify expanded $ORIGIN path elements
56695         using is_trusted_path_normalize() in setuid scripts.
56697 2011-05-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
56699         * sysdeps/unix/sysv/linux/sys/sysmacros.h: Add missing
56700         __BEGIN/__END_DECLS.
56702 2011-05-06  Ulrich Drepper  <drepper@gmail.com>
56704         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Return
56705         NSS_STATUS_NOTFOUND if no record was found.
56707 2011-05-05  Andreas Schwab  <schwab@redhat.com>
56709         * sunrpc/Makefile (headers): Add rpc/netdb.h.
56710         (headers-not-in-tirpc): Remove rpc/netdb.h
56711         * resolv/netdb.h: Revert last change.
56713 2011-05-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
56715         * Makeconfig (link-libc-static): Use --{start,end}-group to handle
56716         circular dependency between libgcc.a and libc.a.
56718 2011-05-05  Andreas Schwab  <schwab@redhat.com>
56720         * resolv/netdb.h: Don't include <rpc/netdb.h>.
56721         * nis/Makefile: Don't install rpcsvc/*.
56722         * inet/protocols/timed.h: Include <sys/types.h> and <sys/time.h>
56723         instead of <rpc/types.h>.
56724         (MAXHOSTNAMELEN): Define.
56726 2011-05-03  Andreas Schwab  <schwab@redhat.com>
56728         * elf/ldconfig.c (add_dir): Don't crash on empty path.
56730 2011-04-28  Maciej Babinski  <mbabinski@google.com>
56732         [BZ #12714]
56733         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't bypass
56734         gethostbyname4_r when IPv6 results are possible.
56736 2011-05-02  Ulrich Drepper  <drepper@gmail.com>
56738         [BZ #12723]
56739         * sysdeps/unix/sysv/linux/pathconf.c (__pathconf): Implement
56740         _PC_PIPE_BUF handling.
56742 2011-04-30  Bruno Haible  <bruno@clisp.org>
56744         [BZ #12717]
56745         * conform/data/netdb.h-data (getnameinfo): Make POSIX compliant.
56746         * resolv/netdb.h (getnameinfo): Change type of flags parameter
56747         to 'int'.
56748         * inet/getnameinfo.c (getnameinfo): Likewise.
56750 2011-04-29  Ulrich Drepper  <drepper@gmail.com>
56752         * grp/initgroups.c (internal_getgrouplist): Prefer initgroups setting
56753         to groups setting in database lookup.
56754         * nss/nsswitch.conf: Add initgroups entry.
56756 2011-04-22  Ulrich Drepper  <drepper@gmail.com>
56758         [BZ #12685]
56759         * libio/fileops.c (_IO_new_file_fopen): Scan up to 7 bytes of the
56760         mode string.
56761         Patch by Eric Blake <eblake@redhat.com>.
56763 2011-04-20  H.J. Lu  <hongjiu.lu@intel.com>
56765         * sunrpc/Makefile (need-export-routines): Add svc_run.
56766         (routines): Remove svc_run.
56767         ($(objpfx)thrsvc): Add $(common-objpfx)linkobj/libc.so.
56768         * sunrpc/clnt_perr.c (clnt_perrno): Export.
56769         * sunrpc/svc_run.c (svc_run): Likewise.
56770         * sunrpc/svc_udp.c (svcudp_create): Likewise.
56772 2011-04-21  Ulrich Drepper  <drepper@gmail.com>
56774         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Fix
56775         problem in reallocation in last patch.
56777 2011-04-20  Ulrich Drepper  <drepper@gmail.com>
56779         * sunrpc/Makefile: Move inclusion of Rules.
56781 2011-04-19  Ulrich Drepper  <drepper@gmail.com>
56783         * nss/nss_files/files-initgroups.c: New file.
56784         * nss/Makefile (libnss_files-routines): Add files-initgroups.
56785         * nss/Versions (libnss_files) [GLIBC_PRIVATE]: Export
56786         _nss_files_initgroups_dyn.
56788 2011-03-31  Richard Sandiford  <richard.sandiford@linaro.org>
56790         * elf/elf.h (R_ARM_IRELATIVE): Define.
56792 2011-04-19  Ulrich Drepper  <drepper@gmail.com>
56794         * po/ru.po: Update from translation team.
56796 2011-04-17  Ulrich Drepper  <drepper@gmail.com>
56798         * sunrpc/Makefile ($(rpc-compat-routines.os)): Add before-compile to
56799         dependencies.
56801 2011-02-06  Mike Frysinger  <vapier@gentoo.org>
56803         [BZ #12653]
56804         * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Only protect
56805         MEMCPY_CHK with USE_AS_BCOPY ifdef check.
56806         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
56807         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
56808         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
56810 2011-03-28  Andreas Schwab  <schwab@linux-m68k.org>
56812         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Don't read past
56813         differing bytes.
56814         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
56815         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
56816         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
56818 2011-04-17  Ulrich Drepper  <drepper@gmail.com>
56820         [BZ #12420]
56821         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Reload context after
56822         storing it.
56823         * stdlib/bug-getcontext.c: New file.
56824         * stdlib/Makefile: Add rules to build and run bug-getcontext.
56826 2011-04-13  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
56828         * sysdeps/s390/s390-64/utf16-utf32-z9.c: Wrap the z9-109
56829         instructions into .machine "z9-109".
56830         * sysdeps/s390/s390-64/utf8-utf16-z9.c: Likewise.
56831         * sysdeps/s390/s390-64/utf8-utf32-z9.c: Likewise.
56833 2011-04-11  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
56835         * sysdeps/s390/s390-32/elf/start.S (_start): Skip extra zeroes
56836         between environment variables and auxiliary vector.
56838 2011-04-16  Ulrich Drepper  <drepper@gmail.com>
56840         * Makefile: Add rules to build linkobj/libc.so.
56841         * include/libc-symbols.h: Define libc_hidden_nolink.
56842         * include/rpc/auth.h: Mark functions which are to be hidden.
56843         * include/rpc/auth_des.h: Likewise.
56844         * include/rpc/auth_unix.h: Likewise.
56845         * include/rpc/clnt.h: Likewise.
56846         * include/rpc/des_crypt.h: Likewise.
56847         * include/rpc/key_prot.h: Likewise.
56848         * include/rpc/pmap_clnt.h: Likewise.
56849         * include/rpc/pmap_prot.h: Likewise.
56850         * include/rpc/pmap_rmt.h: Likewise.
56851         * include/rpc/rpc_msg.h: Likewise.
56852         * include/rpc/svc.h: Likewise.
56853         * include/rpc/svc_auth.h: Likewise.
56854         * include/rpc/xdr.h: Likewise.
56855         * nis/Makefile: Link all DSOs against linkobj/libc.so.
56856         * nss/Makefile: Likewise.
56857         * sunrpc/Makefile: Don't install headers.  Build library with normal
56858         entry points.  Don't build rpcinfo.  Link RPC tests appropriately.
56859         * sunrpc/auth_des.c: Hide exported symbols by default, export some
56860         for the compat linking library.  Remove use of INTDEF/INTUSE.
56861         * sunrpc/auth_none.c: Likewise.
56862         * sunrpc/auth_unix.c: Likewise.
56863         * sunrpc/authdes_prot.c: Likewise.
56864         * sunrpc/authuxprot.c: Likewise.
56865         * sunrpc/clnt_gen.c: Likewise.
56866         * sunrpc/clnt_perr.c: Likewise.
56867         * sunrpc/clnt_raw.c: Likewise.
56868         * sunrpc/clnt_simp.c: Likewise.
56869         * sunrpc/clnt_tcp.c: Likewise.
56870         * sunrpc/clnt_udp.c: Likewise.
56871         * sunrpc/clnt_unix.c: Likewise.
56872         * sunrpc/des_crypt.c: Likewise.
56873         * sunrpc/des_soft.c: Likewise.
56874         * sunrpc/get_myaddr.c: Likewise.
56875         * sunrpc/key_call.c: Likewise.
56876         * sunrpc/key_prot.c: Likewise.
56877         * sunrpc/netname.c: Likewise.
56878         * sunrpc/pm_getmaps.c: Likewise.
56879         * sunrpc/pm_getport.c: Likewise.
56880         * sunrpc/pmap_clnt.c: Likewise.
56881         * sunrpc/pmap_prot.c: Likewise.
56882         * sunrpc/pmap_prot2.c: Likewise.
56883         * sunrpc/pmap_rmt.c: Likewise.
56884         * sunrpc/publickey.c: Likewise.
56885         * sunrpc/rpc_cmsg.c: Likewise.
56886         * sunrpc/rpc_common.c: Likewise.
56887         * sunrpc/rpc_dtable.c: Likewise.
56888         * sunrpc/rpc_prot.c: Likewise.
56889         * sunrpc/rpc_thread.c: Likewise.
56890         * sunrpc/rtime.c: Likewise.
56891         * sunrpc/svc.c: Likewise.
56892         * sunrpc/svc_auth.c: Likewise.
56893         * sunrpc/svc_authux.c: Likewise.
56894         * sunrpc/svc_raw.c: Likewise.
56895         * sunrpc/svc_run.c: Likewise.
56896         * sunrpc/svc_simple.c: Likewise.
56897         * sunrpc/svc_tcp.c: Likewise.
56898         * sunrpc/svc_udp.c: Likewise.
56899         * sunrpc/svc_unix.c: Likewise.
56900         * sunrpc/svcauth_des.c: Likewise.
56901         * sunrpc/xcrypt.c: Likewise.
56902         * sunrpc/xdr.c: Likewise.
56903         * sunrpc/xdr_array.c: Likewise.
56904         * sunrpc/xdr_float.c: Likewise.
56905         * sunrpc/xdr_intXX_t.c: Likewise.
56906         * sunrpc/xdr_mem.c: Likewise.
56907         * sunrpc/xdr_rec.c: Likewise.
56908         * sunrpc/xdr_ref.c: Likewise.
56909         * sunrpc/xdr_sizeof.c: Likewise.
56910         * sunrpc/xdr_stdio.c: Likewise.
56912 2011-04-10  Ulrich Drepper  <drepper@gmail.com>
56914         [BZ #12650]
56915         * sysdeps/i386/dl-tls.h: Define TLS_DTV_UNALLOCATED.
56916         * sysdeps/ia64/dl-tls.h: Likewise.
56917         * sysdeps/powerpc/dl-tls.h: Likewise.
56918         * sysdeps/s390/dl-tls.h: Likewise.
56919         * sysdeps/sh/dl-tls.h: Likewise.
56920         * sysdeps/sparc/dl-tls.h: Likewise.
56921         * sysdeps/x86_64/dl-tls.h: Likewise.
56922         * elf/dl-tls.c: Don't define TLS_DTV_UNALLOCATED here.
56924 2011-03-14  Andreas Schwab  <schwab@redhat.com>
56926         * elf/dl-load.c (_dl_dst_substitute): When skipping the first
56927         rpath element also skip the following colon.
56928         (expand_dynamic_string_token): Add is_path parameter and pass
56929         down to DL_DST_REQUIRED and _dl_dst_substitute.
56930         (decompose_rpath): Call expand_dynamic_string_token with
56931         non-zero is_path.  Ignore empty rpaths.
56932         (_dl_map_object_from_fd): Call expand_dynamic_string_token
56933         with zero is_path.
56935 2011-04-08  Andreas Schwab  <schwab@linux-m68k.org>
56937         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c:
56938         Make cancelable.
56940 2011-04-09  Ulrich Drepper  <drepper@gmail.com>
56942         [BZ #12655]
56943         * sysdeps/unix/sysv/linux/sys/syscall.h: Fix comment.
56944         Patch by Filipe David Manana <fdmanana@apache.org>.
56946 2011-04-07  Andreas Schwab  <schwab@redhat.com>
56948         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S (CALL_FAIL):
56949         Maintain aligned stack.
56950         (CHECK_RSP): Remove unused macro.
56952 2011-04-03  Ulrich Drepper  <drepper@gmail.com>
56954         * sysdeps/x86_64/cacheinfo.c (intel_02_known): Fix typo in table.
56955         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
56957 2011-04-02  Ulrich Drepper  <drepper@gmail.com>
56959         * sysdeps/unix/sysv/linux/bits/time.h (CLOCK_BOOTTIME): Define.
56961         * include/features.h: Mention __USE_XOPEN2K8 in comment.
56963 2011-03-26  H.J. Lu  <hongjiu.lu@intel.com>
56965         [BZ #12518]
56966         * sysdeps/x86_64/Versions: Add memcpy to GLIBC_2.14.
56967         * sysdeps/x86_64/memcpy.S: Provide GLIBC_2_14 memcpy.
56968         * sysdeps/x86_64/memmove.c: New file.
56969         * sysdeps/x86_64/multiarch/memcpy.S: Include <shlib-compat.h>.
56970         (memcpy): Renamed to ...
56971         (__new_memcpy): This.
56972         (memcpy): Provide GLIBC_2_14 memcpy.
56973         * sysdeps/x86_64/multiarch/memmove.c: Include <shlib-compat.h>.
56974         (memcpy): Provide GLIBC_2_2_5 memcpy.
56976 2011-04-01  Ulrich Drepper  <drepper@gmail.com>
56978         [BZ #12631]
56979         * wcsmbs/wchar.h: Make wcpcpy and wcpncpy visible for __USE_XOPEN2K8.
56981 2011-03-30  Andreas Schwab  <schwab@redhat.com>
56983         * misc/syncfs.c: New file.
56984         * misc/Makefile (routines): Add syncfs.
56985         * posix/unistd.h: Declare syncfs.
56986         * sysdeps/unix/syscalls.list: Add syncfs.
56988 2011-04-01  Andreas Schwab  <schwab@redhat.com>
56990         * sysdeps/unix/sysv/linux/Versions: Rename open_by_handle to
56991         open_by_handle_at.
56992         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
56993         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
56994         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
56995         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
56996         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
56997         * sysdeps/unix/sysv/linux/syscalls.list: Likewise.
56998         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
57000 2011-04-01  Ulrich Drepper  <drepper@gmail.com>
57002         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define O_PATH.
57003         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
57004         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
57005         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
57006         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
57007         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
57008         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
57010         * io/Makefile: Compile fallocate.c, fallocate64.c, and
57011         sync_file_range.c with -fexceptions.
57012         * sysdeps/unix/sysv/linux/fallocate.c: Make cancelable.
57013         * sysdeps/unix/sysv/linux/fallocate64.c: Likewise.
57014         * sysdeps/unix/sysv/linux/i386/fallocate.c: Likewise.
57015         * sysdeps/unix/sysv/linux/i386/fallocate64.c: Likewise.
57016         * sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: Likewise.
57017         * sysdeps/unix/sysv/linux/sync_file_range.c: Likewise.
57018         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Mark
57019         sync_file_range as cancellation point
57020         * sysdeps/unix/sysv/linux/i386/sync_file_range.c: New file.  This is
57021         now a wrapper around __call_sync_file_range with cancellation handling.
57022         * sysdeps/unix/sysv/linux/i386/sync_file_range.S: Renamed to ...
57023         * sysdeps/unix/sysv/linux/i386/call_sync_file_range.S: ...this.  Change
57024         function name to __call_sync_file_range.
57025         * sysdeps/unix/sysv/linux/i386/Makefile [subdir=io] (sysdep_routines):
57026         Add call_sync_file_range.
57028 2011-04-01  Andreas Schwab  <schwab@redhat.com>
57030         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
57031         bits/timex.h.
57033 2011-04-01  Ulrich Drepper  <drepper@gmail.com>
57035         * iconv/iconv.h: Fix typo in comment.
57036         * io/fcntl.h: Likewise.
57037         * libio/stdio.h: Likewise.
57038         * posix/spawn.h: Likewise.
57039         * posix/unistd.h: Likewise.
57040         * stdlib/stdlib.h: Likewise.
57041         * time/time.h: Likewise.
57042         * wcsmbs/wchar.h: Likewise.
57044         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14] (name_to_handle_at,
57045         open_by_handle): Add.
57046         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define struct file_handle
57047         and MAX_HANDLE_SZ.  Declare name_to_handle_at and open_by_handle.
57048         Augment a few comments.
57049         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
57050         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
57051         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
57052         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
57053         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
57054         * sysdeps/unix/sysv/linux/syscalls.list: Add name_to_handle_at and
57055         open_by_handle.
57057         * io/fcntl.h (AT_EMPTY_PATH): Define.
57059 2011-03-30  Ulrich Drepper  <drepper@gmail.com>
57061         * sysdeps/unix/sysv/linux/syscalls.list: Add clock_adjtime.
57062         * sysdeps/unix/sysv/linux/bits/time.h: New file.
57063         * sysdeps/unix/sysv/linux/sys/timex.h: Move struct timex definition
57064         to...
57065         * sysdeps/unix/sysv/linux/bits/timex.h: ...here.  New file.
57066         * Versions.def: Add GLIBC_2.14.
57067         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14] (clock_adjtime):
57068         Export.
57070 2011-03-22  Ulrich Drepper  <drepper@gmail.com>
57072         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Increment
57073         round counter.
57074         * sysdeps/x86_64/cacheinfo.c (intel_check_word): Likewise.
57076 2011-03-20  H.J. Lu  <hongjiu.lu@intel.com>
57078         [BZ #12597]
57079         * string/test-strncmp.c (do_page_test): New function.
57080         (check2): Likewise.
57081         (test_main): Call check2.
57082         * sysdeps/x86_64/multiarch/strcmp.S: Properly cross page boundary.
57084 2011-03-20  Ulrich Drepper  <drepper@gmail.com>
57086         [BZ #12587]
57087         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word):
57088         Handle cache information in CPU leaf 4.
57089         * sysdeps/x86_64/cacheinfo.c (intel_check_word): Likewise.
57091 2011-03-18  Ulrich Drepper  <drepper@gmail.com>
57093         [BZ #12583]
57094         * posix/fnmatch.c (fnmatch): Check size of pattern in wide
57095         character representation.
57096         Partly based on a patch by Tomas Hoger <thoger@redhat.com>.
57098 2011-03-16  Ryan S. Arnold  <rsa@us.ibm.com>
57100         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S (isnanf): Fix
57101         END(__isnan) to END(__isnanf) to match function entry point/label
57102         EALIGN(__isnanf,...).
57104 2011-03-10  Jakub Jelinek  <jakub@redhat.com>
57106         * wcsmbs/wchar.h (wmemcmp): Remove __restrict qualifiers.
57108 2011-03-10  Ulrich Drepper  <drepper@gmail.com>
57110         [BZ #12510]
57111         * elf/dl-lookup.c (do_lookup_x): For copy relocations of unique objects
57112         copy from the symbol referenced in the relocation to initialize the
57113         used variable.
57114         Patch by Piotr Bury <pbury@goahead.com>.
57115         * elf/Makefile: Add rules to build and tst-unique3.
57116         * include/bits/dlfcn.h: Remove _dl_mcount_wrapper_check declaration.
57117         * elf/tst-unique3.cc: New file.
57118         * elf/tst-unique3.h: New file.
57119         * elf/tst-unique3lib.cc: New file.
57120         * elf/tst-unique3lib2.cc: New file.
57122         * elf/Makefile: Don't run tst-execstack* tests of SELinux is enabled.
57124 2011-03-10  Mike Frysinger  <vapier@gentoo.org>
57126         * sysdeps/sparc/sparc64/elf/configure.in (libc_cv_sparc64_tls): Add
57127         $LDFLAGS and -nostdlib -nostartfiles to linking step.  Change main
57128         to _start.
57130 2011-03-06  Ulrich Drepper  <drepper@gmail.com>
57132         * elf/dl-load.c (_dl_map_object): If we are looking for the first
57133         to-be-loaded object along a path to loader is ld.so.
57135 2011-03-02  Harsha Jagasia  <harsha.jagasia@amd.com>
57136             Ulrich Drepper  <drepper@gmail.com>
57138         * sysdeps/x86_64/memset.S: After aligning destination, code
57139         branches to different locations depending on the value of
57140         misalignment, when multiarch is enabled. Fix this.
57142 2011-03-02  Harsha Jagasia  <harsha.jagasia@amd.com>
57144         * sysdeps/x86_64/cacheinfo.c (init_cacheinfo):
57145         Set _x86_64_preferred_memory_instruction for AMD processsors.
57146         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
57147         Set bit_Prefer_SSE_for_memop for AMD processors.
57149 2011-03-04  Ulrich Drepper  <drepper@gmail.com>
57151         * libio/fmemopen.c (fmemopen): Optimize a bit.
57153 2011-03-03  Andreas Schwab  <schwab@redhat.com>
57155         * libio/fmemopen.c (fmemopen): Don't read past end of buffer.
57157 2011-03-03  Roland McGrath  <roland@redhat.com>
57159         * setjmp/bits/setjmp2.h: Canonicalize comment formatting.
57161 2011-02-28  Aurelien Jarno  <aurelien@aurel32.net>
57163         * sysdeps/sparc/sparc64/multiarch/memset.S(__bzero): Call
57164         __bzero_ultra1 instead of __memset_ultra1.
57166 2011-02-23  Andreas Schwab  <schwab@redhat.com>
57167             Ulrich Drepper  <drepper@gmail.com>
57169         [BZ #12509]
57170         * include/link.h (struct link_map): Add l_orig_initfini.
57171         * elf/dl-load.c (_dl_map_object_from_fd): Free realname before
57172         returning unsuccessfully.
57173         * elf/dl-close.c (_dl_close_worker): If this is the last explicit
57174         close of a file loaded at startup, restore the original l_initfini
57175         list.
57176         * elf/dl-deps.c (_dl_map_object_deps): Don't free old l_initfini
57177         list, store the pointer.
57178         * elf/Makefile ($(objpfx)noload-mem): New rule.
57179         (noload-ENV): Define.
57180         (tests): Add $(objpfx)noload-mem.
57181         * elf/noload.c: Include <memcheck.h>.
57182         (main): Call mtrace.  Close all opened handles.
57184 2011-02-17  Andreas Schwab  <schwab@redhat.com>
57186         [BZ #12454]
57187         * elf/dl-deps.c (_dl_map_object_deps): Signal error early when
57188         dependencies are missing.
57190 2011-02-22  Samuel Thibault  <samuel.thibault@ens-lyon.org>
57192         Fix __if_freereq crash: Unlike the generic version which uses free,
57193         Hurd needs munmap.
57194         * sysdeps/mach/hurd/ifreq.h: New file.
57196 2011-01-27  Petr Baudis  <pasky@suse.cz>
57197             Ulrich Drepper  <drepper@gmail.com>
57199         [BZ 12445]#
57200         * stdio-common/vfprintf.c (vfprintf): Pass correct newlen
57201         to extend_alloca().
57202         * stdio-common/bug23.c: New file.
57203         * stdio-common/Makefile (tests): Add bug23.
57205 2010-09-28  Andreas Schwab  <schwab@redhat.com>
57206             Ulrich Drepper  <drepper@gmail.com>
57208         [BZ #12489]
57209         * elf/rtld.c (dl_main): Move setting of GLRO(dl_init_all_dirs)
57210         before performing relro protection.  At old place add assertion
57211         to make sure nothing changed.
57213 2011-02-17  Nathan Sidwell  <nathan@codesourcery.com>
57214             Glauber de Oliveira Costa  <glommer@gmail.com>
57216         * elf/elf.h: Add new ARM TLS relocs.
57218 2011-02-16  Ryan S. Arnold  <rsa@us.ibm.com>
57220         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h:
57221         (INTERNAL_VSYSCALL_NCS INTERNAL_SYSCALL_NCS): Remove erroneous (int)
57222         cast from r3.
57223         * sysdeps/wordsize-64/Makefile: New file.  Add tst-writev to
57224         'tests' variable.
57225         * sysdeps/wordsize-64/tst-writev.c: New file.
57227 2011-02-15  Ryan S. Arnold  <rsa@us.ibm.com>
57229         * sysdeps/powerpc/powerpc64/power7/Makefile: New file which adds
57230         -mno-vsx to the CFLAGS-rtld.c variable to avoid using VSX registers and
57231         insns in _dl_start to prevent a TOC reference before relocs are
57232         resolved.
57234 2011-02-15  Ulrich Drepper  <drepper@gmail.com>
57236         [BZ #12469]
57237         * Makeconfig: Remove RANLIB definition.
57238         * Makerules: Don't use RANLIB.
57239         * aclocal.m4: Remove ranlib test.
57240         * configure.in: No need to check for ranlib.
57241         * elf/rtld-Rules: Don't use RANLIB.
57243 2011-02-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
57245         * sysdeps/mach/i386/sysdep.h: Add _MACH_I386_SYSDEP_H inclusion
57246         protection macro.
57247         * sysdeps/mach/i386/thread_state.h: Add _MACH_I386_THREAD_STATE_H
57248         inclusion protection macro.
57250         * stdio-common/psiginfo.c (psiginfo): Check pinfo->si_signo against
57251         SIGRTMIN and SIGRTMAX and print information in that case only when
57252         SIGRTMIN is defined.
57254 2011-02-11  Jakub Jelinek  <jakub@redhat.com>
57256         * stdio-common/printf-parsemb.c (__parse_one_specmb): Handle
57257         arginfo fn returning -1.
57259         * stdio-common/_i18n_number.h (_i18n_number_rewrite): Ensure decimal
57260         and thousands string is zero terminated.
57262 2011-02-03  Andreas Schwab  <schwab@redhat.com>
57264         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Sync with
57265         sysdeps/unix/sysv/linux/bits/socket.h.
57267 2011-01-30  Samuel Thibault  <samuel.thibault@ens-lyon.org>
57269         * bits/sched.h (__CPU_ZERO, __CPU_SET, __CPU_CLR, __CPU_ISSET)
57270         (__CPU_COUNT): Remove old macros.
57271         (__CPU_ZERO_S, __CPU_SET_S, __CPU_CLR_S, __CPU_ISSET_S)
57272         (__CPU_COUNT, __CPU_EQUAL_S, __CPU_OP_S, __CPU_ALLOC_SIZE)
57273         (__CPU_ALLOC, __CPU_FREE): Add macros.
57274         (__sched_cpualloc, __sched_cpufree): Add declarations.
57276 2011-02-05  Ulrich Drepper  <drepper@gmail.com>
57278         * nscd/nscd-client.h: Define MAX_TIMEOUT_VALUE.
57279         (struct datahead): Reuse 32 bits of the alignment for a TTL field.
57280         * nscd/aicache.c (addhstaiX): Return timeout of added value.
57281         (readdhstai): Return value of addhstaiX call.
57282         * nscd/grpcache.c (cache_addgr): Return timeout of added value.
57283         (addgrbyX): Return value returned by cache_addgr.
57284         (readdgrbyname): Return value returned by addgrbyX.
57285         (readdgrbygid): Likewise.
57286         * nscd/pwdcache.c (cache_addpw): Return timeout of added value.
57287         (addpwbyX): Return value returned by cache_addpw.
57288         (readdpwbyname): Return value returned by addhstbyX.
57289         (readdpwbyuid): Likewise.
57290         * nscd/servicescache.c (cache_addserv): Return timeout of added value.
57291         (addservbyX): Return value returned by cache_addserv.
57292         (readdservbyname): Return value returned by addservbyX:
57293         (readdservbyport): Likewise.
57294         * nscd/hstcache.c (cache_addhst): Return timeout of added value.
57295         (addhstbyX): Return value returned by cache_addhst.
57296         (readdhstbyname): Return value returned by addhstbyX.
57297         (readdhstbyaddr): Likewise.
57298         (readdhstbynamev6): Likewise.
57299         (readdhstbyaddrv6): Likewise.
57300         * nscd/initgrcache.c (addinitgroupsX): Return timeout of added value.
57301         (readdinitgroups): Return value returned by addinitgroupsX.
57302         * nscd/cache.c (readdfcts): Change return value of functions to time_t.
57303         (prune_cache): Keep track of timeout value of re-added entries.
57304         * nscd/connections.c (nscd_run_prune): Use MAX_TIMEOUT_VALUE.
57305         * nscd/nscd.h: Adjust prototypes of readd* functions.
57307 2011-02-04  Roland McGrath  <roland@redhat.com>
57309         * nis/nis_server.c (nis_servstate): Use the right name for 0.
57310         (nis_stats): Likewise.
57311         * nis/nis_modify.c (nis_modify): Likewise.
57312         * nis/nis_remove.c (nis_remove): Likewise.
57313         * nis/nis_add.c (nis_add): Likewise.
57315         * elf/dl-object.c (_dl_new_object): Remove unused variable L.
57317         * posix/fnmatch_loop.c: Add some consts.
57319         * sysdeps/x86_64/multiarch/memset-x86-64.S: Add an #undef.
57321 2011-02-02  H.J. Lu  <hongjiu.lu@intel.com>
57323         [BZ #12460]
57324         * config.make.in (config-cflags-novzeroupper): Define.
57325         * configure.in: Substitute libc_cv_cc_novzeroupper.
57326         * elf/Makefile (AVX-CFLAGS): Define.
57327         (CFLAGS-tst-audit4.c): Replace -mavx with $(AVX-CFLAGS).
57328         (CFLAGS-tst-auditmod4a.c): Likewise.
57329         (CFLAGS-tst-auditmod4b.c): Likewise.
57330         (CFLAGS-tst-auditmod6b.c): Likewise.
57331         (CFLAGS-tst-auditmod6c.c): Likewise.
57332         (CFLAGS-tst-auditmod7b.c): Likewise.
57333         * sysdeps/i386/configure.in: Check -mno-vzeroupper.
57335 2011-02-02  Ulrich Drepper  <drepper@gmail.com>
57337         * elf/dl-runtime.c (_dl_call_pltexit): Pass correct address of the
57338         function to the callback.
57339         Patch partly by Jiri Olsa <jolsa@redhat.com>.
57341 2011-02-02  Andreas Schwab  <schwab@redhat.com>
57343         * shadow/sgetspent.c: Check return value of __sgetspent_r instead
57344         of errno.
57346 2011-01-19  Ulrich Drepper  <drepper@gmail.com>
57348         [BZ #11724]
57349         * elf/dl-deps.c (_dl_map_object_deps): Rewrite sorting determining order
57350         of constructors.
57351         * elf/dl-fini.c (_dl_sort_fini): Rewrite sorting determining order
57352         of destructors.
57353         (_dl_fini): Don't call _dl_sort_fini if there is only one object.
57355         [BZ #11724]
57356         * elf/Makefile: Add rules to build and run new test.
57357         * elf/tst-initorder.c: New file.
57358         * elf/tst-initorder.exp: New file.
57359         * elf/tst-initordera1.c: New file.
57360         * elf/tst-initordera2.c: New file.
57361         * elf/tst-initordera3.c: New file.
57362         * elf/tst-initordera4.c: New file.
57363         * elf/tst-initorderb1.c: New file.
57364         * elf/tst-initorderb2.c: New file.
57365         * elf/tst-order-a1.c: New file.
57366         * elf/tst-order-a2.c: New file.
57367         * elf/tst-order-a3.c: New file.
57368         * elf/tst-order-a4.c: New file.
57369         * elf/tst-order-b1.c: New file.
57370         * elf/tst-order-b2.c: New file.
57371         * elf/tst-order-main.c: New file.
57372         New test case by George Gensure <werkt0@gmail.com>.
57374 2010-10-01  Andreas Schwab  <schwab@redhat.com>
57376         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't discard result of
57377         decoding ACE if AI_CANONIDN.
57379 2011-01-18  Ulrich Drepper  <drepper@gmail.com>
57381         * elf/Makefile: Build IFUNC tests unless multi-arch = no.
57383 2011-01-17  Ulrich Drepper  <drepper@gmail.com>
57385         * version.h (RELEASE): Bump for 2.13 release.
57386         * include/features.h: (__GLIBC_MINOR__): Bump to 13.
57388         * io/fcntl.h: Define AT_NO_AUTOMOUNT.
57390         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Define MADV_HUGEPAGE and
57391         MADV_NOHUGEPAGE.
57392         * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Likewise.
57393         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
57394         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
57395         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
57396         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
57397         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
57399         * posix/getconf.c: Update copyright year.
57400         * catgets/gencat.c: Likewise.
57401         * csu/version.c: Likewise.
57402         * debug/catchsegv.sh: Likewise.
57403         * debug/xtrace.sh: Likewise.
57404         * elf/ldconfig.c: Likewise.
57405         * elf/ldd.bash.in: Likewise.
57406         * elf/sprof.c (print_version): Likewise.
57407         * iconv/iconv_prog.c: Likewise.
57408         * iconv/iconvconfig.c: Likewise.
57409         * locale/programs/locale.c: Likewise.
57410         * locale/programs/localedef.c: Likewise.
57411         * malloc/memusage.sh: Likewise.
57412         * malloc/mtrace.pl: Likewise.
57413         * nscd/nscd.c (print_version): Likewise.
57414         * nss/getent.c: Likewise.
57416         * sysdeps/unix/sysv/linux/bits/socket.h: Define AF_CAIF, AF_ALG,
57417         PF_CAIF, and PF_ALG.
57418         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
57420 2011-01-16  Andreas Schwab  <schwab@linux-m68k.org>
57422         * elf/Makefile (tlsmod17a-modules, tlsmod18a-modules): Define.
57423         (modules-names): Use them.
57424         (ifunc-test-modules, ifunc-pie-tests): Define.
57425         (extra-test-objs): Add tlsmod17a-modules, tlsmod18a-modules,
57426         tst-pie1, ifunc-test-modules and ifunc-pie-tests objects.
57427         (test-extras): Likewise.
57428         ($(patsubst %,$(objpfx)%.os,$(tlsmod17a-modules))): Use
57429         $(compile-command.c).
57430         ($(patsubst %,$(objpfx)%.os,$(tlsmod18a-modules))): Likewise.
57431         (all-built-dso): Define.
57432         (check-textrel.out, check-execstack.out): Depend on it.
57434         * configure.in: Don't override --enable-multi-arch.
57436 2011-01-15  Ulrich Drepper  <drepper@gmail.com>
57438         [BZ #6812]
57439         * nscd/hstcache.c (tryagain): Define.
57440         (cache_addhst): Return tryagain not notfound for temporary errors.
57441         (addhstbyX): Also set h_errno to TRY_AGAIN when memory allocation
57442         failed.
57444 2011-01-14  Ulrich Drepper  <drepper@gmail.com>
57446         [BZ #10563]
57447         * sysdeps/unix/sysv/linux/i386/setgroups.c: Use INLINE_SETXID_SYSCALL
57448         to make the syscall.
57449         * sysdeps/unix/sysv/linux/setgroups.c: New file.
57451         [BZ #12378]
57452         * posix/fnmatch_loop.c (FCT): When matching '[' keep track of beginning
57453         and fall back to matching as normal character if the string ends before
57454         the matching ']' is found.  This is what POSIX requires.
57455         * posix/testfnm.c: Adjust test result.
57456         * posix/globtest.sh: Adjust test result.  Add new test.
57457         * posix/tst-fnmatch.input: Likewise.
57458         * posix/tst-fnmatch2.c: Add new test.
57460 2010-12-28  Andreas Schwab  <schwab@linux-m68k.org>
57462         * elf/Makefile (check-execstack): Revert last change.  Depend on
57463         check-execstack.h.
57464         (check-execstack.h): New target.
57465         (generated): Add check-execstack.h.
57466         * elf/check-execstack.c: Include "check-execstack.h".
57467         (main): Revert last change.
57468         (handle_file): Return zero if GNU_STACK is absent and
57469         DEFAULT_STACK_PERMS doesn't include PF_X.
57471 2011-01-13  Ulrich Drepper  <drepper@gmail.com>
57473         * sysdeps/posix/spawni.c (__spawni): Don't fail if close file action
57474         in child fails because the descriptor is already closed.
57475         * include/sys/resource.h: Add libc_hidden_proto for getrlimit64.
57476         * sysdeps/unix/sysv/linux/getrlimit64.c: Add libc_hidden_def.
57477         * sysdeps/unix/sysv/linux/i386/getrlimit64.c: Likewise.
57479         [BZ #12397]
57480         * sysdeps/unix/sysv/linux/mkdirat.c (mkdirat): Fix handling of missing
57481         syscall.
57483         [BZ #10484]
57484         * nss/nss_files/files-hosts.c (HOST_DB_LOOKUP): Handle overflows of
57485         temporary buffer used to handle multi lookups locally.
57486         * include/alloca.h: Add libc_hidden_proto for __libc_alloca_cutoff.
57488 2011-01-12  Ulrich Drepper  <drepper@gmail.com>
57490         * elf/dl-dst.h (DL_DST_REQUIRED): Allow l_origin to be NULL when
57491         loader is ld.so.
57493 2011-01-10  Paul Pluzhnikov  <ppluzhnikov@google.com>
57495         * sysdeps/i386/Makefile: stdlib/cxa_finalize.c needs 16-byte stack
57496         alignment for SSE2.
57498 2011-01-12  Ulrich Drepper  <drepper@gmail.com>
57500         [BZ #12394]
57501         * stdio-common/printf_fp.c (__printf_fp): Add more room for grouping
57502         characters.  When rounding increased number of integer digits recompute
57503         number of groups.
57504         * stdio-common/tst-grouping.c: New file.
57505         * stdio-common/Makefile: Add rules to build and run tst-grouping.
57507 2011-01-09  Ulrich Drepper  <drepper@gmail.com>
57509         * sysdeps/i386/bits/select.h: Don't use asm code for __FD_SET,
57510         __FD_CLR, and __FS_ISSET.  gcc generates better code on its own.
57512         * sysdeps/x86_64/bits/select.h: Mark value of __FD_SET and __FD_CLR as
57513         void.
57514         * bits/select.h: Likewise.
57516 2011-01-08  Ulrich Drepper  <drepper@gmail.com>
57518         * po/ja.po: Update from translation team.
57520 2011-01-04  David S. Miller  <davem@sunset.davemloft.net>
57522         [BZ #11155]
57523         * sysdeps/unix/sysv/linux/sparc/sparc64/fxstat.c: Use i386's
57524         implementation just like for lxstat, fxstatat, et al.
57526 2010-12-27  Jim Meyering  <meyering@redhat.com>
57528         [BZ #12348]
57529         * posix/regexec.c (build_trtable): Return failure indication upon
57530         calloc failure.  Otherwise, re_search_internal could infloop on OOM.
57532 2010-12-25  Ulrich Drepper  <drepper@gmail.com>
57534         [BZ #12201]
57535         * sysdeps/unix/sysv/linux/getrlimit64.c: New file.
57536         * sysdeps/unix/sysv/linux/setrlimit64.c: New file.
57537         * sysdeps/unix/sysv/linux/i386/getrlimit64.c: Use ../getrlimit64.c.
57538         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_PRLIMIT64.
57540         [BZ #12207]
57541         * malloc/malloc.c (do_check_malloc_state): Use fastbin macro.
57543         [BZ #12204]
57544         * string/xpg-strerror.c (__xpg_strerror_r): Return error code, not -1.
57545         * sysdeps/mach/xpg-strerror.c (__xpg_strerror_r): Likewise.
57547 2010-12-15  H.J. Lu  <hongjiu.lu@intel.com>
57549         * config.h.in (NO_CTORS_DTORS_SECTIONS): Define.
57550         * configure.in: Define NO_CTORS_DTORS_SECTIONS if linker
57551         script has SORT_BY_INIT_PRIORITY.
57552         * elf/sofini.c: Remove `.ctors' and `.dtors' sections if
57553         NO_CTORS_DTORS_SECTIONS is defined.
57554         * elf/soinit.c: Likewise.
57555         * sysdeps/i386/init-first.c: Don't call __libc_global_ctors if
57556         NO_CTORS_DTORS_SECTIONS is defined.
57557         * sysdeps/mach/hurd/i386/init-first.c: Likewise.
57558         * sysdeps/mach/hurd/powerpc/init-first.c: Likewise.
57559         * sysdeps/sh/init-first.c: Likewise.
57560         * sysdeps/unix/sysv/linux/init-first.c: Likewise.
57562 2010-12-24  Ulrich Drepper  <drepper@gmail.com>
57564         * stdio-common/vfprintf.c (vfprintf): If printf handlers are installed
57565         always use the slow path.
57567 2010-12-15  Ryan S. Arnold  <rsa@us.ibm.com>
57569         * elf/Makefile: (check-execstack): Replace $(native-compile) with a
57570         similar rule which adds the sysdep directories to the header search in
57571         order to pick up the correct platform stackinfo.h.
57572         * elf/check-execstack.c (main): Check DEFAULT_STACK_PERMS for PF_X and
57573         perform test if it is, otherwise return successfully without testing.
57574         * elf/dl-load.c (_dl_map_object_from_fd): Source stack_flags from
57575         DEFAULT_STACK_PERMS define in stackinfo.h.
57576         * elf/dl-support.c (_dl_stack_flags): Source from DEFAULT_STACK_PERMS
57577         defined in stackinfo.h.
57578         * elf/rtld.c (_dl_starting_up): Source ._dl_stack_flags from
57579         DEFAULT_STACK_PERMS defined in stackinfo.h.
57580         * sysdeps/i386/stackinfo.h: Define DEFAULT_STACK_PERMS with PF_X.
57581         * sysdeps/ia64/stackinfo.h: Likewise.
57582         * sysdeps/s390/stackinfo.h: Likewise.
57583         * sysdeps/sh/stackinfo.h: Likewise.
57584         * sysdeps/sparc/stackinfo.h: Likewise.
57585         * sysdeps/x86_64/stackinfo.h: Likewise.
57586         * sysdeps/powerpc/stackinfo.h: Define DEFAULT_STACK_PERMS without
57587         PF_X for powerpc64.  Retain PF_X for powerpc32.
57589 2010-12-19  Ulrich Drepper  <drepper@gmail.com>
57591         * sysdeps/unix/readdir_r.c (__READDIR_R): Compute reclen more
57592         accurately.
57593         * sysdeps/unix/sysv/linux/wordsize-64/readdir_r.c: Define
57594         GETDENTS_64BIT_ALIGNED.
57596 2010-12-14  Ulrich Drepper  <dreper@gmail.com>
57598         * sysdeps/i386/i686/multiarch/strcmp.S: Undo accidental checkin.
57600 2010-12-10  Andreas Schwab  <schwab@redhat.com>
57602         * wcsmbs/wchar.h (wcpcpy, wcpncpy): Only declare under
57603         _GNU_SOURCE.
57605         * wcsmbs/wchar.h (wcpcpy, wcpncpy): Add __restrict.
57606         * wcsmbs/bits/wchar2.h (__wmemmove_chk_warn, wmemmove, wmemset):
57607         Remove __restrict.
57608         (wcscpy, __wcpcpy_chk, __wcpcpy_alias, wcpcpy, wcsncpy, wcpncpy)
57609         (wcscat, wcsncat, __wcrtomb_chk, wcrtomb): Add __restrict.
57611 2010-12-09  Ulrich Drepper  <drepper@gmail.com>
57613         [BZ #11655]
57614         * stdlib/msort.c (qsort_r): Make sure both phys_pages and pagesize
57615         are initialized.
57617 2010-12-09  Jakub Jelinek  <jakub@redhat.com>
57619         * string/bits/string3.h (memmove, bcopy): Remove __restrict.
57621 2010-12-03  Ulrich Drepper  <drepper@gmail.com>
57623         * po/it.po: Update from translation team.
57625 2010-12-01  H.J. Lu  <hongjiu.lu@intel.com>
57627         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S (STRCMP): Remove
57628         unused codes.
57630 2010-11-30  Ulrich Drepper  <drepper@gmail.com>
57632         * sysdeps/i386/fpu/libm-test-ulps: Relax ynf(10,0.75) test expectations.
57634 2010-11-24  Andreas Schwab  <schwab@redhat.com>
57636         * resolv/nss_dns/dns-host.c (getanswer_r): Don't handle ttl == 0
57637         specially.
57638         (gaih_getanswer_slice): Likewise.
57640 2010-10-20  Jakub Jelinek  <jakub@redhat.com>
57642         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Fix up inline asm.
57644 2010-05-31  Petr Baudis  <pasky@suse.cz>
57646         [BZ #11149]
57647         * elf/ldconfig.c (main): Allow aux_cache_file open()ing to fail
57648         silently even in the chroot mode.
57650 2010-11-22  Ulrich Drepper  <drepper@gmail.com>
57652         * nis/nss_compat/compat-initgroups.c (internal_getgrent_r): Optimize
57653         last patch a bit.  Pretty printing
57655 2010-05-31  Petr Baudis <pasky@suse.cz>
57657         [BZ #10085]
57658         * nis/nss_compat/compat-initgroups.c (internal_getgrent_r): Fix
57659         initialization of skip_initgroups_dyn.
57661 2010-11-19  Ulrich Drepper  <drepper@gmail.com>
57663         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Define MAP_HUGETLB.
57664         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
57666 2010-11-16  Ulrich Drepper  <drepper@gmail.com>
57668         * sysdeps/unix/sysv/linux/sys/swap.h (SWAP_FLAG_DISCARD): Define.
57670 2010-11-11  Andreas Schwab  <schwab@redhat.com>
57672         * posix/fnmatch_loop.c (NEW_PATTERN): Fix use of alloca.
57673         * posix/Makefile (tests): Add $(objpfx)tst-fnmatch-mem.
57674         (tst-fnmatch-ENV): Set MALLOC_TRACE.
57675         ($(objpfx)tst-fnmatch-mem): New rule.
57676         (generated): Add tst-fnmatch-mem and tst-fnmatch.mtrace.
57677         * posix/tst-fnmatch.c (main): Call mtrace.
57679 2010-11-11  H.J. Lu  <hongjiu.lu@intel.com>
57681         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
57682         Support Intel processor model 6 and model 0x2c.
57684 2010-11-10  Luis Machado  <luisgpm@br.ibm.com>
57686         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c (__ieee754_sqrtl): Force
57687           signed comparison.
57689 2010-11-09  H.J. Lu  <hongjiu.lu@intel.com>
57691         [BZ #12205]
57692         * string/test-strncasecmp.c (check_result): New function.
57693         (do_one_test): Use it.
57694         (check1): New function.
57695         (test_main): Use it.
57696         * sysdeps/i386/i686/multiarch/strcmp.S (nibble_ashr_use_sse4_2_exit):
57697         Support strcasecmp and strncasecmp.
57699 2010-11-08  Ulrich Drepper  <drepper@gmail.com>
57701         [BZ #12194]
57702         * sysdeps/i386/bits/byteswap.h: Avoid warning in __bswap_16.
57703         * sysdeps/x86_64/bits/byteswap.h: Likewise.
57705 2010-11-07  H.J. Lu  <hongjiu.lu@intel.com>
57707         * sysdeps/x86_64/memset.S: Check USE_MULTIARCH and USE_SSE2 for
57708         IFUNC support.
57709         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
57710         memset-x86-64.
57711         * sysdeps/x86_64/multiarch/bzero.S: New file.
57712         * sysdeps/x86_64/multiarch/cacheinfo.c: New file.
57713         * sysdeps/x86_64/multiarch/memset-x86-64.S: New file.
57714         * sysdeps/x86_64/multiarch/memset.S: New file.
57715         * sysdeps/x86_64/multiarch/memset_chk.S: New file.
57716         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
57717         Set bit_Prefer_SSE_for_memop for Intel processors.
57718         * sysdeps/x86_64/multiarch/init-arch.h (bit_Prefer_SSE_for_memop):
57719         Define.
57720         (index_Prefer_SSE_for_memop): Define.
57721         (HAS_PREFER_SSE_FOR_MEMOP): Define.
57723 2010-11-04  Luis Machado  <luisgpm@br.ibm.com>
57725         * sysdeps/powerpc/powerpc32/power7/mempcpy.S: New file.
57726         * sysdeps/powerpc/powerpc64/power7/mempcpy.S: New file.
57728 2010-11-03  H.J. Lu  <hongjiu.lu@intel.com>
57730         [BZ #12191]
57731         * sysdeps/i386/i686/cacheinfo.c (__x86_64_raw_data_cache_size): New.
57732         (__x86_64_raw_data_cache_size_half): Likewise.
57733         (__x86_64_raw_shared_cache_size): Likewise.
57734         (__x86_64_raw_shared_cache_size_half): Likewise.
57736         * sysdeps/x86_64/cacheinfo.c (__x86_64_raw_data_cache_size): New.
57737         (__x86_64_raw_data_cache_size_half): Likewise.
57738         (__x86_64_raw_shared_cache_size): Likewise.
57739         (__x86_64_raw_shared_cache_size_half): Likewise.
57740         (init_cacheinfo): Set __x86_64_raw_data_cache_size,
57741         __x86_64_raw_data_cache_size_half, __x86_64_raw_shared_cache_size
57742         and __x86_64_raw_shared_cache_size_half.  Round
57743         __x86_64_data_cache_size_half, __x86_64_data_cache_size
57744         __x86_64_shared_cache_size_half and __x86_64_shared_cache_size,
57745         to multiple of 256 bytes.
57747 2010-11-03  Ulrich Drepper  <drepper@gmail.com>
57749         [BZ #12167]
57750         * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Recognize new mangling
57751         of inacessible symlinks.  Verify result of symlink before returning it.
57752         * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
57753         Patch mostly by Miklos Szeredi <miklos@szeredi.hu>.
57755 2010-10-28  Erich Ritz  <erichritz@gmail.com>
57757         * math/math.h (isinf): Fix typo in comment.
57759 2010-11-01  Ulrich Drepper  <drepper@gmail.com>
57761         * po/da.po: Update from translation team.
57763 2010-10-26  Ulrich Drepper  <drepper@gmail.com>
57765         * elf/rtld.c (dl_main): Move assertion after the point where rtld map
57766         is added to the list.
57768 2010-10-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
57769             Ulrich Drepper  <drepper@gmail.com>
57771         * elf/dl-object.c (_dl_new_object): Don't append the new object to
57772         the global list here.  Move code to...
57773         (_dl_add_to_namespace_list): ...here.  New function.
57774         * elf/rtld.c (dl_main): Invoke _dl_add_to_namespace_list.
57775         * sysdeps/generic/ldsodefs.h (_dl_add_to_namespace_list): Declare.
57776         * elf/dl-load.c (lose): Don't remove the element from the list.
57777         (_dl_map_object_from_fd): Invoke _dl_add_to_namespace_list.
57778         (_dl_map_object): Likewise.
57780 2010-10-25  Ulrich Drepper  <drepper@gmail.com>
57782         [BZ #12159]
57783         * sysdeps/x86_64/multiarch/strchr.S: Fix propagation of search byte
57784         into all bytes of SSE register.
57785         Patch by Richard Li <richardpku@gmail.com>.
57787 2010-10-24  Ulrich Drepper  <drepper@gmail.com>
57789         [BZ #12140]
57790         * malloc/malloc.c (_int_free): Fill correct number of bytes when
57791         perturbing.
57793 2010-10-20  Michael B. Brutman  <brutman@us.ibm.com>
57795         * sysdeps/powerpc/dl-procinfo.c: Add support for ppca2 platform
57796         * sysdeps/powerpc/dl-procinfo.h: Add support for ppca2 platform
57797         * sysdeps/powerpc/powerpc32/a2/memcpy.S: New file.
57798         * sysdeps/powerpc/powerpc64/a2/memcpy.S: Likewise.
57799         * sysdeps/unix/sysv/linux/powerpc/powerpc32/a2/Implies: New
57800         submachine.
57801         * sysdeps/unix/sysv/linux/powerpc/powerpc64/a2/Implies: Likewise.
57803 2010-10-22  Andreas Schwab  <schwab@redhat.com>
57805         * include/dlfcn.h (__RTLD_SECURE): Define.
57806         * elf/dl-load.c (_dl_map_object): Remove preloaded parameter.  Use
57807         mode & __RTLD_SECURE instead.
57808         (open_path): Rename preloaded parameter to secure.
57809         * sysdeps/generic/ldsodefs.h (_dl_map_object): Adjust declaration.
57810         * elf/dl-open.c (dl_open_worker): Adjust call to _dl_map_object.
57811         * elf/dl-deps.c (openaux): Likewise.
57812         * elf/rtld.c (struct map_args): Remove is_preloaded.
57813         (map_doit): Don't use it.
57814         (dl_main): Likewise.
57815         (do_preload): Use __RTLD_SECURE instead of is_preloaded.
57816         (dlmopen_doit): Add __RTLD_SECURE to mode bits.
57818 2010-09-09  Andreas Schwab  <schwab@redhat.com>
57820         * Makeconfig (sysd-rules-patterns): Add rtld-%:rtld-%.
57821         (sysd-rules-targets): Remove duplicates.
57822         * elf/rtld-Rules ($(objpfx)rtld-%.os): Add pattern rules with
57823         rtld-%.$o dependency.
57825 2010-10-18  Andreas Schwab  <schwab@redhat.com>
57827         * elf/dl-open.c (dl_open_worker): Don't expand DST here, let
57828         _dl_map_object do it.
57830 2010-10-19  Ulrich Drepper  <drepper@gmail.com>
57832         * sysdeps/i386/bits/mathdef.h (FP_FAST_FMA): If the GCC 4.6 port has
57833         fast fma builtins, define the macros in the C99 standard.
57834         (FP_FAST_FMAF): Likewise.
57835         (FP_FAST_FMAL): Likewise.
57836         * sysdeps/x86_64/bits/mathdef.h: Likewise.
57838         * bits/mathdef.h: Update copyright year.
57839         * sysdeps/powerpc/bits/mathdef.h: Likewise.
57841 2010-10-19  Michael Meissner  <meissner@linux.vnet.ibm.com>
57843         * bits/mathdef.h (FP_FAST_FMA): If the GCC 4.6 port has fast fma
57844         builtins, define the macros in the C99 standard.
57845         (FP_FAST_FMAF): Likewise.
57846         (FP_FAST_FMAL): Likewise.
57847         * sysdeps/powerpc/bits/mathdef.h (FP_FAST_FMA): Define, ppc as
57848         multiply/add.
57849         (FP_FAST_FMAF): Likewise.
57851 2010-10-15  Jakub Jelinek  <jakub@redhat.com>
57853         [BZ #3268]
57854         * math/libm-test.inc (fma_test): Some new testcases.
57855         * sysdeps/ieee754/ldbl-128/s_fmal.c: New file.
57856         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Fix fma with finite x and
57857         y and infinite z.  Do multiplication by C already in long double.
57858         * sysdeps/ieee754/ldbl-96/s_fmal.c: New file.
57859         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Fix fma with finite x and
57860         y and infinite z.  Do bitwise or of inexact bit into u.d.
57861         * sysdeps/ieee754/ldbl-64-128/s_fmal.c: New file.
57862         * sysdeps/i386/fpu/s_fmaf.S: Removed.
57863         * sysdeps/i386/fpu/s_fma.S: Removed.
57864         * sysdeps/i386/fpu/s_fmal.S: Removed.
57866 2010-10-16  Jakub Jelinek  <jakub@redhat.com>
57868         [BZ #3268]
57869         * math/libm-test.inc (fma_test): Add IEEE quad long double fmal tests.
57870         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Ensure a1 + u.d
57871         computation is not scheduled after fetestexcept.  Fix value
57872         of minimum denormal long double.
57874 2010-10-14  Jakub Jelinek  <jakub@redhat.com>
57876         [BZ #3268]
57877         * math/libm-test.inc (fma_test): Add some more tests.
57878         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Handle underflows
57879         correctly.
57881 2010-10-15  Andreas Schwab  <schwab@redhat.com>
57883         * scripts/data/localplt-s390-linux-gnu.data: New file.
57884         * scripts/data/localplt-s390x-linux-gnu.data: New file.
57886 2010-10-13  Jakub Jelinek  <jakub@redhat.com>
57888         [BZ #3268]
57889         * math/libm-test.inc (fma_test): Some more fmaf and fma tests.
57890         * sysdeps/i386/i686/multiarch/s_fma.c: Include ldbl-96 version
57891         instead of dbl-64.
57892         * sysdeps/i386/fpu/bits/mathinline.h (fma, fmaf, fmal): Remove
57893         inlines.
57894         * sysdeps/ieee754/ldbl-96/s_fma.c: New file.
57895         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Fix exponent adjustment
57896         if one of x and y is very large and the other is subnormal.
57897         * sysdeps/s390/fpu/s_fmaf.c: New file.
57898         * sysdeps/s390/fpu/s_fma.c: New file.
57899         * sysdeps/powerpc/fpu/s_fmaf.S: New file.
57900         * sysdeps/powerpc/fpu/s_fma.S: New file.
57901         * sysdeps/powerpc/powerpc32/fpu/s_fma.S: New file.
57902         * sysdeps/powerpc/powerpc64/fpu/s_fma.S: New file.
57903         * sysdeps/unix/sysv/linux/s390/fpu/s_fma.c: New file.
57905 2010-10-12  Jakub Jelinek  <jakub@redhat.com>
57907         [BZ #3268]
57908         * math/libm-test.inc (fma_test): Add some more fmaf tests, add
57909         fma tests.
57910         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Fix Inf/Nan check.
57911         * sysdeps/ieee754/dbl-64/s_fma.c: New file.
57912         * sysdeps/i386/i686/multiarch/s_fma.c: Include
57913         sysdeps/ieee754/dbl-64/s_fma.c instead of math/s_fma.c.
57914         * sysdeps/x86_64/multiarch/s_fma.c: Likewise.
57915         * sysdeps/ieee754/ldbl-opt/s_fma.c: Likewise.
57916         * sysdeps/ieee754/ldbl-128/s_fma.c: New file.
57918 2010-10-12  Ulrich Drepper  <drepper@redhat.com>
57920         [BZ #12078]
57921         * posix/regcomp.c (parse_branch): One more memory leak plugged.
57922         * posix/bug-regex31.input: Add test case.
57924 2010-10-11  Ulrich Drepper  <drepper@gmail.com>
57926         * posix/bug-regex31.c: Rewrite to run multiple tests from stdin.
57927         * posix/bug-regex31.input: New file.
57929         [BZ #12078]
57930         * posix/regcomp.c (parse_branch): Free memory when allocation failed.
57931         (parse_sub_exp): Fix last change, use postorder.
57933         * posix/bug-regex31.c: New file.
57934         * posix/Makefile: Add rules to build and run bug-regex31.
57936         * posix/regcomp.c (parse_bracket_exp): Add missing re_free calls.
57938         [BZ #12078]
57939         * posix/regcomp.c (parse_sub_exp): Free tree data when it is not used.
57941         [BZ #12108]
57942         * stdio-common/psiginfo.c (psiginfo): Don't expext SIGRTMIN..SIGRTMAX
57943         to have entries in sys_siglist.
57945         [BZ #12093]
57946         * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): ->ifa_addr might
57947         be NULL.
57949 2010-10-07  Jakub Jelinek  <jakub@redhat.com>
57951         [BZ #3268]
57952         * math/libm-test.inc (fma_test): Add 2 fmaf tests.
57953         * sysdeps/ieee754/dbl-64/s_fmaf.c: New file.
57954         * sysdeps/i386/i686/multiarch/s_fmaf.c: Include
57955         sysdeps/ieee754/dbl-64/s_fmaf.c instead of math/s_fmaf.c.
57956         * sysdeps/x86_64/multiarch/s_fmaf.c: Likewise.
57957         * include/fenv.h (feupdateenv, fetestexcept): Add libm_hidden_proto.
57958         * math/feupdateenv.c (feupdateenv): Add libm_hidden_ver.
57959         * sysdeps/i386/fpu/feupdateenv.c (feupdateenv): Likewise.
57960         * sysdeps/powerpc/fpu/feupdateenv.c (feupdateenv): Likewise.
57961         * sysdeps/x86_64/fpu/feupdateenv.c (feupdateenv): Likewise.
57962         * sysdeps/sparc/fpu/feupdateenv.c (feupdateenv): Likewise.
57963         * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Add libm_hidden_def.
57964         * sysdeps/s390/fpu/feupdateenv.c (feupdateenv): Likewise.
57965         * math/ftestexcept.c (fetestexcept): Likewise.
57966         * sysdeps/ia64/fpu/ftestexcept.c (fetestexcept): Likewise.
57967         * sysdeps/i386/fpu/ftestexcept.c (fetestexcept): Likewise.
57968         * sysdeps/s390/fpu/ftestexcept.c (fetestexcept): Likewise.
57969         * sysdeps/powerpc/fpu/ftestexcept.c (fetestexcept): Likewise.
57970         * sysdeps/x86_64/fpu/ftestexcept.c (fetestexcept): Likewise.
57971         * sysdeps/sparc/fpu/ftestexcept.c (fetestexcept): Likewise.
57972         * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
57974 2010-10-11  Ulrich Drepper  <drepper@gmail.com>
57976         [BZ #12107]
57977         * stdio-common/psiginfo.c (psiginfo): Terminate all strings with
57978         newline.
57980 2010-10-06  Ulrich Drepper  <drepper@gmail.com>
57982         * string/bug-strstr1.c: New file.
57983         * string/Makefile: Add rules to build and run bug-strstr1.
57985 2010-10-05  Eric Blake  <eblake@redhat.com>
57987         [BZ #12092]
57988         * string/str-two-way.h (two_way_long_needle): Always clear memory
57989         when skipping input due to the shift table.
57991 2010-10-03  Ulrich Drepper  <drepper@gmail.com>
57993         [BZ #12005]
57994         * malloc/mcheck.c: Handle large requests.
57996         [BZ #12077]
57997         * sysdeps/x86_64/strcmp.S: Fix handling of remaining bytes in buffer
57998         for strncmp and strncasecmp.
57999         * string/stratcliff.c: Add tests for strcmp and strncmp.
58000         * wcsmbs/wcsatcliff.c: Adjust for stratcliff change.
58002 2010-09-28  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
58004         * sysdeps/sh/sh4/fpu/fpu_control.h: Add 'extern "C"' protection to
58005         __set_fpscr.
58007 2010-09-30  Andreas Jaeger  <aj@suse.de>
58009         * sysdeps/unix/sysv/linux_fsinfo.h (BTRFS_SUPER_MAGIC): Define.
58010         (CGROUP_SUPER_MAGIC): Define.
58011         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
58012         Handle btrfs and cgroup file systems.
58013         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_filesize_max):
58014         Likewise.
58016 2010-09-27  Luis Machado  <luisgpm@br.ibm.com>
58018         * sysdeps/powerpc/powerpc32/rtld-memset.c: New file.
58019         * sysdeps/powerpc/powerpc64/rtld-memset.c: New file.
58021 2010-09-29  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
58023         [BZ #12067]
58024         * sysdeps/s390/s390-32/elf/start.S: Fix address calculation when
58025         trying to locate the ELF header.
58027 2010-09-27  Andreas Schwab  <schwab@redhat.com>
58029         [BZ #11611]
58030         * sysdeps/unix/sysv/linux/internal_statvfs.c (INTERNAL_STATVFS):
58031         Mask out sign-bit copies when constructing f_fsid.
58033 2010-09-24  Petr Baudis <pasky@suse.cz>
58035         * debug/stack_chk_fail_local.c: Add missing licence exception.
58036         * debug/warning-nop.c: Likewise.
58038 2010-09-15  Joseph Myers  <joseph@codesourcery.com>
58040         * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): When
58041         implementing getdents64 using getdents syscall, set d_type if
58042         __ASSUME_GETDENTS32_D_TYPE.
58044 2010-09-16  Andreas Schwab  <schwab@redhat.com>
58046         * elf/dl-close.c (free_slotinfo, free_mem): Move to...
58047         * elf/dl-libc.c (free_slotinfo, free_mem): ... here.
58049 2010-09-21  Ulrich Drepper  <drepper@redhat.com>
58051         [BZ #12037]
58052         * posix/unistd.h: Undo change of feature selection for ftruncate from
58053         2010-01-11.
58055 2010-09-20  Ulrich Drepper  <drepper@redhat.com>
58057         * sysdeps/x86_64/strcmp.S: Fix another typo in x86-64 strncasecmp limit
58058         detection.
58060 2010-09-20  Andreas Schwab  <schwab@redhat.com>
58062         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Add
58063         fanotify_mark.
58064         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Likewise.
58066 2010-09-14  Andreas Schwab  <schwab@redhat.com>
58068         * sysdeps/s390/s390-32/__longjmp.c (__longjmp): Define register
58069         variables after CHECK_SP call.
58070         * sysdeps/s390/s390-64/__longjmp.c (__longjmp): Likewise.
58072 2010-09-13  Andreas Schwab  <schwab@redhat.com>
58073             Ulrich Drepper  <drepper@redhat.com>
58075         * elf/rtld.c (dl_main): Set GLRO(dl_init_all_dirs) just before
58076         re-relocationg ld.so.
58077         * elf/dl-support.c (_dl_non_dynamic_init): And here after the
58078         _dl_init_paths call.
58079         * elf/dl-load.c (_dl_init_paths).  Don't set GLRO(dl_init_all_dirs)
58080         here anymore.
58082 2010-09-14  Ulrich Drepper  <drepper@redhat.com>
58084         * resolv/res_init.c (__res_vinit): Count the default server we added.
58086 2010-09-08  Chung-Lin Tang  <cltang@codesourcery.com>
58087             Ulrich Drepper  <drepper@redhat.com>
58089         [BZ #11968]
58090         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
58091         (____longjmp_chk): Use %ebx for saving value across system call.
58092         Add unwind info.
58094 2010-09-06  Andreas Schwab  <schwab@redhat.com>
58096         * manual/Makefile: Don't mix pattern rules with normal rules.
58098 2010-09-05  Andreas Schwab  <schwab@linux-m68k.org>
58100         * debug/vdprintf_chk.c (__vdprintf_chk): Remove undefined
58101         operation.
58102         * libio/iofdopen.c (_IO_new_fdopen): Likewise.
58103         * libio/iofopncook.c (_IO_cookie_init): Likewise.
58104         * libio/iovdprintf.c (_IO_vdprintf): Likewise.
58105         * libio/oldiofdopen.c (_IO_old_fdopen): Likewise.
58106         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
58107         Likewise.
58109 2010-09-04  Ulrich Drepper  <drepper@redhat.com>
58111         [BZ #11979]
58112         * iconvdata/gconv-modules: Remove EBCDIC-CP-AR2 alias from
58113         IBM-930, IBM-933, IBM-935, IBM-937, and IBM-939.
58115 2010-09-02  Ulrich Drepper  <drepper@redhat.com>
58117         * sysdeps/x86_64/add_n.S: Update from GMP 5.0.1.
58118         * sysdeps/x86_64/addmul_1.S: Likewise.
58119         * sysdeps/x86_64/lshift.S: Likewise.
58120         * sysdeps/x86_64/mul_1.S: Likewise.
58121         * sysdeps/x86_64/rshift.S: Likewise.
58122         * sysdeps/x86_64/sub_n.S: Likewise.
58123         * sysdeps/x86_64/submul_1.S: Likewise.
58125 2010-09-01  Samuel Thibault  <samuel.thibault@ens-lyon.org>
58127         This aligns bits/sched.h onto sysdeps/unix/sysv/linux/bits/sched.h:
58128         Define __sched_param instead of SCHED_* and sched_param when
58129         <bits/sched.h> is included with __need_schedparam defined.
58130         * bits/sched.h [__need_schedparam]
58131         (SCHED_OTHER, SCHED_FIFO, SCHED_RR, sched_param): Do not define.
58132         [!__defined_schedparam && (__need_schedparam || _SCHED_H)]
58133         (__defined_schedparam): Define to 1.
58134         (__sched_param): New structure, identical to sched_param.
58135         (__need_schedparam): Undefine.
58137 2010-08-31  Mike Frysinger  <vapier@gentoo.org>
58139         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h (epoll_create2): Delete.
58140         (epoll_create1): Declare.
58142         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Fix typo.
58144 2010-08-31  Andreas Schwab  <schwab@redhat.com>
58146         [BZ #7066]
58147         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix array overflow when
58148         shifting retval into place.
58150 2010-09-01  Ulrich Drepper  <drepper@redhat.com>
58152         * nis/rpcsvc/nis.h: Update copyright notice.
58153         * nis/rpcsvc/nis.x: Likewise.
58154         * nis/rpcsvc/nis_callback.h: Likewise.
58155         * nis/rpcsvc/nis_callback.x: Likewise.
58156         * nis/rpcsvc/nis_object.x: Likewise.
58157         * nis/rpcsvc/nis_tags.h: Likewise.
58158         * nis/rpcsvc/yp.h: Likewise.
58159         * nis/rpcsvc/yp.x: Likewise.
58160         * nis/rpcsvc/ypupd.h: Likewise.
58161         * nis/yp_xdr.c: Likewise.
58162         * nis/ypupdate_xdr.c: Likewise.
58164         * sunrpc/pm_getport.c (__libc_rpc_getport): New function.  This is
58165         mainly the body of pmap_getport.  Add parameters to specify timeouts.
58166         (pmap_getport): Use __libc_rpc_getport.
58167         * sunrpc/Versions: Export __libc_rpc_getport with GLIBC_PRIVATE.
58168         * include/rpc/pmap_clnt.h: Declare __libc_rpc_getport.
58169         * nis/nis_findserv.c: Remove pmap_getport copy. Use __libc_rpc_getport.
58171 2010-08-31  Andreas Schwab  <schwab@linux-m68k.org>
58173         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Add
58174         fanotify_mark.
58176 2010-08-27  Roland McGrath  <roland@redhat.com>
58178         * sysdeps/i386/i686/multiarch/Makefile
58179         (CFLAGS-varshift.c): New variable.
58181 2010-08-27  Ulrich Drepper  <drepper@redhat.com>
58183         * sysdeps/i386/i686/multiarch/varshift.S: File removed.
58184         * sysdeps/i386/i686/multiarch/varshift.c: New file.
58186         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Move to .text.slow section.
58188         * sysdeps/x86_64/strlen.S: Minimal code improvement.
58190 2010-08-26  H.J. Lu  <hongjiu.lu@intel.com>
58192         * sysdeps/x86_64/strlen.S: Unroll the loop.
58193         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
58194         strlen-sse2 strlen-sse2-bsf.
58195         * sysdeps/x86_64/multiarch/strlen.S ((strlen): Return
58196         __strlen_no_bsf if bit_Slow_BSF is set.
58197         (__strlen_sse42): Removed.
58198         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: New file.
58199         * sysdeps/x86_64/multiarch/strlen-sse4.S: New file.
58201 2010-08-25  Roland McGrath  <roland@redhat.com>
58203         * sysdeps/x86_64/multiarch/varshift.S: File removed.
58204         * sysdeps/x86_64/multiarch/varshift.c: New file.
58205         * sysdeps/x86_64/multiarch/Makefile (CFLAGS-varshift.c): New variable.
58206         * sysdeps/x86_64/multiarch/varshift.h: Clean up decls, fix a cast.
58207         * sysdeps/x86_64/multiarch/memmove.c: Move decls around.
58208         * sysdeps/x86_64/multiarch/memmove_chk.c: Likewise.
58210 2010-08-25  H.J. Lu  <hongjiu.lu@intel.com>
58212         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
58213         strlen-sse2 strlen-sse2-bsf.
58214         * sysdeps/i386/i686/multiarch/strlen.S (strlen): Return
58215         __strlen_sse2_bsf if bit_Slow_BSF is unset.
58216         (__strlen_sse2): Removed.
58217         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: New file.
58218         * sysdeps/i386/i686/multiarch/strlen-sse2.S: New file.
58219         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Set
58220         bit_Slow_BSF for Atom.
58221         * sysdeps/x86_64/multiarch/init-arch.h (bit_Slow_BSF): Define.
58222         (index_Slow_BSF): Define.
58223         (HAS_SLOW_BSF): Define.
58225 2010-08-25  Ulrich Drepper  <drepper@redhat.com>
58227         [BZ #10851]
58228         * resolv/res_init.c (__res_vinit): When no server address at all
58229         is given default to loopback.
58231 2010-08-24  Roland McGrath  <roland@redhat.com>
58233         * configure.in: Remove config-name.h generation.
58234         * configure: Regenerated.
58235         * config-name.in: File removed.
58236         * scripts/config-uname.sh: New file.
58237         * posix/Makefile (uname.c): Depend on $(objdir)config-name.h.
58238         ($(objdir)config-name.h): New target.
58240         * sunrpc/rpc_parse.h: Avoid nested comment.
58242 2010-08-24  Richard Henderson  <rth@redhat.com>
58243             Ulrich Drepper  <drepper@redhat.com>
58244             H.J. Lu  <hongjiu.lu@intel.com>
58246         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add varshift.
58247         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Likewise.
58248         * sysdeps/x86_64/multiarch/strcspn-c.c: Include "varshift.h".
58249         Replace _mm_srli_si128 with __m128i_shift_right.  Replace
58250         _mm_alignr_epi8 with _mm_loadu_si128.
58251         * sysdeps/x86_64/multiarch/strspn-c.c: Likewise.
58252         * sysdeps/x86_64/multiarch/strstr.c: Include "varshift.h".
58253         (__m128i_shift_right): Removed.
58254         * sysdeps/i386/i686/multiarch/varshift.h: New file.
58255         * sysdeps/i386/i686/multiarch/varshift.S: New file.
58256         * sysdeps/x86_64/multiarch/varshift.h: New file.
58257         * sysdeps/x86_64/multiarch/varshift.S: New file.
58259 2010-08-21  Mike Frysinger  <vapier@gentoo.org>
58261         * configure.in: Move assembler checks to before sysdep dir checking.
58263 2010-08-20  Petr Baudis  <pasky@suse.cz>
58265         * LICENSES: Sync the sunrpc license.
58267 2010-08-19  Ulrich Drepper  <drepper@redhat.com>
58269         * sunrpc/auth_des.c: Update copyright notice once again.
58270         * sunrpc/auth_none.c: Likewise.
58271         * sunrpc/auth_unix.c: Likewise.
58272         * sunrpc/authdes_prot.c: Likewise.
58273         * sunrpc/authuxprot.c: Likewise.
58274         * sunrpc/bindrsvprt.c: Likewise.
58275         * sunrpc/clnt_gen.c: Likewise.
58276         * sunrpc/clnt_perr.c: Likewise.
58277         * sunrpc/clnt_raw.c: Likewise.
58278         * sunrpc/clnt_simp.c: Likewise.
58279         * sunrpc/clnt_tcp.c: Likewise.
58280         * sunrpc/clnt_udp.c: Likewise.
58281         * sunrpc/clnt_unix.c: Likewise.
58282         * sunrpc/des_crypt.c: Likewise.
58283         * sunrpc/des_soft.c: Likewise.
58284         * sunrpc/get_myaddr.c: Likewise.
58285         * sunrpc/getrpcport.c: Likewise.
58286         * sunrpc/key_call.c: Likewise.
58287         * sunrpc/key_prot.c: Likewise.
58288         * sunrpc/openchild.c: Likewise.
58289         * sunrpc/pm_getmaps.c: Likewise.
58290         * sunrpc/pm_getport.c: Likewise.
58291         * sunrpc/pmap_clnt.c: Likewise.
58292         * sunrpc/pmap_prot.c: Likewise.
58293         * sunrpc/pmap_prot2.c: Likewise.
58294         * sunrpc/pmap_rmt.c: Likewise.
58295         * sunrpc/rpc/auth.h: Likewise.
58296         * sunrpc/rpc/auth_unix.h: Likewise.
58297         * sunrpc/rpc/clnt.h: Likewise.
58298         * sunrpc/rpc/des_crypt.h: Likewise.
58299         * sunrpc/rpc/key_prot.h: Likewise.
58300         * sunrpc/rpc/netdb.h: Likewise.
58301         * sunrpc/rpc/pmap_clnt.h: Likewise.
58302         * sunrpc/rpc/pmap_prot.h: Likewise.
58303         * sunrpc/rpc/pmap_rmt.h: Likewise.
58304         * sunrpc/rpc/rpc.h: Likewise.
58305         * sunrpc/rpc/rpc_des.h: Likewise.
58306         * sunrpc/rpc/rpc_msg.h: Likewise.
58307         * sunrpc/rpc/svc.h: Likewise.
58308         * sunrpc/rpc/svc_auth.h: Likewise.
58309         * sunrpc/rpc/types.h: Likewise.
58310         * sunrpc/rpc/xdr.h: Likewise.
58311         * sunrpc/rpc_clntout.c: Likewise.
58312         * sunrpc/rpc_cmsg.c: Likewise.
58313         * sunrpc/rpc_common.c: Likewise.
58314         * sunrpc/rpc_cout.c: Likewise.
58315         * sunrpc/rpc_dtable.c: Likewise.
58316         * sunrpc/rpc_hout.c: Likewise.
58317         * sunrpc/rpc_main.c: Likewise.
58318         * sunrpc/rpc_parse.c: Likewise.
58319         * sunrpc/rpc_parse.h: Likewise.
58320         * sunrpc/rpc_prot.c: Likewise.
58321         * sunrpc/rpc_sample.c: Likewise.
58322         * sunrpc/rpc_scan.c: Likewise.
58323         * sunrpc/rpc_scan.h: Likewise.
58324         * sunrpc/rpc_svcout.c: Likewise.
58325         * sunrpc/rpc_tblout.c: Likewise.
58326         * sunrpc/rpc_util.c: Likewise.
58327         * sunrpc/rpc_util.h: Likewise.
58328         * sunrpc/rpcinfo.c: Likewise.
58329         * sunrpc/rpcsvc/bootparam_prot.x: Likewise.
58330         * sunrpc/rpcsvc/key_prot.x: Likewise.
58331         * sunrpc/rpcsvc/klm_prot.x: Likewise.
58332         * sunrpc/rpcsvc/mount.x: Likewise.
58333         * sunrpc/rpcsvc/nfs_prot.x: Likewise.
58334         * sunrpc/rpcsvc/nlm_prot.x: Likewise.
58335         * sunrpc/rpcsvc/rex.x: Likewise.
58336         * sunrpc/rpcsvc/rstat.x: Likewise.
58337         * sunrpc/rpcsvc/rusers.x: Likewise.
58338         * sunrpc/rpcsvc/sm_inter.x: Likewise.
58339         * sunrpc/rpcsvc/spray.x: Likewise.
58340         * sunrpc/rpcsvc/yppasswd.x: Likewise.
58341         * sunrpc/rtime.c: Likewise.
58342         * sunrpc/svc.c: Likewise.
58343         * sunrpc/svc_auth.c: Likewise.
58344         * sunrpc/svc_authux.c: Likewise.
58345         * sunrpc/svc_raw.c: Likewise.
58346         * sunrpc/svc_run.c: Likewise.
58347         * sunrpc/svc_simple.c: Likewise.
58348         * sunrpc/svc_tcp.c: Likewise.
58349         * sunrpc/svc_udp.c: Likewise.
58350         * sunrpc/svc_unix.c: Likewise.
58351         * sunrpc/svcauth_des.c: Likewise.
58352         * sunrpc/xcrypt.c: Likewise.
58353         * sunrpc/xdr.c: Likewise.
58354         * sunrpc/xdr_array.c: Likewise.
58355         * sunrpc/xdr_float.c: Likewise.
58356         * sunrpc/xdr_mem.c: Likewise.
58357         * sunrpc/xdr_rec.c: Likewise.
58358         * sunrpc/xdr_ref.c: Likewise.
58359         * sunrpc/xdr_sizeof.c: Likewise.
58360         * sunrpc/xdr_stdio.c: Likewise.
58362         * sysdeps/x86_64/multiarch/strcmp.S: Fix two typos in strncasecmp
58363         handling.
58365 2010-08-19  Andreas Schwab  <schwab@redhat.com>
58367         * sysdeps/i386/i686/multiarch/strspn.S [!SHARED]: Fix SSE4.2 check.
58369 2010-08-19  Luis Machado  <luisgpm@br.ibm.com>
58371         * sysdeps/powerpc/powerpc32/power7/memchr.S: New file.
58372         * sysdeps/powerpc/powerpc32/power7/memrchr.S: New file.
58373         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: New file.
58374         * sysdeps/powerpc/powerpc32/power7/strchr.S: New file.
58375         * sysdeps/powerpc/powerpc32/power7/strchrnul.S: New file.
58376         * sysdeps/powerpc/powerpc32/power7/strlen.S: New file.
58377         * sysdeps/powerpc/powerpc32/power7/strnlen.S: New file.
58378         * sysdeps/powerpc/powerpc64/power7/memchr.S: New file.
58379         * sysdeps/powerpc/powerpc64/power7/memrchr.S: New file.
58380         * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: New file.
58381         * sysdeps/powerpc/powerpc64/power7/strchr.S: New file.
58382         * sysdeps/powerpc/powerpc64/power7/strchrnul.S: New file.
58383         * sysdeps/powerpc/powerpc64/power7/strlen.S: New file.
58384         * sysdeps/powerpc/powerpc64/power7/strnlen.S: New file.
58386 2010-07-26  Anton Blanchard  <anton@samba.org>
58388         * malloc/malloc.c (sYSTRIm): Replace divide and multiply with mask.
58389         * malloc/arena.c (heap_trim): Likewise.
58391 2010-08-16  Ulrich Drepper  <drepper@redhat.com>
58393         * sysdeps/unix/sysv/linux/syscalls.list: Add entry for fanotify_init
58394         here.  Not...
58395         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: ...here...
58396         * sysdeps/unix/sysv/linux/i386/syscalls.list: ... orhere.
58398 2010-08-12  H.J. Lu  <hongjiu.lu@intel.com>
58400         * sysdeps/i386/elf/Makefile: New file.
58402 2010-08-14  Andreas Schwab  <schwab@linux-m68k.org>
58404         * sysdeps/unix/sysv/linux/sys/fanotify.h: Remove third argument
58405         from fanotify_init.
58406         * sysdeps/unix/sysv/linux/i386/syscalls.list: Likewise.
58407         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
58409 2010-08-15  Ulrich Drepper  <drepper@redhat.com>
58411         * sysdeps/x86_64/strcmp.S: Use correct register for fourth parameter
58412         of strncasecmp_l.
58413         * sysdeps/multiarch/strcmp.S: Likewise.
58415 2010-08-14  Ulrich Drepper  <drepper@redhat.com>
58417         * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
58418         strncase_l-nonascii.
58419         * sysdeps/x86_64/multiarch/Makefile [subdir=string] (sysdep_routines):
58420         Add strncase_l-ssse3.
58421         * sysdeps/x86_64/multiarch/strcmp.S: Prepare for use as strncasecmp.
58422         * sysdeps/x86_64/strcmp.S: Likewise.
58423         * sysdeps/x86_64/multiarch/strncase_l-ssse3.S: New file.
58424         * sysdeps/x86_64/multiarch/strncase_l.S: New file.
58425         * sysdeps/x86_64/strncase.S: New file.
58426         * sysdeps/x86_64/strncase_l-nonascii.c: New file.
58427         * sysdeps/x86_64/strncase_l.S: New file.
58428         * string/Makefile (strop-tests): Add strncasecmp.
58429         * string/test-strncasecmp.c: New file.
58431         * sysdeps/x86_64/strcasecmp_l-nonascii.c: Add prototype to avoid
58432         warning.
58434         * sysdeps/x86_64/strcmp.S: Move definition of NO_NOLOCALE_ALIAS to...
58435         * sysdeps/x86_64/multiarch/strcasecmp_l-ssse3.S: ... here.
58437 2010-08-14  Andreas Schwab  <schwab@linux-m68k.org>
58439         * sysdeps/unix/sysv/linux/prlimit.c: Make it compile.
58441 2010-08-12  Ulrich Drepper  <drepper@redhat.com>
58443         * sysdeps/unix/sysv/linux/bits/termios.h: Define EXTPROC.
58444         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
58445         * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
58447 2010-05-01  Alan Modra  <amodra@gmail.com>
58449         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Correct cfi for r24.
58450         * sysdeps/powerpc/powerpc64/bsd-_setjmp.S: Move contents..
58451         * sysdeps/powerpc/powerpc64/bsd-setjmp.S: ..and these too..
58452         * sysdeps/powerpc/powerpc64/setjmp.S: ..to here..
58453         * sysdeps/powerpc/powerpc64/setjmp-common.S: ..and here, with some
58454         tidying.  Don't tail-call __sigjmp_save for static lib.
58455         * sysdeps/powerpc/powerpc64/sysdep.h (SAVE_ARG, REST_ARG): Correct
58456         save location.
58457         (CFI_SAVE_ARG, CFI_REST_ARG): New macros.
58458         (CALL_MCOUNT): Add eh info, and nop after bl.
58459         (TAIL_CALL_SYSCALL_ERROR): New macro.
58460         (PSEUDO_RET): Use it.
58461         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve):
58462         Correct save location of integer regs and cr.
58463         (_dl_profile_resolve): Correct cr save location.  Delete nops
58464         after bl when SHARED.  Reduce cfi size a little by better
58465         placement of cfi directives.
58466         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S (__copysign): Don't
58467         make a stack frame.  Instead use parm save area as a temp.
58468         * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S (__brk): Don't
58469         make a stack frame.  Use TAIL_CALL_SYSCALL_ERROR.
58470         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone):
58471         Don't make a stack frame for parent, use parm save area.
58472         Increase child stack frame to 112 bytes.  Don't save unused reg,
58473         and adjust reg usage.  Set up cfi on error recovery and
58474         epilogue of parent, and use TAIL_CALL_SYSCALL_ERROR, PSEUDO_RET.
58475         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
58476         (__makecontext): Add dummy nop after jump to exit.
58477         * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S (__socket):
58478         Use correct parm save area and cr save, reduce stack frame.
58479         Correct cfi for possible PSEUDO_RET frame setup.
58480         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S (__vfork):
58481         Branch to local label emitted by PSEUDO_RET rather than
58482         __syscall_error.
58484 2010-08-12  Andreas Schwab  <schwab@redhat.com>
58486         [BZ #11904]
58487         * locale/programs/locale.c (print_assignment): New function.
58488         (show_locale_vars): Use it.
58490 2010-08-11  Ulrich Drepper  <drepper@redhat.com>
58492         * sysdeps/unix/sysv/linux/bits/statfs.h (struct statfs): Add f_flags
58493         field.
58494         (struct statfs64): Likewise.
58495         (_STATFS_F_FLAGS): Define.
58496         * sysdeps/unix/sysv/linux/s390/bits/statfs.h: Likewise.
58497         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
58498         Don't define if __ASSUME_STATFS_F_FLAGS is defined.
58499         (ST_VALID): Define locally.
58500         (INTERNAL_STATVFS): If f_flags has ST_VALID set don't call
58501         __statvfs_getflags, use the provided value.
58502         * sysdeps/unix/sysv/linux/kernel-features.h: Define
58503         __ASSUME_STATFS_F_FLAGS.
58505         * sysdeps/unix/sysv/linux/sys/inotify.h (IN_EXCL_UNLINK): Define.
58507         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_headers):
58508         Add sys/fanotify.h.
58509         * sysdeps/unix/sysv/linux/Versions [libc]: Export fanotify_init and
58510         fanotify_mask for GLIBC_2.13.
58511         * sysdeps/unix/sysv/linux/i386/syscalls.list: Add entries for
58512         fanotify_init and fanotify_mark.
58513         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
58514         * sysdeps/unix/sysv/linux/sys/fanotify.h: New file.
58516         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_routines):
58517         Add prlimit.
58518         * sysdeps/unix/sysv/linux/Versions [libc]: Export prlimit and
58519         prlimit64 for GLIBC_2.13.
58520         * sysdeps/unix/sysv/linux/bits/resource.h: Declare prlimit and
58521         prlimit64.
58522         * sysdeps/unix/sysv/linux/i386/syscalls.list: Add entry for prlimit64
58523         syscall.
58524         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Likewise.
58525         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Likewise.
58526         * sysdeps/unix/sysv/linux/sh/syscalls.list: Likewise.
58527         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.lis: Likewise.
58528         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.  Also
58529         add prlimit alias.
58530         * sysdeps/unix/sysv/linux/prlimit.c: New file.
58532         [BZ #11903]
58533         * sysdeps/generic/netinet/ip.h (IPTOS_CLASS): Fix definition.
58534         Patch by Evgeni Bikov <bikovevg@iitp.ru>.
58536         * nss/Makefile: Add rules to build and run tst-nss-test1.
58537         * shlib-versions: Add entry for libnss_test1.
58538         * nss/nss_test1.c: New file.
58539         * nss/tst-nss-test1.c: New file.
58541         * nss/nsswitch.c (__nss_database_custom): Define new variable.
58542         (__nss_configure_lookup): Set appropriate entry in
58543         __nss_configure_lookup to true.
58544         * nss/nsswitch.h: Define enum with indeces of databases in
58545         databases and __nss_database_custom arrays.  Declare
58546         __nss_database_custom.
58547         * grp/initgroups.c (internal_getgrouplist): Use __nss_database_custom
58548         to avoid using nscd when custom rules are installed.
58549         * nss/getXXbyYY_r.c: Likewise.
58550         * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
58552         * nss/nss_files/files-parse.c: Whitespace fixes.
58554 2010-08-09  Ulrich Drepper  <drepper@redhat.com>
58556         [BZ #11883]
58557         * posix/fnmatch.c: Keep track of alloca use and fall back on malloc.
58558         * posix/fnmatch_loop.c: Likewise.
58560 2010-07-17  Andi Kleen  <ak@linux.intel.com>
58562         * sysdeps/i386/i386-mcount.S (__fentry__): Define.
58563         * sysdeps/x86_64/_mcount.S (__fentry__): Define.
58564         * stdlib/Versions (__fentry__): Add for GLIBC 2.13
58565         * Versions.def [GLIBC_2.13]: Add.
58567 2010-08-06  Ulrich Drepper  <drepper@redhat.com>
58569         * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
58570         Also fail if tpwd after pwuid call is NULL.
58572 2010-07-31  Samuel Thibault  <samuel.thibault@ens-lyon.org>
58574         * hurd/hurdselect.c (_hurd_select): Round timeout up instead of down
58575         when converting to ms.
58577 2010-06-06  Samuel Thibault  <samuel.thibault@ens-lyon.org>
58579         * sysdeps/mach/hurd/ttyname.c (ttyname): Replace MIG_BAD_ID and
58580         EOPNOTSUPP errors with ENOTTY.
58581         * sysdeps/mach/hurd/ttyname_r.c (__ttyname_r): Replace MIG_BAD_ID and
58582         EOPNOTSUPP errors with ENOTTY.
58584 2010-07-31  Ulrich Drepper  <drepper@redhat.com>
58586         * sysdeps/x86_64/multiarch/Makefile [subdir=string] (sysdep_routines):
58587         Add strcasecmp_l-ssse3.
58588         * sysdeps/x86_64/multiarch/strcmp.S: Add support to compile for
58589         strcasecmp.
58590         * sysdeps/x86_64/strcmp.S: Allow more flexible compiling of strcasecmp.
58591         * sysdeps/x86_64/multiarch/strcasecmp_l.S: New file.
58592         * sysdeps/x86_64/multiarch/strcasecmp_l-ssse3.S: New file.
58594 2010-07-30  Ulrich Drepper  <drepper@redhat.com>
58596         * sysdeps/x86_64/multiarch/strcmp.S: Pretty printing.
58598         * string/Makefile (strop-tests): Add strcasecmp.
58599         * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
58600         strcasecmp_l-nonascii.
58601         (gen-as-const-headers): Add locale-defines.sym.
58602         * sysdeps/x86_64/strcmp.S: Add support for strcasecmp implementation.
58603         * sysdeps/x86_64/strcasecmp.S: New file.
58604         * sysdeps/x86_64/strcasecmp_l.S: New file.
58605         * sysdeps/x86_64/strcasecmp_l-nonascii.c: New file.
58606         * sysdeps/x86_64/locale-defines.sym: New file.
58607         * string/test-strcasecmp.c: New file.
58609         * string/test-strcasestr.c: Test both ends of the range of characters.
58610         * sysdeps/x86_64/multiarch/strstr.c: Fix UCHIGH definition.
58612 2010-07-29  Roland McGrath  <roland@redhat.com>
58614         [BZ #11856]
58615         * manual/locale.texi (Yes-or-No Questions): Fix example code.
58617 2010-07-27  Ulrich Drepper  <drepper@redhat.com>
58619         * sysdeps/x86_64/multiarch/strcmp-ssse3.S: Avoid compiling the file
58620         for ld.so.
58622 2010-07-27  Andreas Schwab  <schwab@redhat.com>
58624         * manual/memory.texi (Malloc Tunable Parameters): Document
58625         M_PERTURB.
58627 2010-07-26  Roland McGrath  <roland@redhat.com>
58629         [BZ #11840]
58630         * configure.in (-fgnu89-inline check): Set and substitute
58631         gnu89_inline, not libc_cv_gnu89_inline.
58632         * configure: Regenerated.
58633         * config.make.in (gnu89-inline-CFLAGS): Use @gnu89_inline@.
58635 2010-07-26  Ulrich Drepper  <drepper@redhat.com>
58637         * string/test-strnlen.c: New file.
58638         * string/Makefile (strop-tests): Add strnlen.
58639         * string/tester.c (test_strnlen): Add a few more test cases.
58640         * string/tst-strlen.c: Better error reporting.
58642         * sysdeps/x86_64/strnlen.S: New file.
58644 2010-07-24  Ulrich Drepper  <drepper@redhat.com>
58646         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu_tolower): Use
58647         lower-latency instructions.
58649 2010-07-23  Ulrich Drepper  <drepper@redhat.com>
58651         * string/test-strcasestr.c: New file.
58652         * string/test-strstr.c: New file.
58653         * string/Makefile (strop-tests): Add strstr and strcasestr.
58654         * string/str-two-way.h: Don't undefine MAX.
58655         * string/strcasestr.c: Don't define alias if NO_ALIAS is defined.
58657 2010-07-21  Andreas Schwab  <schwab@redhat.com>
58659         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
58660         strcasestr-nonascii.
58661         (CFLAGS-strcasestr-nonascii.c): Define.
58662         * sysdeps/i386/i686/multiarch/strcasestr-nonascii.c: New file.
58663         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c (STRSTR_SSE42):
58664         Remove unused attribute.
58666 2010-07-20  Roland McGrath  <roland@redhat.com>
58668         * elf/dl-sysdep.c (_dl_important_hwcaps): Add dsocaps mask to
58669         dl_hwcap_mask as well as dl_hwcap.  Without this, dsocaps matching in
58670         ld.so.cache was broken.  With it, there is no way to disable dsocaps
58671         like LD_HWCAP_MASK can disable hwcaps.
58673 2010-06-02  Emilio Pozuelo Monfort  <pochu27@gmail.com>
58675         * sysdeps/mach/hurd/sendmsg.c (__libc_sendmsg): Fix memory leaks.
58677 2010-07-16  Ulrich Drepper  <drepper@redhat.com>
58679         * sysdeps/x86_64/multiarch/strstr.c: Rewrite to avoid indirect function
58680         call in strcasestr.
58681         * sysdeps/x86_64/multiarch/strcasestr.c: Declare
58682         __strcasestr_sse42_nonascii.
58683         * sysdeps/x86_64/multiarch/Makefile: Add rules to build
58684         strcasestr-nonascii.c.
58685         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: New file.
58687 2010-06-15  Luis Machado  <luisgpm@br.ibm.com>
58689         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: New file.
58690         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysignf.S: New file.
58691         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: New file.
58692         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysignf.S: New file.
58694 2010-07-09  Ulrich Drepper  <drepper@redhat.com>
58696         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Use __fcntl not
58697         fcntl.
58699 2010-07-06  Andreas Schwab  <schwab@redhat.com>
58701         [BZ #11577]
58702         * elf/dl-version.c (match_symbol): Don't pass NULL occation to
58703         dl_signal_cerror.
58705 2010-07-06  Ulrich Drepper  <drepper@redhat.com>
58707         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Implement
58708         _PC_PIPE_BUF using F_GETPIPE_SZ.
58710 2010-07-05  Roland McGrath  <roland@redhat.com>
58712         * manual/arith.texi (Rounding Functions): Fix rint description
58713         implicit in round description.
58715 2010-07-02  Ulrich Drepper  <drepper@redhat.com>
58717         * elf/Makefile: Fix linking for a few tests to make recent linker
58718         happy.
58720 2010-06-30  Andreas Schwab  <schwab@redhat.com>
58722         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Readd
58723         $(common-objpfx)libc_nonshared.a.
58725 2010-06-21  Luis Machado  <luisgpm@br.ibm.com>
58727         * sysdeps/powerpc/powerpc32/970/fpu/Implies: Remove.
58728         * sysdeps/powerpc/powerpc32/power5/fpu/Implies: Remove.
58729         * sysdeps/powerpc/powerpc32/power5+/fpu/Implies: Remove.
58730         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: Remove.
58731         * sysdeps/powerpc/powerpc64/970/fpu/Implies: Remove.
58732         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: Remove.
58733         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: Remove.
58734         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: Remove.
58735         * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/fpu/Implies: Remove.
58736         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/fpu/Implies: Remove.
58737         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/fpu/Implies: Remove.
58738         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/fpu/Implies: Remove.
58739         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/Implies: Remove.
58740         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/fpu/Implies: Remove.
58741         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/fpu/Implies: Remove.
58742         * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/fpu/Implies: Remove.
58743         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/fpu/Implies: Remove.
58744         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/fpu/Implies: Remove.
58745         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/fpu/Implies: Remove.
58746         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/Implies: Remove.
58747         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/fpu/Implies: Remove.
58748         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/fpu/Implies: Remove.
58749         * sysdeps/powerpc/powerpc32/970/Implies: Point to power4.
58750         * sysdeps/powerpc/powerpc32/power5/Implies: Point to power4.
58751         * sysdeps/powerpc/powerpc32/power5+/Implies: Point to power5.
58752         * sysdeps/powerpc/powerpc32/power6/Implies: Point to power5+.
58753         * sysdeps/powerpc/powerpc32/power6x/Implies: Point to power6.
58754         * sysdeps/powerpc/powerpc64/970/Implies: Point to power4.
58755         * sysdeps/powerpc/powerpc64/power5/Implies: Point to power4.
58756         * sysdeps/powerpc/powerpc64/power5+/Implies: Point to power5.
58757         * sysdeps/powerpc/powerpc64/power6/Implies: Point to power5+.
58758         * sysdeps/powerpc/powerpc64/power6x/Implies: Point to power6.
58759         * sysdeps/powerpc/powerpc32/power7/Implies: New file.
58760         * sysdeps/powerpc/powerpc64/power7/Implies: New file.
58761         * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/Implies: New file.
58762         * sysdeps/unix/sysv/linux/powerpc/powerpc32/cell/Implies: New file.
58763         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/Implies: New file.
58764         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/Implies: New file.
58765         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/Implies: New file.
58766         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/Implies: New file.
58767         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/Implies: New file.
58768         * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/Implies: New file.
58769         * sysdeps/unix/sysv/linux/powerpc/powerpc64/cell/Implies: New file.
58770         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/Implies: New file.
58771         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/Implies: New file.
58772         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/Implies: New file.
58773         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/Implies: New file.
58774         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/Implies: New file.
58776 2010-06-25  H.J. Lu  <hongjiu.lu@intel.com>
58778         * debug/memmove_chk.c (__memmove_chk): Renamed to ...
58779         (MEMMOVE_CHK): ...this.  Default to __memmove_chk.
58780         * string/memmove.c (memmove): Renamed to ...
58781         (MEMMOVE): ...this.  Default to memmove.
58782         * sysdeps/x86_64/memcpy.S: Use ENTRY_CHK and END_CHK.
58783         * sysdeps/x86_64/sysdep.h (ENTRY_CHK): Define.
58784         (END_CHK): Define.
58785         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
58786         memcpy-ssse3 mempcpy-ssse3 memmove-ssse3 memcpy-ssse3-back
58787         mempcpy-ssse3-back memmove-ssse3-back.
58788         * sysdeps/x86_64/multiarch/bcopy.S: New file .
58789         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: New file.
58790         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: New file.
58791         * sysdeps/x86_64/multiarch/memcpy.S: New file.
58792         * sysdeps/x86_64/multiarch/memcpy_chk.S: New file.
58793         * sysdeps/x86_64/multiarch/memmove-ssse3-back.S: New file.
58794         * sysdeps/x86_64/multiarch/memmove-ssse3.S: New file.
58795         * sysdeps/x86_64/multiarch/memmove.c: New file.
58796         * sysdeps/x86_64/multiarch/memmove_chk.c: New file.
58797         * sysdeps/x86_64/multiarch/mempcpy-ssse3-back.S: New file.
58798         * sysdeps/x86_64/multiarch/mempcpy-ssse3.S: New file.
58799         * sysdeps/x86_64/multiarch/mempcpy.S: New file.
58800         * sysdeps/x86_64/multiarch/mempcpy_chk.S: New file.
58801         * sysdeps/x86_64/multiarch/init-arch.h (bit_Fast_Copy_Backward):
58802         Define.
58803         (index_Fast_Copy_Backward): Define.
58804         (HAS_ARCH_FEATURE): Define.
58805         (HAS_FAST_REP_STRING): Define.
58806         (HAS_FAST_COPY_BACKWARD): Define.
58808 2010-06-21  Andreas Schwab  <schwab@redhat.com>
58810         * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
58811         Restore proper fallback handling.
58813 2010-06-19  Ulrich Drepper  <drepper@redhat.com>
58815         [BZ #11701]
58816         * posix/group_member.c (__group_member): Correct checking loop.
58818         * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid): Handle
58819         OOM in getpwuid_r correctly.  Return error number when the caller
58820         should return, otherwise -1.
58821         (getlogin_r): Adjust to return also for result of __getlogin_r_loginuid
58822         call returning > 0 value.
58823         * sysdeps/unix/sysv/linux/getlogin.c (getlogin): Likewise.
58825 2010-06-07  Andreas Schwab  <schwab@redhat.com>
58827         * dlfcn/Makefile: Remove explicit dependencies on libc.so and
58828         libc_nonshared.a from targets in modules-names.
58830 2010-06-02  Kirill A. Shutemov  <kirill@shutemov.name>
58832         * elf/dl-reloc.c: Flush cache after solving TEXTRELs if arch
58833         requires it.
58835 2010-06-10  Luis Machado  <luisgpm@br.ibm.com>
58837         * sysdeps/powerpc/powerpc32/power7/memcmp.S: New file
58838         * sysdeps/powerpc/powerpc64/power7/memcmp.S: New file.
58839         * sysdeps/powerpc/powerpc32/power7/strncmp.S: New file.
58840         * sysdeps/powerpc/powerpc64/power7/strncmp.S: New file.
58842 2010-06-02  Andreas Schwab  <schwab@redhat.com>
58844         * nis/nss_nis/nis-initgroups.c (get_uid): Properly resize buffer.
58846 2010-06-14  Ulrich Drepper  <drepper@redhat.com>
58848         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Define F_SETPIPE_SZ
58849         and F_GETPIPE_SZ.
58850         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
58851         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
58852         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
58853         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
58854         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
58855         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise
58857 2010-06-14  Roland McGrath  <roland@redhat.com>
58859         * manual/libc.texinfo (@copying): Change to GFDL v1.3.
58861 2010-06-07  Jakub Jelinek  <jakub@redhat.com>
58863         * libio/stdio.h (sscanf, vsscanf): Use __REDIRECT_NTH instead of
58864         __REDIRECT followed by __THROW.
58865         * wcsmbs/wchar.h (swscanf, vswscanf): Likewise.
58866         * posix/getopt.h (getopt): Likewise.
58868 2010-06-02  Emilio Pozuelo Monfort  <pochu27@gmail.com>
58870         * hurd/lookup-at.c (__file_name_lookup_at): Accept
58871         AT_SYMLINK_FOLLOW in AT_FLAGS.  Fail with EINVAL if both
58872         AT_SYMLINK_FOLLOW and AT_SYMLINK_NOFOLLOW are present
58873         in AT_FLAGS.
58874         * hurd/hurd/fd.h (__file_name_lookup_at): Update comment.
58875         * sysdeps/mach/hurd/linkat.c (linkat): Pass O_NOLINK in FLAGS.
58877 2010-05-28  Luis Machado  <luisgpm@br.ibm.com>
58879         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Exchange srdi for srwi.
58881 2010-05-26  H.J. Lu  <hongjiu.lu@intel.com>
58883         [BZ #11640]
58884         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
58885         Properly check family and model.
58887 2010-05-26  Takashi Yoshii  <takashi.yoshii.zj@renesas.com>
58889         * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Fix iov[] size.
58891 2010-05-24  Luis Machado  <luisgpm@br.ibm.com>
58893         * sysdeps/powerpc/powerpc32/power7/memset.S: POWER7 32-bit memset fix.
58895 2010-05-21  Ulrich Drepper  <drepper@redhat.com>
58897         * elf/dl-runtime.c (_dl_profile_fixup): Don't crash on unresolved weak
58898         symbol reference.
58900 2010-05-19  Andreas Schwab  <schwab@redhat.com>
58902         * elf/dl-runtime.c (_dl_fixup): Don't crash on unresolved weak
58903         symbol reference.
58905 2010-05-21  Andreas Schwab  <schwab@redhat.com>
58907         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add recvmmsg
58908         and internal_recvmmsg.
58909         * sysdeps/unix/sysv/linux/recvmmsg.c: New file.
58910         * sysdeps/unix/sysv/linux/internal_recvmmsg.S: New file.
58911         * sysdeps/unix/sysv/linux/socketcall.h (SOCKOP_recvmmsg): Define.
58912         * sysdeps/unix/sysv/linux/syscalls.list (recvmmsg): Remove.
58914         * sunrpc/clnt_tcp.c (clnttcp_control): Add missing break.
58915         * sunrpc/clnt_udp.c (clntudp_control): Likewise.
58916         * sunrpc/clnt_unix.c (clntunix_control): Likewise.
58918 2010-05-20  Andreas Schwab  <schwab@redhat.com>
58920         * sysdeps/unix/sysv/linux/sys/timex.h: Use __REDIRECT_NTH.
58922 2010-05-17  Luis Machado  <luisgpm@br.ibm.com>
58924         POWER7 optimizations.
58925         * sysdeps/powerpc/powerpc64/power7/memset.S: New file.
58926         * sysdeps/powerpc/powerpc32/power7/memset.S: New file.
58928 2010-05-19  Ulrich Drepper  <drepper@redhat.com>
58930         * version.h: Update for 2.13 development version.
58932 2010-05-12  Andrew Stubbs  <ams@codesourcery.com>
58934         * sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Really disable all
58935         exceptions.  Return 0.
58937 2010-05-07  Roland McGrath  <roland@redhat.com>
58939         * elf/ldconfig.c (main): Add a const.
58941 2010-05-06  Ulrich Drepper  <drepper@redhat.com>
58943         * nss/getent.c (idn_flags): Default to AI_IDN|AI_CANONIDN.
58944         (args_options): Add no-idn option.
58945         (ahosts_keys_int): Add idn_flags to ai_flags.
58946         (parse_option): Handle 'i' option to clear idn_flags.
58948         * malloc/malloc.c (_int_free): Possible race in the most recently
58949         added check.  Only act on the data if no current modification
58950         happened.
58952 See ChangeLog.17 for earlier changes.